Encyclopedia Gravity Gravity Regge Component Theorem3 D Component Comparison Of Genuine
ARTICLE 3 claims 3 theorems
Gravity Regge Component Theorem3 D Component Comparison Of Genuine
A formal bridge shows that a geometric 3D gravity computation matches an existing weak-field reduction, linking two approaches to Regge calculus.
The genuine bridge
Regge calculus is a discrete approach to general relativity where spacetime is approximated by a triangulated manifold, and curvature lives on the hinges (edges in 3D) rather than at points. The framework's library, a machine-checked collection of formal theorems, contains a Regge component package built from genuine 3D geometry: it uses Cayley-Menger determinants, dihedral angles, and a Hessian computation to produce a weak-field data package. The declaration componentComparison_of_genuine is a formal bridge that takes this genuine geometric package and instantiates it into an existing comparison interface, the ReggeComponentComparison.
What this bridge establishes is that the genuine geometric package satisfies the same interface as the existing weak-field conformal Regge bridge. Concretely, the geometric area function is symmetric, nonnegative, and matches the off-diagonal bilinear coefficients with a negative sign: for distinct vertices i and j, the bilinear coefficient equals minus the geometric area. The package also satisfies the Schlaefli row sum condition. Because the genuine package meets this interface, the theorem genuine_component_dirichlet_reduction follows: the second-order Regge action equals one half times the Dirichlet form of the edge area, applied to a log potential. This is a proved theorem in the machine-checked library, with no gaps.
The payoff is a single reduction: the genuine 3D geometric computation and the existing weak-field conformal bridge both land on the same Dirichlet-form structure. This means the geometric Hessian computation, built from Cayley-Menger and dihedral data, is formally compatible with the earlier weak-field reduction. The bridge does not introduce new physics; it shows that two packages within the framework agree on the same mathematical structure.
What the declaration does not claim is broader. It does not establish that the genuine geometric package is the only such package, nor that the Cayley-Menger computation itself is correct as physics. The bridge only connects the package to an existing interface; the physical validity of the geometric computation as a model of gravity is a separate question. The theorem applies to any triangulation K and any log potential, but it does not say that the Dirichlet-form reduction is the unique or physically preferred one. The bridge is a formal compatibility result, not a derivation of gravity from first principles.
THEOREM componentComparison_of_genuine · IndisputableMonolith/Gravity/ReggeComponentTheorem3D.lean
/-- A genuine component package instantiates the existing comparison
interface. -/
def componentComparison_of_genuine
{K : Triangulation3D} (G : GenuineComponentPackage K) :
ReggeComponentComparison G.W where
geometricArea := G.geometricArea
geometricArea_symm := G.geometricArea_symm
geometricArea_nonneg := G.geometricArea_nonneg
offDiag_component_match := G.offDiag_component_match
schlaefli_row_sum := G.schlaefli_row_sum
THEOREM GenuineComponentPackage · IndisputableMonolith/Gravity/ReggeComponentTheorem3D.lean
/-- The genuine geometric component package produced by the
Cayley-Menger/dihedral/Hessian computation. -/
structure GenuineComponentPackage (K : Triangulation3D) where
W : WeakFieldReggeData K.nV
geometricArea : Fin K.nV → Fin K.nV → ℝ
geometricArea_symm : ∀ i j, geometricArea i j = geometricArea j i
geometricArea_nonneg : ∀ i j, 0 ≤ geometricArea i j
offDiag_component_match :
∀ i j, i ≠ j → bilinearCoefficient W i j = - geometricArea i j
schlaefli_row_sum : SchlaefliRowSum W
THEOREM genuine_component_dirichlet_reduction · IndisputableMonolith/Gravity/ReggeComponentTheorem3D.lean
/-- The existing weak-field reduction applies to the genuine component
package. -/
theorem genuine_component_dirichlet_reduction
{K : Triangulation3D} (G : GenuineComponentPackage K)
(ε : LogPotential K.nV) :
secondOrderReggeAction G.W ε =
(1 / 2) * dirichletForm (edgeArea G.W) ε :=
weak_field_conformal_reduction G.W G.schlaefli_row_sum ε
What this page does not claim
The bridge does not prove that the Cayley-Menger computation is physically correct as a model of gravity. The bridge does not establish uniqueness of the genuine component package. The Dirichlet-form reduction is not claimed to be the only or physically preferred reduction.
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/ReggeComponentTheorem3D.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:
- How does the Cayley-Menger computation produce the geometric area function?
- What physical interpretation does the Dirichlet-form reduction carry for discrete gravity?
- Does the genuine component package extend to other triangulations or boundary conditions?
- What is the relationship between the Schlaefli row sum condition and energy conservation in Regge calculus?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM componentComparison_of_genuine · IndisputableMonolith/Gravity/ReggeComponentTheorem3D.lean
/-- A genuine component package instantiates the existing comparison interface. -/ def componentComparison_of_genuine {K : Triangulation3D} (G : GenuineComponentPackage K) : ReggeComponentComparison G.W where geometricArea := G.geometricArea geometricArea_symm := G.geometricArea_symm geometricArea_nonneg := G.geometricArea_nonneg offDiag_component_match := G.offDiag_component_match schlaefli_row_sum := G.schlaefli_row_sumThe declaration componentComparison_of_genuine takes a genuine geometric component package and instantiates it into the existing ReggeComponentComparison interface. componentComparison_of_genuine · IndisputableMonolith/Gravity/ReggeComponentTheorem3D.leanTHEOREM GenuineComponentPackage · IndisputableMonolith/Gravity/ReggeComponentTheorem3D.lean
/-- The genuine geometric component package produced by the Cayley-Menger/dihedral/Hessian computation. -/ structure GenuineComponentPackage (K : Triangulation3D) where W : WeakFieldReggeData K.nV geometricArea : Fin K.nV → Fin K.nV → ℝ geometricArea_symm : ∀ i j, geometricArea i j = geometricArea j i geometricArea_nonneg : ∀ i j, 0 ≤ geometricArea i j offDiag_component_match : ∀ i j, i ≠ j → bilinearCoefficient W i j = - geometricArea i j schlaefli_row_sum : SchlaefliRowSum WThe genuine geometric package satisfies the Schlaefli row sum condition. GenuineComponentPackage · IndisputableMonolith/Gravity/ReggeComponentTheorem3D.leanTHEOREM genuine_component_dirichlet_reduction · IndisputableMonolith/Gravity/ReggeComponentTheorem3D.lean
/-- The existing weak-field reduction applies to the genuine component package. -/ theorem genuine_component_dirichlet_reduction {K : Triangulation3D} (G : GenuineComponentPackage K) (ε : LogPotential K.nV) : secondOrderReggeAction G.W ε = (1 / 2) * dirichletForm (edgeArea G.W) ε := weak_field_conformal_reduction G.W G.schlaefli_row_sum εThe theorem genuine_component_dirichlet_reduction proves that the second-order Regge action equals one half times the Dirichlet form of the edge area, applied to a log potential. genuine_component_dirichlet_reduction · IndisputableMonolith/Gravity/ReggeComponentTheorem3D.lean