theorem
proved
rung_separation
show as:
view math explainer →
open explainer
Read the cached plain-language explainer.
open lean source
IndisputableMonolith.Foundation.SpectralEmergence on GitHub at line 309.
browse module
All declarations in this module, on Recognition.
explainer page
depends on
formal source
306
307/-- **THEOREM**: The φ-ladder is self-similar: the ratio between
308 ANY two rungs separated by k steps is φ^k. -/
309theorem rung_separation (ys : ℝ) (hys : 0 < ys) (n k : ℤ) :
310 mass_rung ys (n + k) / mass_rung ys n = phi ^ (k : ℝ) := by
311 have hmr : mass_rung ys n ≠ 0 := ne_of_gt (mass_rung_pos ys hys n)
312 rw [div_eq_iff hmr]
313 unfold mass_rung
314 rw [show ((n + k : ℤ) : ℝ) = (n : ℝ) + (k : ℝ) from by push_cast; ring]
315 rw [Real.rpow_add phi_pos]
316 ring
317
318/-! ## Part 6: The Consciousness Ground State — Zero Defect
319
320The unique zero-cost state (x = 1, J(1) = 0) is the **consciousness
321ground state**: the recognition configuration with zero defect.
322
323All particles live ABOVE this ground state (J > 0). Consciousness IS
324the ground state — the unique zero-defect configuration on the Q₃ lattice.
325
326The "hard problem" dissolves: consciousness is not an emergent property
327but the GROUND STATE of the spectral decomposition. -/
328
329/-- A recognition state on the Q₃ lattice: an assignment of ratios
330 to the 8 vertices, each positive. -/
331structure Q3State where
332 entries : Fin 8 → ℝ
333 entries_pos : ∀ i, 0 < entries i
334
335/-- Total J-cost (defect) of a Q₃ state. -/
336def Q3State.total_cost (s : Q3State) : ℝ :=
337 Finset.univ.sum (fun i => Jcost (s.entries i))
338
339/-- A Q₃ state is at zero defect iff every entry equals 1. -/