The Tribonacci sequence \(T(n)=T(n-1)+T(n-2)+T(n-3)\) has characteristic polynomial \(x^3-x^2-x-1=0\), dominant root \(\eta \approx 1.839286755214161\). Theorem η.1 (proved). \(\eta\) is the unique real root of that cubic, and in the dm³ framework it’s the constant tied to the 12-phase Collatz orbit’s amplitude envelope \(w(k) = \eta^{{-k}}\), machine-verified in three separate Lean files: TribonacciMeasure.lean (strict antitonicity of the weighted sequence), TribonacciRatioConvergence.lean (the ratio \(T(n{{+}}1)/T(n) \to \eta\)), and TribonacciDNLS.lean (a discrete nonlinear Schrödinger realisation on a Tribonacci substitution chain, amplitude decay \(A_k \sim \eta^{{-k}}\)). All three: sorry_count: 0.
dm3CriticalityPrinciple_extended.lean, Week 7): \(\eta\) is the rank-3 (\(n=3\)) n-bonacci constant, and rank \(n=3\) is separately argued to be the critical recurrence depth — a discrete-index notion of criticality, not the same object as the continuous curvature coefficient \(c=3\). The two criticality claims (continuous \(c^*=3\) in the fold potential; discrete rank \(n^*=3\) in the recurrence-depth ladder) are related by the framework’s overall design, but they are not numerically the same statement, and treating “\(\eta\) sits at \(c^*=3\)” as literal is a category error worth not repeating.
Keep both facts distinct going forward: \(\eta \approx 1.839\) is a real, proved, well-formalized number governing amplitude decay; “rank 3 is critical” is a separate, partly-axiomatic claim covered in full in Weeks 7–8.
-- dm³ 102 · Week 05 · η, derived (Cardano), not just cited
-- x³ - x² - x - 1 = 0. Substitute x = t + 1/3:
-- t³ - (4/3)t - 38/27 = 0 (depressed cubic, p=-4/3, q=-38/27)
-- discriminant (q/2)²+(p/3)³ = 11/27 > 0 ⟹ 1 real + 2 complex roots
-- t = ∛(19/27+√(11/27)) + ∛(19/27-√(11/27)) ≈ 1.505953422
-- η = t + 1/3 ≈ 1.839286755214161 (SymPy-verified, 20dp)
-- Proved, 0 sorry each:
-- TribonacciMeasure.lean -- strict antitonicity
-- TribonacciRatioConvergence.lean -- T(n+1)/T(n) → η
-- TribonacciDNLS.lean -- DNLS amplitude decay A_k ~ η^{-k}
-- NOTE: η ≈ 1.839 ≠ c* = 3. "η sits at criticality" refers to RANK
-- n=3 in the discrete n-bonacci ladder (Week 7-8), not the numeric
-- value of the curvature coefficient c in V(q)=q³-cq.
example : (1.839:ℝ) ≠ 3 := by norm_num