pith. machine review for the scientific record. sign in
theorem

signature_unique

proved
show as:
view math explainer →
module
IndisputableMonolith.Unification.SpacetimeEmergence
domain
Unification
line
328 · github
papers citing
none yet

open explainer

Generate a durable explainer page for this declaration.

open lean source

IndisputableMonolith.Unification.SpacetimeEmergence on GitHub at line 328.

browse module

All declarations in this module, on Recognition.

explainer page

Tracked in the explainer inventory; generation is lazy so crawlers do not trigger LLM jobs.

open explainer

depends on

formal source

 325theorem not_1_4_signature : ¬(spatial_dim = 4) := by simp [spatial_dim, D_physical]
 326
 327/-- **SE-010: The signature (1, 3) is the UNIQUE RS-compatible signature.** -/
 328theorem signature_unique :
 329    temporal_dim = 1 ∧ spatial_dim = 3 ∧
 330    (∀ d_t d_s : ℕ, d_t + d_s = spacetime_dim → d_t = 1 → d_s = 3) := by
 331  refine ⟨rfl, rfl, fun d_t d_s h1 h2 => ?_⟩
 332  rw [h2, spacetime_dim_eq_four] at h1; omega
 333
 334/-! ## §11  The Mass Gap as the Minimum Spacetime Excitation -/
 335
 336/-- The mass gap sets the minimum spatial excitation energy. -/
 337theorem mass_gap_is_spatial_minimum :
 338    ∀ n : ℤ, n ≠ 0 → massGap ≤ Jcost (PhiLadder n) := spectral_gap
 339
 340/-- The mass gap is exactly J(φ). -/
 341theorem mass_gap_from_phi : Jcost phi = massGap := Jcost_phi_eq_massGap
 342
 343/-- **Mass gap numerical bounds**: 0.118 < Δ < 0.119. -/
 344theorem mass_gap_bounds : (0.118 : ℝ) < massGap ∧ massGap < (0.119 : ℝ) :=
 345  massGap_numerical_bound
 346
 347/-! ## §12  The Complete Spacetime Emergence Certificate -/
 348
 349/-- **THE SPACETIME EMERGENCE CERTIFICATE**
 350
 351    Verifies the full structure of 4D Lorentzian spacetime is forced
 352    by the J-cost functional and the RS forcing chain T0–T8. -/
 353structure SpacetimeEmergenceCert where
 354  dim_eq_four : spacetime_dim = 4
 355  temporal_one : temporal_dim = 1
 356  spatial_three : spatial_dim = 3
 357  signature_lorentzian :
 358    (Finset.univ.filter (fun i : Fin 4 => η i i < 0)).card = 1 ∧