locating the roots of Lehmer's polynomial via its trace quintic. #
L is reciprocal, so with y = x + 1/x it factors through a degree-5 polynomial:
L(x) = x⁵ · q(x + 1/x), q(y) = y⁵ + y⁴ − 5y³ − 5y² + 4y + 3,
and a root of L lies on |z| = 1 iff its trace y = x + 1/x lies in [−2, 2]
(x = e^{iθ}, y = 2 cos θ). Salem's picture — 8 roots on the unit circle, one
reciprocal pair {λ, 1/λ} off it — therefore reduces to "q has 4 real roots in
(−2, 2) and one root in (2, 21/10)": five intermediate-value sign checks,
carried out here.
Axiom footprint: propext, Classical.choice, Quot.sound only.
The five real roots of the trace polynomial (IVT). #
A trace root in (−2, −3/2) (endpoints: q(−2)=−1 < 0 < 3/32 = q(−3/2)).
A trace root in (−3/2, −1).
The Salem trace root in (2, 21/10) — y_L = λ_L + 1/λ_L > 2, the off-circle
reciprocal pair.
On-circle Lehmer roots from trace roots in (−2,2). #
Each trace root in (−2,2) gives a root of L on |z| = 1: for y₀ ∈ (−2,2)
with q(y₀) = 0, the explicit z = (y₀ + i√(4−y₀²))/2 has ‖z‖ = 1 and
z + 1/z = y₀, so by the trace reduction L(z) = z⁵ · q(y₀) = 0.
L has a root on the unit circle (combining the trace root in (−1,0) with
lehmer_root_on_circle).