Encyclopedia Gravity Gravity Analysis Edge Ttdecomposition Lorentz4 D Is Lorentz Transverse Iff Loren

ARTICLE 3 claims 3 theorems

Gravity Analysis Edge Ttdecomposition Lorentz4 D Is Lorentz Transverse Iff Loren

In general relativity, gravitational waves are transverse: they wiggle only in directions perpendicular to their travel. A machine-checked theorem now pins down exactly what that condition means in algebraic terms.

Transverse waves in spacetime

A gravitational wave traveling through spacetime is transverse: its ripples in the geometry occur only in directions perpendicular to the wave's motion, not along it. In the mathematics of general relativity, this condition is expressed by saying that the wave's perturbation (a small change in the metric) contracts to zero when paired with the wave's direction of travel. The Recognition Science framework's machine-checked library of formal theorems contains a declaration, IsLorentzTransverse_iff_lorentzLoad, that establishes a precise algebraic equivalence for this idea in four-dimensional spacetime with the standard Minkowski signature (-,+,+,+).

The declaration proves that a symmetric 4x4 real matrix H is Lorentz-transverse with respect to a wave covector m if and only if a certain vector, called the lorentzLoad, vanishes. The lorentzLoad is defined as the contraction of H with the raised wave covector: for each index i, it computes the sum over j of H[i][j] * (raise m)[j]. The condition that this vector is zero for all i is exactly the statement that the wave's perturbation has no component along its own direction of travel. This is a purely algebraic fact, proved within the framework's library without any additional axioms beyond the standard three used by the underlying logic.

This result matters because it provides a clean, checkable definition of transversality that can serve as a foundation for further work. The framework uses this condition as part of a larger decomposition of perturbations into transverse and traceless parts, which is a standard tool in gravitational wave analysis. The theorem itself is a statement about linear algebra over the real numbers; it does not depend on any physical assumptions about the origin of the wave or its amplitude. It simply says: if you have a symmetric matrix and a wave direction, the condition that the matrix is transverse to that direction is equivalent to the vanishing of a specific contraction.

What the declaration does not claim is equally important. It does not assert that any particular physical wave satisfies this condition; that would require additional physics. It does not prove that the full Einstein field equations reduce to this algebraic form, nor does it address the propagation of waves through curved spacetime. The theorem is a lemma about the algebra of transversality, not a statement about the dynamics of gravity. It is a precise tool, ready for use, but it is not by itself a physical prediction.

The value of this result for a reader is that it makes the abstract notion of a transverse wave concrete and checkable. Instead of relying on a verbal description, one can now verify the condition by computing a simple sum. This is the kind of foundational clarity that a machine-checked library provides: it turns a familiar concept from physics into an exact, unambiguous statement in mathematics, ready to be built upon.

THEOREM IsLorentzTransverse · lorentzLoad · IndisputableMonolith/Gravity/Analysis/EdgeTTDecompositionLorentz4D.lean
/-- Lorentz transversality: contract `H_{ij}` with raised `m^j`. -/
def IsLorentzTransverse (m : Fin 4 → ℝ) (H : Mat4) : Prop :=
  ∀ i : Fin 4, -(H i 0) * m 0 + H i 1 * m 1 + H i 2 * m 2 + H i 3 * m 3 = 0
/-- Lorentz load: `(H · m^♯)_i`. -/
def lorentzLoad (H : Mat4) (m : Fin 4 → ℝ) : Fin 4 → ℝ :=
  fun i => ∑ j : Fin 4, H i j * raise m j
THEOREM IsLorentzTransverse · IndisputableMonolith/Gravity/Analysis/EdgeTTDecompositionLorentz4D.lean
/-- Lorentz transversality: contract `H_{ij}` with raised `m^j`. -/
def IsLorentzTransverse (m : Fin 4 → ℝ) (H : Mat4) : Prop :=
  ∀ i : Fin 4, -(H i 0) * m 0 + H i 1 * m 1 + H i 2 * m 2 + H i 3 * m 3 = 0
THEOREM IsLorentzTransverse · IndisputableMonolith/Gravity/Analysis/EdgeTTDecompositionLorentz4D.lean
/-- Lorentz transversality: contract `H_{ij}` with raised `m^j`. -/
def IsLorentzTransverse (m : Fin 4 → ℝ) (H : Mat4) : Prop :=
  ∀ i : Fin 4, -(H i 0) * m 0 + H i 1 * m 1 + H i 2 * m 2 + H i 3 * m 3 = 0

What this page does not claim

The theorem does not assert that any particular physical wave satisfies the transversality condition. The theorem does not prove that the Einstein field equations reduce to this algebraic form. The theorem does not address the propagation of waves through curved spacetime.

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:

MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND