Encyclopedia Geometry Geometry Regge Action Second Variation Regge Action Remainder Second Variation Z
ARTICLE 3 claims 2 theorems 1 open
Geometry Regge Action Second Variation Regge Action Remainder Second Variation Z
In Regge calculus, the discrete Einstein action has a remainder term; a new theorem states its second variation vanishes at flat space, but only conditionally.
The flat-space remainder
Regge calculus is a discrete approach to general relativity where spacetime is approximated by a network of flat simplices, typically tetrahedra in three dimensions. The Regge action is the sum over all edges of the edge length times a deficit angle, a measure of how much the geometry bends at that edge. In the Recognition Science framework, this action is studied as a function of the vertex positions, which can be varied to find the geometry that minimizes the action, analogous to the Einstein field equations in the continuum.
The declaration reggeActionRemainder_secondVariation_zero in the machine-checked library of formal theorems states a precise property of the remainder term in a Taylor expansion of the nonlinear Regge action. When the action is expanded around a flat configuration, the remainder is what is left after subtracting the linear and quadratic terms. The theorem says that the second derivative of this remainder, taken along any conformal line through the flat configuration, is exactly zero at that flat point. In plainer terms, the remainder has no quadratic curvature contribution at flat space; the curvature information is fully captured by the canonical Hessian, the matrix of second derivatives of the action.
The theorem is conditional. It does not prove that the remainder itself is zero, nor that its second variation vanishes everywhere. It requires an input structure, ReggeActionRemainderSecondVariationInput, which packages the assumption that the second variation is zero. The declaration simply extracts that assumption as a theorem. The real analytic work, the large Cayley-Menger and arccos chain-rule expansion that would establish this property from first principles, is not yet materialized in the library. The theorem is a formal bridge, not the final calculation.
What the declaration does not claim is equally important. It does not claim the remainder is identically zero, which would make the action exactly quadratic. It does not claim the second variation vanishes for arbitrary directions, only along the one-dimensional conformal lines defined by scaling a single potential. It does not claim the flat configuration is a local minimum of the action, which would require the Hessian to be positive definite. And it does not claim the remainder has no cubic or higher-order terms; a separate, still-conditional theorem reggeActionRemainder_cubic_bound bounds the remainder by a constant times the cube of the perturbation norm, but only near the flat point and only if a Taylor bound input is supplied.
The practical significance is that the framework can now state, in a formally checkable way, that the second-order behavior of the nonlinear Regge action at flat space is governed entirely by the canonical Hessian. This is a necessary step toward proving that the discrete action behaves like its continuum counterpart near flat geometries. But the proof of the underlying analytic fact remains an open target, and the theorem should be read as a scaffold for that future work, not as the work itself.
THEOREM reggeActionRemainder_secondVariation_zero · IndisputableMonolith/Geometry/ReggeActionSecondVariation.lean
theorem reggeActionRemainder_secondVariation_zero
(K : Triangulation3D) (hK : IncidenceConsistent K)
(h_rem : ReggeActionRemainderSecondVariationInput K hK) :
CanonicalRemainderSecondVariationZero K hK :=
h_rem.remainder_secondVariation_zero
THEOREM ReggeActionRemainderSecondVariationInput · IndisputableMonolith/Geometry/ReggeActionSecondVariation.lean
structure ReggeActionRemainderSecondVariationInput
(K : Triangulation3D) (hK : IncidenceConsistent K) where
remainder_secondVariation_zero :
CanonicalRemainderSecondVariationZero K hK
What this page does not claim
The remainder term is identically zero, making the action exactly quadratic. The second variation of the remainder vanishes for arbitrary directions, not just conformal lines. The flat configuration is a local minimum of the action. The theorem provides the analytic proof of the second variation property; that proof remains an open target.
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/ReggeActionSecondVariation.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:
- Can the large Cayley-Menger and arccos chain-rule expansion be materialized to prove the second variation of the remainder is zero without the named input assumption?
- Does the canonical Hessian being the full second variation at flat space imply the flat configuration is a local minimum of the Regge action?
- What is the explicit form of the cubic bound on the remainder, and how does it depend on the triangulation?
- How does the discrete remainder's behavior at flat space connect to the continuum Einstein-Hilbert action's second variation?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM reggeActionRemainder_secondVariation_zero · IndisputableMonolith/Geometry/ReggeActionSecondVariation.lean
theorem reggeActionRemainder_secondVariation_zero (K : Triangulation3D) (hK : IncidenceConsistent K) (h_rem : ReggeActionRemainderSecondVariationInput K hK) : CanonicalRemainderSecondVariationZero K hK := h_rem.remainder_secondVariation_zeroThe declaration reggeActionRemainder_secondVariation_zero states that the second derivative of the remainder term in the Taylor expansion of the nonlinear Regge action, taken along any conformal line through a flat configuration, is exactly zero at that flat point. reggeActionRemainder_secondVariation_zero · IndisputableMonolith/Geometry/ReggeActionSecondVariation.leanTHEOREM ReggeActionRemainderSecondVariationInput · IndisputableMonolith/Geometry/ReggeActionSecondVariation.lean
structure ReggeActionRemainderSecondVariationInput (K : Triangulation3D) (hK : IncidenceConsistent K) where remainder_secondVariation_zero : CanonicalRemainderSecondVariationZero K hKThe theorem is conditional on an input structure that packages the assumption that the second variation is zero. ReggeActionRemainderSecondVariationInput · IndisputableMonolith/Geometry/ReggeActionSecondVariation.lean- OPENThe declaration does not claim the remainder is identically zero.