Encyclopedia Gravity Gravity Track1 Bcstructural Track1 Bcstructural Cert Inhabited
ARTICLE 4 claims 4 theorems
Gravity Track1 Bcstructural Track1 Bcstructural Cert Inhabited
A machine-checked proof shows that two foundational conditions for a discrete theory of gravity can be satisfied, but only in a simplified, structural form.
A structural witness for gravity
In physics, the path from a discrete, lattice-based model of spacetime to the smooth continuum of general relativity is a central question. One approach, Regge calculus, approximates spacetime with flat, four-dimensional building blocks, much like a geodesic dome approximates a sphere with flat triangles. The Einstein-Hilbert action, which describes how spacetime curves in response to matter, emerges from the Regge action as the lattice spacing shrinks to zero. A second condition, the contracted Bianchi identity, is a geometric consistency requirement that the curvature of spacetime must satisfy; it is a consequence of the way parallel transport works in a curved space.
The declaration track1BCStructuralCert_inhabited in the framework's machine-checked library of formal theorems establishes that a certificate object exists. This certificate packages together structural versions of both conditions. For the Regge-to-Einstein-Hilbert convergence, the structural version states that if a certain geometric residual bound holds, then the difference between the two actions tends to zero as the lattice spacing goes to zero. For the discrete Bianchi identity, the structural version states that there exists a triangulation satisfying the Schläfli identity, which is a local geometric relation that guarantees the contracted Bianchi identity holds at every vertex.
The proof is non-vacuous: it provides explicit witnesses. For the convergence condition, the witness is the flat substrate, where both the Regge and Einstein-Hilbert actions are zero, so they trivially agree. For the Bianchi condition, the witness is a triangulation built on the unit type, a single-point space, which also satisfies the Schläfli identity. These witnesses show that the structural hypotheses are not contradictory; they can be satisfied. The certificate therefore inhabits the master theorem hypothesis structure, meaning it supplies a concrete input for a larger, as-yet-unproven theorem about gravity.
In Recognition Science, this is a deliberate anti-retreat step. The framework models physical laws as forced consequences of a discrete ledger of recognition events. Here, the structural certificate is a placeholder: it guarantees that the kinematic content of the two conditions is coherent, without claiming the full dynamical content. The unconditional versions, which would require proving the geometric residual estimate for a specific physical triangulation and proving the Schläfli identity for that same triangulation, remain future work. The certificate is a scaffold, not the building.
What the declaration does not claim is equally important. It does not prove that the Regge action converges to the Einstein-Hilbert action for any actual physical triangulation. It does not prove that the contracted Bianchi identity holds for a realistic discrete spacetime. It only proves that there exists a trivial, flat example satisfying the structural conditions. The certificate is a consistency check, not a derivation of gravity from discrete principles. The full closure of Track 1.B and 1.C, the actual analytic and geometric proofs, remains an open target.
THEOREM track1BCStructuralCert_inhabited · IndisputableMonolith/Gravity/Track1BCStructural.lean
theorem track1BCStructuralCert_inhabited :
Nonempty Track1BCStructuralCert :=
⟨track1BCStructuralCert⟩
THEOREM regge_eh_continuum_structural_prop · IndisputableMonolith/Gravity/Track1BCStructural.lean
/-- The structural Regge-EH convergence Prop: for any sequence of
spacings tending to zero, the absolute difference of the abstract
Regge and EH actions tends to zero. For the flat substrate canonical
witness, both are zero, so the difference is zero. -/
def regge_eh_continuum_structural_prop : Prop :=
∀ (spacing : ℝ), abstract_regge_action spacing = abstract_eh_action spacing
THEOREM discrete_bianchi_structural_prop · IndisputableMonolith/Gravity/Track1BCStructural.lean
/-- The structural discrete Bianchi Prop: there exists a Schläfli-satisfying
Regge triangulation, witnessing the contracted second Bianchi identity
at every vertex (via Session 98's `Geometry.DiscreteBianchi`). -/
def discrete_bianchi_structural_prop : Prop :=
∃ (V B : Type) (_ : Fintype B),
Nonempty (Geometry.DiscreteBianchi.SchlafliReggeData V B)
THEOREM reg_eh_continuum_and_bianchi_structural_holds · IndisputableMonolith/Gravity/Track1BCStructural.lean
/-- The combined Track 1.B/1.C structural witness: both the Regge-EH
convergence and the discrete Bianchi structural Props hold (via flat
substrate / Unit-typed Schläfli triangulation canonical witnesses). -/
theorem reg_eh_continuum_and_bianchi_structural_holds :
regge_eh_continuum_structural_prop ∧ discrete_bianchi_structural_prop :=
⟨regge_eh_continuum_canonical_witness,
discrete_bianchi_canonical_witness⟩
What this page does not claim
The Regge action converges to the Einstein-Hilbert action for any actual physical triangulation. The contracted Bianchi identity holds for a realistic discrete spacetime. The certificate derives gravity from discrete principles; it is a consistency check on structural hypotheses.
Verify this page
Every tagged claim above names its theorem. To check one yourself rather than trust this page, elaborate the source module with Lean 4 and audit its axiom basis:
$ lake env lean IndisputableMonolith/Gravity/Track1BCStructural.lean
expected axiom basis: [propext, Classical.choice, Quot.sound] (the Lean kernel's standard three; no RS-specific axioms)
A page whose claims cannot be reproduced this way does not ship. In production, every anchor links to the exact declaration in the public source release, and this block carries the build receipt for the page itself.
Derived articles
This page is generated by a question-recursion engine: the questions its answers raise become the next pages. The current agenda, with open targets marked red:
- What is the geometric residual estimate that would make the Regge-Einstein-Hilbert convergence unconditional?
- How is the Schläfli identity proved for a specific physical Regge triangulation, not just the unit type?
- What is the content of the master theorem hypothesis structure that this certificate inhabits?
- How does the discrete Bianchi identity on a Regge substrate relate to the classical contracted Bianchi identity in differential geometry?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM track1BCStructuralCert_inhabited · IndisputableMonolith/Gravity/Track1BCStructural.lean
theorem track1BCStructuralCert_inhabited : Nonempty Track1BCStructuralCert := ⟨track1BCStructuralCert⟩The declaration track1BCStructuralCert_inhabited establishes that a certificate object exists, packaging structural versions of both the Regge-Einstein-Hilbert convergence and the discrete Bianchi identity. track1BCStructuralCert_inhabited · IndisputableMonolith/Gravity/Track1BCStructural.leanTHEOREM regge_eh_continuum_structural_prop · IndisputableMonolith/Gravity/Track1BCStructural.lean
/-- The structural Regge-EH convergence Prop: for any sequence of spacings tending to zero, the absolute difference of the abstract Regge and EH actions tends to zero. For the flat substrate canonical witness, both are zero, so the difference is zero. -/ def regge_eh_continuum_structural_prop : Prop := ∀ (spacing : ℝ), abstract_regge_action spacing = abstract_eh_action spacingThe structural version of the Regge-Einstein-Hilbert convergence states that if a certain geometric residual bound holds, then the difference between the two actions tends to zero as the lattice spacing goes to zero. regge_eh_continuum_structural_prop · IndisputableMonolith/Gravity/Track1BCStructural.leanTHEOREM discrete_bianchi_structural_prop · IndisputableMonolith/Gravity/Track1BCStructural.lean
/-- The structural discrete Bianchi Prop: there exists a Schläfli-satisfying Regge triangulation, witnessing the contracted second Bianchi identity at every vertex (via Session 98's `Geometry.DiscreteBianchi`). -/ def discrete_bianchi_structural_prop : Prop := ∃ (V B : Type) (_ : Fintype B), Nonempty (Geometry.DiscreteBianchi.SchlafliReggeData V B)The structural version of the discrete Bianchi identity states that there exists a triangulation satisfying the Schläfli identity, which guarantees the contracted Bianchi identity holds at every vertex. discrete_bianchi_structural_prop · IndisputableMonolith/Gravity/Track1BCStructural.leanTHEOREM reg_eh_continuum_and_bianchi_structural_holds · IndisputableMonolith/Gravity/Track1BCStructural.lean
/-- The combined Track 1.B/1.C structural witness: both the Regge-EH convergence and the discrete Bianchi structural Props hold (via flat substrate / Unit-typed Schläfli triangulation canonical witnesses). -/ theorem reg_eh_continuum_and_bianchi_structural_holds : regge_eh_continuum_structural_prop ∧ discrete_bianchi_structural_prop := ⟨regge_eh_continuum_canonical_witness, discrete_bianchi_canonical_witness⟩The certificate provides explicit witnesses: the flat substrate for the convergence condition and a triangulation on the unit type for the Bianchi condition. reg_eh_continuum_and_bianchi_structural_holds · IndisputableMonolith/Gravity/Track1BCStructural.lean