theorem
proved
cascade_doubly_exponential_lower
show as:
view math explainer →
open explainer
Read the cached plain-language explainer.
open lean source
IndisputableMonolith.NumberTheory.CompositionDivergence on GitHub at line 138.
browse module
All declarations in this module, on Recognition.
explainer page
depends on
formal source
135
136/-- Doubly-exponential growth: the defect at level n involves
137 cosh(2ⁿ · t), which for t ≠ 0 grows as exp(2ⁿ · |t|)/2. -/
138theorem cascade_doubly_exponential_lower {t : ℝ} (_ht : 0 < t) (n : ℕ) :
139 Real.exp ((2 : ℝ) ^ n * t) / 2 - 1 ≤ defectIterate t n := by
140 simp only [defectIterate]
141 have h : Real.exp ((2 : ℝ) ^ n * t) / 2 ≤ Real.cosh ((2 : ℝ) ^ n * t) := by
142 rw [Real.cosh_eq]
143 have hexp : 0 ≤ Real.exp (-((2 : ℝ) ^ n * t)) := Real.exp_nonneg _
144 linarith
145 linarith
146
147/-! ## §5. What remains
148
149The gap between the composition route and unconditional RH is precisely
150the Composition Closure Hypothesis (CCH).
151
152CCH asserts that each iterate of the RCL self-composition corresponds
153to an actual constraint on the carrier budget. This is the RS-native
154version of the `EulerBoundaryBridgeAssumption`.
155
156Potential approaches to proving CCH:
1571. **Explicit formula**: the Guinand-Weil formula connects zeros to primes;
158 the iterated defect should map to prime correlations at scale 2ⁿ
1592. **Hadamard product**: the convergence ∑ 1/|ρ|² < ∞ constrains the
160 collective defect budget; the cascade from one zero may violate it
1613. **Spectral**: the Hilbert-Pólya approach places zeros as eigenvalues;
162 the RCL cascade maps to an operator norm constraint -/
163
164end
165
166end NumberTheory
167end IndisputableMonolith