Encyclopedia Gravity Gravity Rsnull Field Equation Rs Null Field Reduction Cert
ARTICLE 2 claims 2 theorems
Gravity Rsnull Field Equation Rs Null Field Reduction Cert
A machine-checked theorem certifies a clean algebraic step in general relativity: on a lightlike probe, the metric term vanishes, and the field equation simplifies.
The null reduction certificate
In general relativity, the field equation relates the curvature of spacetime to the distribution of matter and energy. The equation takes a matrix form, with one entry for each combination of four spacetime directions. A standard move is to probe this equation with a null direction, one along which light travels. The Recognition Science framework's machine-checked library of formal theorems contains a certificate, rsNullFieldReductionCert, that verifies the algebraic step this move relies on.
The setup is an Einstein-shaped source equation, written as κT = Ric + fη. Here T is the stress-energy matrix, Ric is the Ricci curvature matrix, η is the Minkowski metric, and f is an undetermined scalar. The certificate proves that when you contract both sides with a Minkowski-null vector k, the metric term fη vanishes, leaving the simpler scalar equation Ric(k,k) = κT(k,k). The theorem is conditional: it holds for any such equation supplied from outside, and it specializes the coupling to the framework's chosen value κ = κ_einstein.
The certificate also proves a limitation. The scalar metric term f is null-invisible: there exists a nonzero matrix, namely the metric itself, whose contraction with every null direction is zero. So the null-reduced equation cannot recover the value of f. The reduction is a one-way door; it simplifies the equation but loses information about the metric term.
This is a theorem about algebra, not about physics. The certificate does not construct a horizon patch, does not identify cut channels with spacetime covectors, and does not derive a sourced field equation from the framework's ledger. Inhabiting the EinsteinShapedSource from the framework's action remains an open input. What the certificate establishes is precise: a clean, verified simplification step, with its limits stated in the same breath.
THEOREM rsNullFieldReductionCert · IndisputableMonolith/Gravity/RSNullFieldEquation.lean
theorem rsNullFieldReductionCert : RSNullFieldReductionCert where
metric_term_vanishes := quadContr_metric_term_eq_zero
source_reduces := rs_null_scalar_of_source
metric_term_not_recovered := scalar_metric_term_is_null_invisible
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
What this page does not claim
This certificate does not construct a horizon patch or identify cut channels with spacetime covectors. This certificate does not derive a sourced field equation from the framework's ledger. This certificate does not recover the scalar metric term f.
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's action inhabit the EinsteinShapedSource input?
- What physical content, if any, does the null-invisible metric term carry?
- How does this reduction connect to the framework's derivation of three spatial dimensions?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM rsNullFieldReductionCert · IndisputableMonolith/Gravity/RSNullFieldEquation.lean
theorem rsNullFieldReductionCert : RSNullFieldReductionCert where metric_term_vanishes := quadContr_metric_term_eq_zero source_reduces := rs_null_scalar_of_source metric_term_not_recovered := scalar_metric_term_is_null_invisibleThe certificate proves that on a Minkowski-null probe, the metric term vanishes and the equation reduces to Ric(k,k) = κT(k,k). rsNullFieldReductionCert · IndisputableMonolith/Gravity/RSNullFieldEquation.leanTHEOREM 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 certificate proves that the scalar metric term is null-invisible: a nonzero matrix exists whose contraction with every null direction is zero. scalar_metric_term_is_null_invisible · IndisputableMonolith/Gravity/RSNullFieldEquation.lean