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

linearized_covers_observational

definition
show as:
view math explainer →
module
IndisputableMonolith.Gravity.NonlinearReggeProof
domain
Gravity
line
73 · github
papers citing
none yet

open explainer

Generate a durable explainer page for this declaration.

open lean source

IndisputableMonolith.Gravity.NonlinearReggeProof on GitHub at line 73.

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

used by

formal source

  70  | .strongField => false  -- needs CMS
  71  | .ultraStrong => false   -- open
  72
  73def linearized_covers_observational : Bool :=
  74  regime_covered .linearized &&
  75  regime_covered .weakField
  76
  77theorem observational_regime_covered :
  78    linearized_covers_observational = true := by decide
  79
  80/-! ## CMS Regularity Conditions
  81
  82The Cheeger-Muller-Schrader theorem requires:
  831. Uniform edge length bounds (ratio bounded)
  842. Non-degeneracy of simplices (minimum dihedral angle bounded)
  853. Bounded topology (genus bounded)
  86
  87The φ-lattice satisfies all three by construction. -/
  88
  89structure CMSConditions (L : PhiLatticeRegularity) where
  90  edge_ratio_bounded : ∀ (e₁ e₂ : ℝ), e₁ = L.edge_length → e₂ = L.edge_length →
  91    e₁ / e₂ = 1
  92  dihedral_bounded_below : True  -- all dihedrals = π/2 on cubic lattice
  93  genus_bounded : True  -- ℤ³ lattice has trivial topology
  94
  95theorem phi_lattice_satisfies_cms :
  96    CMSConditions canonical_phi_lattice where
  97  edge_ratio_bounded := by intro e₁ e₂ h₁ h₂; rw [h₁, h₂]; field_simp
  98  dihedral_bounded_below := trivial
  99  genus_bounded := trivial
 100
 101/-! ## Convergence Hierarchy
 102
 103Linearized ⊂ Weak-field ⊂ CMS-regular ⊂ Full nonlinear -/