Encyclopedia Gravity Gravity Rsnull Field Equation Scalar Metric Term Is Null Invisible
ARTICLE 3 claims 3 theorems
Gravity Rsnull Field Equation Scalar Metric Term Is Null Invisible
A scalar term in the gravity field equation vanishes along lightlike directions, and the framework proves it cannot be recovered from those directions alone.
The invisible metric term
In general relativity, the field equation can be written in a matrix form where each side is a 4 by 4 array of numbers. The left side contains the Ricci curvature, a measure of how spacetime bends. The right side contains the energy-momentum tensor, a measure of how matter and energy are distributed, multiplied by a coupling constant. A scalar metric term, a single number multiplied by the Minkowski metric, can appear on the right side as an undetermined addition.
A null direction is a path along which light travels, where the spacetime interval between two events is zero. The framework's machine-checked library of formal theorems proves that when you contract this matrix equation along any null direction, the scalar metric term disappears. The theorem scalar_metric_term_is_null_invisible states this precisely: there exists a nonzero matrix, namely the Minkowski metric itself, whose quadratic contraction with any null vector is zero. This is not a numerical accident; it follows from the algebraic definition of a null vector, where the sum of the squares of its components equals zero.
The practical consequence is that the scalar metric term is invisible to observations made along lightlike paths. The framework's theorem null_scalar_of_einstein_shaped shows that from an equation shaped like Einstein's, with a coupling constant, contracting along a null direction yields a clean relation: the Ricci curvature contracted twice equals the coupling constant times the energy-momentum tensor contracted twice. The undetermined scalar term simply drops out.
In Recognition Science, this result is a stepping stone. The framework models gravity through a ledger of recognition events, and this theorem is a certified algebraic reduction within that model. The theorem does not construct a horizon patch, does not identify cut channels with spacetime covectors, and does not derive a sourced field equation from the ledger itself. The input, an Einstein-shaped source, is taken as an explicit interface, not derived from the framework's action. The theorem proves the algebraic step, nothing more.
What changes because of this theorem? It tells a physicist that the scalar metric term, if it exists, cannot be pinned down by null measurements alone. Any attempt to measure it must use non-null probes or additional theoretical input. The framework's contribution is to make this limitation precise and machine-checked, so the boundary of what is knowable from lightlike data is no longer a matter of hand-waving but a proved fact.
The theorem also carries a warning about overreach. Because the scalar term is null-invisible, the framework explicitly does not claim to have derived the full Einstein field equation from its ledger. The reduction is conditional on an assumed matrix equation. The honesty tag on the module is clear: the algebra is a theorem, but the physical input remains open.
THEOREM scalar_metric_term_is_null_invisible · IndisputableMonolith/Gravity/RSNullFieldEquation.lean
/--
The null equation does not recover the scalar metric term: adding a nonzero
multiple of `η` changes the matrix while preserving every null contraction.
-/
theorem scalar_metric_term_is_null_invisible :
∃ D : Matrix (Fin 4) (Fin 4) ℝ,
D ≠ 0 ∧
∀ k, MinkowskiNull k → quadContr D k = 0 := by
refine ⟨minkowskiEta4, ?_, ?_⟩
· intro h
have h00 := congrFun (congrFun h (0 : Fin 4)) (0 : Fin 4)
norm_num [minkowskiEta4] at h00
· intro k hk
simpa using quadContr_metric_term_eq_zero 1 k hk
THEOREM null_scalar_of_einstein_shaped · IndisputableMonolith/Gravity/RSNullFieldEquation.lean
/--
Null reduction of one Einstein-shaped equation. The undetermined scalar
metric term disappears on every Minkowski-null direction.
-/
theorem null_scalar_of_einstein_shaped
(coupling : ℝ)
(T Ric : Matrix (Fin 4) (Fin 4) ℝ)
(f : ℝ)
(h : coupling • T = Ric + f • minkowskiEta4)
(k : Fin 4 → ℝ)
(hk : MinkowskiNull k) :
quadContr Ric k = coupling * quadContr T k := by
have hcontract := congrArg (fun A => quadContr A k) h
change quadContr (coupling • T) k =
quadContr (Ric + f • minkowskiEta4) k at hcontract
rw [quadContr_smul, quadContr_add,
quadContr_metric_term_eq_zero f k hk, add_zero] at hcontract
exact hcontract.symm
THEOREM RSNullFieldReductionCert · IndisputableMonolith/Gravity/RSNullFieldEquation.lean
/-- Certificate for the matrix-level RS null reduction. -/
structure RSNullFieldReductionCert : Prop where
metric_term_vanishes :
∀ (f : ℝ) (k : Fin 4 → ℝ), MinkowskiNull k →
quadContr (f • minkowskiEta4) k = 0
source_reduces :
∀ {T Ric : Matrix (Fin 4) (Fin 4) ℝ},
EinsteinShapedSource kappa_einstein T Ric →
∀ k, MinkowskiNull k →
quadContr Ric k = kappa_einstein * quadContr T k
metric_term_not_recovered :
∃ D : Matrix (Fin 4) (Fin 4) ℝ,
D ≠ 0 ∧
∀ k, MinkowskiNull k → quadContr D k = 0
What this page does not claim
The framework derives the full Einstein field equation from its ledger. The scalar metric term is physically nonexistent, only that it is unobservable along null directions. The theorem constructs a physical model of horizons or identifies cut channels with spacetime covectors.
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/RSNullFieldEquation.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 framework derive an Einstein-shaped source from its ledger of recognition events?
- What non-null probes could in principle recover the scalar metric term?
- Does the null-invisibility of the scalar term have observable consequences for gravitational wave detection?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM scalar_metric_term_is_null_invisible · IndisputableMonolith/Gravity/RSNullFieldEquation.lean
/-- The null equation does not recover the scalar metric term: adding a nonzero multiple of `η` changes the matrix while preserving every null contraction. -/ theorem scalar_metric_term_is_null_invisible : ∃ D : Matrix (Fin 4) (Fin 4) ℝ, D ≠ 0 ∧ ∀ k, MinkowskiNull k → quadContr D k = 0 := by refine ⟨minkowskiEta4, ?_, ?_⟩ · intro h have h00 := congrFun (congrFun h (0 : Fin 4)) (0 : Fin 4) norm_num [minkowskiEta4] at h00 · intro k hk simpa using quadContr_metric_term_eq_zero 1 k hkThe theorem scalar_metric_term_is_null_invisible states that there exists a nonzero matrix, namely the Minkowski metric itself, whose quadratic contraction with any null vector is zero. scalar_metric_term_is_null_invisible · IndisputableMonolith/Gravity/RSNullFieldEquation.leanTHEOREM null_scalar_of_einstein_shaped · IndisputableMonolith/Gravity/RSNullFieldEquation.lean
/-- Null reduction of one Einstein-shaped equation. The undetermined scalar metric term disappears on every Minkowski-null direction. -/ theorem null_scalar_of_einstein_shaped (coupling : ℝ) (T Ric : Matrix (Fin 4) (Fin 4) ℝ) (f : ℝ) (h : coupling • T = Ric + f • minkowskiEta4) (k : Fin 4 → ℝ) (hk : MinkowskiNull k) : quadContr Ric k = coupling * quadContr T k := by have hcontract := congrArg (fun A => quadContr A k) h change quadContr (coupling • T) k = quadContr (Ric + f • minkowskiEta4) k at hcontract rw [quadContr_smul, quadContr_add, quadContr_metric_term_eq_zero f k hk, add_zero] at hcontract exact hcontract.symmThe theorem null_scalar_of_einstein_shaped shows that from an equation shaped like Einstein's, with a coupling constant, contracting along a null direction yields a clean relation: the Ricci curvature contracted twice equals the coupling constant times the energy-momentum tensor contracted twice. null_scalar_of_einstein_shaped · IndisputableMonolith/Gravity/RSNullFieldEquation.leanTHEOREM RSNullFieldReductionCert · IndisputableMonolith/Gravity/RSNullFieldEquation.lean
/-- Certificate for the matrix-level RS null reduction. -/ structure RSNullFieldReductionCert : Prop where metric_term_vanishes : ∀ (f : ℝ) (k : Fin 4 → ℝ), MinkowskiNull k → quadContr (f • minkowskiEta4) k = 0 source_reduces : ∀ {T Ric : Matrix (Fin 4) (Fin 4) ℝ}, EinsteinShapedSource kappa_einstein T Ric → ∀ k, MinkowskiNull k → quadContr Ric k = kappa_einstein * quadContr T k metric_term_not_recovered : ∃ D : Matrix (Fin 4) (Fin 4) ℝ, D ≠ 0 ∧ ∀ k, MinkowskiNull k → quadContr D k = 0The theorem does not construct a horizon patch, does not identify cut channels with spacetime covectors, and does not derive a sourced field equation from the ledger itself. RSNullFieldReductionCert · IndisputableMonolith/Gravity/RSNullFieldEquation.lean