The Syracuse return map \(T\) (the odd-step-only version of Collatz) admits two natural finite approximations, with genuinely different spectral behavior. The probability matrix \(P_M\): row-stochastic scaling of the mod-\(2^M\) transition structure. Since \(n=1\) is a fixed point of \(T\bmod2^M\) for every \(M\), \(P_M\) has eigenvalue \(1/2^{{M-1}}\) exactly, giving \(\rho(P_M)=1/2^{{M-1}}\) — proved exactly, not approximated, and decaying exponentially as \(M\to\infty\) (halving at each modulus doubling).
CollatzDescent.lean. Its spectral radius equals \(e^\lambda\), the exponential of the Lyapunov exponent: \(\lambda\approx-0.286288\) (computed from mod-243 weighted drift), giving \(\rho(\mathcal{{L}})\approx e^{{-0.286288}}\approx0.7510\) — a genuinely different number, and a genuinely different kind of estimate (numerically computed from a weighted average, not an exact closed form like \(\rho(P_M)\)).
Both operators contract (\(\rho<1\)), but at structurally different rates: \(\rho(P_M)\) decays superexponentially in \(M\) (pure 2-adic erasure of initial precision), while \(\rho(\mathcal{{L}})\approx0.751\) is a fixed rate independent of \(M\), governing genuine long-run statistical behavior of the map. At \(M=7\): \(\rho(P_7)=1/64\approx0.0156\), already 48\(\times\) smaller than \(\rho(\mathcal{{L}})\) — the two operators live on visibly different scales.
-- dm³ 103 · Week 09 · ρ — two distinct spectral radii, both real -- P_M (probability matrix): ρ(P_M) = 1/2^(M-1) EXACT example : (1:ℝ)/2^(7-1) = 1/64 := by norm_num -- ℒ (Ruelle-Perron-Frobenius transfer operator): -- ρ(ℒ) = e^λ, λ ≈ -0.286288 (numerically, mod-243 weighted drift) -- ρ(ℒ) ≈ 0.7510 — NOT a closed form, genuinely different kind -- of estimate than ρ(P_M)'s exact formula. example : (1:ℝ)/64 < 0.02 := by norm_num -- 48x smaller than ρ(ℒ)≈0.751