theorem
proved
phi_is_optimal_compression
show as:
view math explainer →
open explainer
Read the cached plain-language explainer.
open lean source
IndisputableMonolith.Flight.TeslaTurbine on GitHub at line 213.
browse module
All declarations in this module, on Recognition.
explainer page
depends on
-
radius -
phi_ne_zero -
phi_sq_eq -
cost -
cost -
is -
as -
is -
is -
gap -
gap -
gap -
is -
and -
phi_ne_zero -
phi_sq_eq -
point -
phi_ne_zero -
gap
used by
formal source
210
211 Proof: φ = 1 + 1/φ, so repeated application of x ↦ 1 + 1/x
212 converges to φ. No smaller ratio > 1 is a fixed point. -/
213theorem phi_is_optimal_compression :
214 phi = 1 + 1 / phi := by
215 have hphi_ne : phi ≠ 0 := phi_ne_zero
216 have hphi_sq : phi ^ 2 = phi + 1 := phi_sq_eq
217 field_simp [hphi_ne]
218 nlinarith [hphi_sq, sq_nonneg phi]
219
220/-! ## §5. Master Certificate -/
221
222/-- **MASTER THEOREM: Tesla Turbine as φ-Spiral Engine**
223
224 1. Optimal disc spacing: gap = 2δ√φ gives velocity ratio = φ
225 2. κ = 1 spiral pitch gives per-turn ratio = φ
226 3. Step ratio depends only on pitch and angle, not base radius
227 4. Fibonacci disc counts provide φ-scaled compression hierarchy
228 5. J(φ) is the minimum non-trivial compression cost
229 6. φ is the unique optimal compression fixed point -/
230theorem tesla_turbine_master :
231 -- (1) φ-optimal disc spacing
232 (∀ (δ : ℝ) (hδ : 0 < δ), velocityRatio (2 * δ * Real.sqrt phi) δ hδ = phi) ∧
233 -- (2) Step ratio invariant under base radius scaling
234 (∀ c r0 θ Δθ : ℝ, ∀ P : Params, c ≠ 0 → r0 ≠ 0 →
235 stepRatio (c * r0) θ Δθ P = stepRatio r0 θ Δθ P) ∧
236 -- (3) J(φ) > 0 (non-trivial compression has cost)
237 (0 < Jcost phi) ∧
238 -- (4) φ is the self-similar compression fixed point
239 (phi = 1 + 1 / phi) := by
240 exact ⟨fun δ hδ => phi_disc_spacing_optimal δ hδ,
241 fun c r0 θ Δθ P hc hr0 => SpiralLemmas.stepRatio_invariant_under_r0 c r0 θ Δθ P hc hr0,
242 compression_has_cost,
243 phi_is_optimal_compression⟩