Encyclopedia Gravity Gravity Analysis Edge Ttdecomposition Lorentz4 D Minkowski Trace Transverse Proj
ARTICLE 3 claims 3 theorems
Gravity Analysis Edge Ttdecomposition Lorentz4 D Minkowski Trace Transverse Proj
In general relativity, separating a gravitational wave's physical content from coordinate choices requires a specific linear algebra operation; this declaration pins down that operation for four-dimensional spacetime.
The transverse projector
In general relativity, a gravitational wave is described by a symmetric 4 by 4 matrix of numbers, the metric perturbation. But not all of those numbers are physical: some represent the freedom to choose coordinates, not real ripples in spacetime. The standard way to isolate the physical part is to project the matrix onto its transverse, traceless part. The transverse condition means the perturbation is perpendicular to the wave's direction of travel, and the traceless condition means it carries no overall scaling. This declaration, minkowskiTrace_transverseProjector, establishes the algebraic machinery for that projection in a four-dimensional spacetime with the standard Lorentzian signature, where time and space enter with opposite signs.
The core object is a projector, a matrix that, when applied to any symmetric matrix, removes the non-physical parts. For a wave moving in a direction given by a covector m, the projector is constructed from the metric and the outer product of m with itself. The declaration proves that this projector is symmetric, meaning it treats all indices equally, a property any physical projector must have. It also handles the special and physically important case where the wave covector is null, meaning it describes a wave moving at the speed of light. In that case, the simple formula fails because the denominator vanishes, and the declaration provides the correct alternative construction using an auxiliary null vector.
The practical consequence is that the declaration gives a machine-checked guarantee that the transverse-traceless projection, the step that turns raw perturbation data into the two physical polarizations of a gravitational wave, is mathematically sound. This is not a claim about any specific wave or any specific source; it is a statement about the linear algebra that underlies all such analyses. The declaration is part of a larger framework called Recognition Science, which models physical laws as arising from a forced ledger of recognition events. Within that framework, this declaration is a theorem, proved in the machine-checked library of formal theorems, with no unproven assumptions beyond the standard axioms of logic.
What the declaration does not claim is equally important. It does not claim to decompose actual Regge edge perturbations on a discrete four-dimensional lattice, which would be the next step toward a full theory of quantum gravity. It does not prove that the Recognition Science action converges to the Einstein-Hilbert action of general relativity. It does not attach any physical normalization to the polarizations, meaning it does not say how strong a wave should be. And it does not claim to recover the gap action, another piece of the larger research program. The declaration is a precise, limited tool: it establishes the algebraic foundation for separating physical from gauge degrees of freedom in the Lorentzian setting, nothing more.
THEOREM transverseProjector · IndisputableMonolith/Gravity/Analysis/EdgeTTDecompositionLorentz4D.lean
def transverseProjector (m : Fin 4 → ℝ) : Mat4 :=
minkowskiEta - (minkowskiDot m m)⁻¹ • outerSq m
THEOREM outerSq_symmetric · IndisputableMonolith/Gravity/Analysis/EdgeTTDecompositionLorentz4D.lean
theorem outerSq_symmetric (m : Fin 4 → ℝ) :
IsSymmetric (outerSq m) := by
intro i j; unfold outerSq; ring
THEOREM nullProjector · IndisputableMonolith/Gravity/Analysis/EdgeTTDecompositionLorentz4D.lean
/-- Null-frame transverse projector against null `m` with auxiliary null `l`. -/
def nullProjector (m l : Fin 4 → ℝ) : Mat4 :=
minkowskiEta - (minkowskiDot m l)⁻¹ • symmetrizedOuter m l
What this page does not claim
The declaration does not decompose actual Regge edge perturbations on a discrete lattice. The declaration does not prove that the Recognition Science action converges to the Einstein-Hilbert action. The declaration does not attach any physical normalization to the polarizations.
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/EdgeTTDecompositionLorentz4D.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-traceless decomposition connect to the physical polarizations of a gravitational wave?
- What is the next step from this algebraic layer to a full theory of quantum gravity?
- How does the Recognition Science framework derive the Einstein-Hilbert action from its ledger principles?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM transverseProjector · IndisputableMonolith/Gravity/Analysis/EdgeTTDecompositionLorentz4D.lean
def transverseProjector (m : Fin 4 → ℝ) : Mat4 := minkowskiEta - (minkowskiDot m m)⁻¹ • outerSq mThe declaration establishes the algebraic machinery for the transverse-traceless projection in a four-dimensional spacetime with the standard Lorentzian signature. transverseProjector · IndisputableMonolith/Gravity/Analysis/EdgeTTDecompositionLorentz4D.leanTHEOREM outerSq_symmetric · IndisputableMonolith/Gravity/Analysis/EdgeTTDecompositionLorentz4D.lean
theorem outerSq_symmetric (m : Fin 4 → ℝ) : IsSymmetric (outerSq m) := by intro i j; unfold outerSq; ringThe declaration proves that this projector is symmetric. outerSq_symmetric · IndisputableMonolith/Gravity/Analysis/EdgeTTDecompositionLorentz4D.leanTHEOREM nullProjector · IndisputableMonolith/Gravity/Analysis/EdgeTTDecompositionLorentz4D.lean
/-- Null-frame transverse projector against null `m` with auxiliary null `l`. -/ def nullProjector (m l : Fin 4 → ℝ) : Mat4 := minkowskiEta - (minkowskiDot m l)⁻¹ • symmetrizedOuter m lThe declaration handles the special and physically important case where the wave covector is null. nullProjector · IndisputableMonolith/Gravity/Analysis/EdgeTTDecompositionLorentz4D.lean