dm³ 102 opens exactly where the criticality bridge (referenced since Week 6) becomes the main subject. Three previews, stated precisely so 102 can move fast:
The through-line for 102: subcritical (\(\varphi\), no transition) \(\to\) critical (\(\eta\), the unique integer-coherent fold, Collatz) \(\to\) supercritical (\(\Delta, \Sigma, \Omega\), richer but costlier transitions) \(\to\) the \(n\to\infty\) limit \(\tau=2\). This 101 course has given you the constants and the fixed-point machinery; 102 gives you the Collatz application in full and the Gronwall-basin picture in detail (\(\varepsilon_0=1/3\) symmetric analytical bound vs.\ the numerically-certified, asymmetric inner boundary \(r^*\approx0.776\) — AXLE Issue #13, value certified, general asymmetry theorem still resting on an axiom pending full ODE formalisation).
certify_rstar.py in the AXLE repo — deterministic bisection search plus high-precision (rtol \(10^{{-12}}\)) DOP853 integration of the toy-model ODE \(\dot r = r(1-r^2)+2(r-1)e^{{-z}}\), \(\dot z = r^2 - 2(r-1)^2 e^{{-z}}\). The value is also recorded directly in Lean, Dm3Arithmetic.lean: noncomputable def r_star : ℝ := 0.77594059, with r_star_pos and r_star_lt_one proved. What is not yet proved: Chain_updated.lean still states inner_basin_is_asymmetric as an axiom, “pending dm³ ODE formalisation” — so the number is certified, but the general theorem that the basin really is asymmetric (rather than just this one numerically-verified instance) is not yet derived from first principles in Lean. Hold both facts at once, the way this course has asked you to all along.
AXLE_v6.lean — theorem names and Lean identifiers above point at the actual source files.-- dm³ 101 · Week 15 · Preview constants for dm³ 102 -- μ_max = -2 exactly (Theorem μ.1, proved — double root at q=1,c=3) -- ε₀ = |μ_max| / (2·(1+sup‖Hess V‖)) = 2/6 = 1/3 exactly -- η ≈ 1.839, critical rung, tied to Collatz c=3 (Theorem η.1, C.1) -- Δ ≈ 1.928, first supercritical rung, q* ≈ 0.802 (Theorem Δ.1) -- r* = 0.77594059 (≈0.776) — numerically certified, 8 decimal -- places, via certify_rstar.py (bisection + DOP853 ODE integration, -- rtol=1e-12). Also in Lean: Dm3Arithmetic.lean, r_star := 0.77594059, -- with r_star_pos / r_star_lt_one proved. AXLE Issue #13. -- Still an AXIOM (Chain_updated.lean): inner_basin_is_asymmetric — -- the general asymmetry theorem, not just this numeric instance, -- is pending full dm³ ODE formalisation in Lean. example : (1:ℝ)/3 = 2/(2*3) := by norm_num