Encyclopedia Geometry Geometry Regge Hessian3 D Regge Second Variation Eq Hessian
Geometry Regge Hessian3 D Regge Second Variation Eq Hessian
In discrete geometry, the Regge action approximates Einstein gravity on a triangulated space; a machine-checked theorem states when its second variation is exactly a quadratic form.
The Hessian identity
Regge calculus is a discrete approach to general relativity. Instead of a smooth spacetime, one works with a triangulation, a space built from flat tetrahedra glued along their faces. The Regge action assigns a number to each such triangulation, a discrete stand-in for the Einstein-Hilbert action. Its second variation, the Hessian, controls how the action responds to small changes in the geometry, and therefore which configurations are stable.
The theorem regge_secondVariation_eq_hessian states a precise identity. For any finite three-dimensional triangulation, and any conformal potential (a real number assigned to each vertex), the difference between the action at that potential and the action at the zero potential equals one half times the quadratic form built from the Hessian matrix. In symbols: action(ξ) − action(0) = (1/2) Σi,j Hij ξi ξj. The Hessian matrix is symmetric, and the identity holds for every choice of potential.
This is a statement about the structure of the second variation, not a numerical computation. It does not say what the action is, nor what the Hessian matrix contains. Those are supplied by a concrete implementation, which must provide the action, the matrix, and a proof that the identity holds. The theorem merely packages that requirement: if you have the data, the identity follows.
In Recognition Science, the framework models physical structure as a discrete ledger of recognition events, and this Hessian identity is part of its geometric toolkit. The framework's machine-checked library of formal theorems verifies the identity for any triangulation, assuming the conformal ansatz is in force. The result is a bridge between the discrete Regge action and the continuous notion of a Hessian, a step toward connecting the framework's discrete foundations to classical gravitational physics.
The theorem is a formal statement about finite triangulations. It does not claim that the Regge action converges to general relativity in any continuum limit, nor that the conformal ansatz is physically forced. Those questions remain open. What is established is a clean algebraic fact: under the stated assumptions, the second variation is exactly the quadratic form of the Hessian.
THEOREM regge_secondVariation_eq_hessian · IndisputableMonolith/Geometry/ReggeHessian3D.lean
/-- Extract the second-variation formula from a concrete Hessian package. -/
theorem regge_secondVariation_eq_hessian
(K : Triangulation3D) (D : ReggeHessianData K) (ξ : VertexPotential K) :
D.action ξ - D.action (zeroPotential K) =
(1 / 2) * hessianQuadratic D.hessian ξ :=
D.secondVariation ξ
What this page does not claim
The theorem does not specify the Regge action or the Hessian matrix; those are supplied by a concrete implementation. It does not assert that the Regge action converges to general relativity in any continuum limit. It does not claim that the conformal ansatz is physically forced or preferred.
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/Geometry/ReggeHessian3D.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:
- Does the Regge action on a triangulation converge to the Einstein-Hilbert action in a continuum limit?
- Under what conditions is the Hessian matrix positive definite, indicating a stable configuration?
- How does the conformal ansatz relate to the standard Regge action without that restriction?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM regge_secondVariation_eq_hessian · IndisputableMonolith/Geometry/ReggeHessian3D.lean
/-- Extract the second-variation formula from a concrete Hessian package. -/ theorem regge_secondVariation_eq_hessian (K : Triangulation3D) (D : ReggeHessianData K) (ξ : VertexPotential K) : D.action ξ - D.action (zeroPotential K) = (1 / 2) * hessianQuadratic D.hessian ξ := D.secondVariation ξFor any finite three-dimensional triangulation, and any conformal potential, the difference between the action at that potential and the action at the zero potential equals one half times the quadratic form built from the Hessian matrix. regge_secondVariation_eq_hessian · IndisputableMonolith/Geometry/ReggeHessian3D.lean