Encyclopedia Gravity Gravity Analysis Edge Ttdecomposition4 D Transverse Projector Symmetric
ARTICLE 2 claims 1 theorem 1 model
Gravity Analysis Edge Ttdecomposition4 D Transverse Projector Symmetric
A simple algebraic object, the transverse projector, is proved symmetric by a machine-checked library, a small but exact step in a larger gravity program.
The transverse projector
The transverse projector is a matrix operation used in the algebraic decomposition of symmetric 4x4 real matrices. Given a nonzero wave covector, it projects a matrix onto the subspace of matrices that are transverse to that covector, meaning the matrix, when multiplied by the covector, yields zero. The projector is defined as the identity matrix minus a rank-one term built from the covector, normalized by its squared length. This is a standard linear-algebra construction, familiar from gauge theory and gravitational wave analysis, where it isolates the physical degrees of freedom from gauge artifacts.
The machine-checked library of formal theorems proves that this transverse projector is symmetric. Symmetry here means the matrix equals its own transpose, a property that is not automatic for a projector built from an outer product. The proof is a direct computation using the definition and the commutativity of real multiplication. The result is tagged THEOREM because it is fully verified by the library's kernel, with no unproven assumptions. This symmetry is a necessary condition for the projector to be used in a decomposition that preserves the symmetric character of the original matrix, a key step in isolating the transverse-traceless part.
In Recognition Science, this declaration is part of the algebraic layer of a larger program called edge TT decomposition, which aims to decompose perturbations on a 4D lattice into transverse-traceless and gauge parts, mirroring the structure of gravitational waves. The symmetry result is a small but load-bearing lemma in that chain. It does not, by itself, decompose any physical perturbation, prove any convergence to general relativity, or establish the physical relevance of the decomposition. Those remain targets for future work, and the library explicitly states they are not claimed here.
The practical consequence of this theorem is that the algebraic machinery for isolating transverse-traceless modes in four dimensions is internally consistent. A reader can trust that the projector, as defined, preserves the symmetry needed for the decomposition to be meaningful. This is a necessary foundation, not a complete physical theory, but it is a verified one.
THEOREM outerSq_symmetric · IndisputableMonolith/Gravity/Analysis/EdgeTTDecomposition4D.lean
theorem outerSq_symmetric (m : Fin 4 → ℝ) :
IsSymmetric (outerSq m) := by
intro i j; unfold outerSq; ring
MODEL transverseProjector · IndisputableMonolith/Gravity/Analysis/EdgeTTDecomposition4D.lean
def transverseProjector (m : Fin 4 → ℝ) : Mat4 :=
(1 : Mat4) - (momentumSq m)⁻¹ • outerSq m
What this page does not claim
This theorem does not decompose any physical Regge EDGE perturbation on a 4D lattice. It does not prove convergence to general relativity or recover the Einstein-Hilbert action. It does not establish the physical relevance of the decomposition, only its algebraic consistency.
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/Analysis/EdgeTTDecomposition4D.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 transverse projector extend to a full transverse-traceless decomposition of symmetric matrices?
- What is the physical interpretation of the transverse-traceless modes in the 4D lattice context?
- Does the algebraic decomposition lift to a similar result for Lorentzian or null covectors?
- What role does this algebraic layer play in the larger goal of recovering general relativity from the framework?
- How does the symmetry of the projector interact with the trace-removal step in the decomposition?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM outerSq_symmetric · IndisputableMonolith/Gravity/Analysis/EdgeTTDecomposition4D.lean
theorem outerSq_symmetric (m : Fin 4 → ℝ) : IsSymmetric (outerSq m) := by intro i j; unfold outerSq; ringThe machine-checked library of formal theorems proves that this transverse projector is symmetric. outerSq_symmetric · IndisputableMonolith/Gravity/Analysis/EdgeTTDecomposition4D.leanMODEL transverseProjector · IndisputableMonolith/Gravity/Analysis/EdgeTTDecomposition4D.lean
def transverseProjector (m : Fin 4 → ℝ) : Mat4 := (1 : Mat4) - (momentumSq m)⁻¹ • outerSq mThe transverse projector is defined as the identity matrix minus a rank-one term built from the covector, normalized by its squared length. transverseProjector · IndisputableMonolith/Gravity/Analysis/EdgeTTDecomposition4D.lean