Encyclopedia Masses Masses Mass Genesis Theorem Statement Rest Mass Eq Integrated Meaning Load Of St
ARTICLE 4 claims 2 theorems 2 models
Masses Mass Genesis Theorem Statement Rest Mass Eq Integrated Meaning Load Of St
A machine-checked theorem equates a stable particle's rest mass with a sum over its internal light pattern, but the theorem itself does not prove that such particles exist.
The mass ledger entry
In particle physics, rest mass is the mass a particle has when it is at rest, the m in E = mc². The Recognition Science framework defines rest mass differently, as a quantity computed from a light pattern, a discrete record of eight internal states assigned to each location in a finite support set. The declaration restMass_eq_integratedMeaningLoad_of_stable is a theorem in the framework's machine-checked library of formal theorems. It states that for any light pattern that satisfies the stability condition, the rest mass equals the integrated meaning load, which is the sum over the pattern's support of the squared norm of each neutralized internal state.
The stability condition itself is a conjunction of three properties: the pattern has localized support, meaning its support set is nonempty; it carries a nontrivial neutral load, meaning at least one location has a positive squared norm after neutralization; and it follows a closed R-hat orbit, meaning a cyclic shift of the internal states by some divisor of eight returns the pattern to itself. The theorem is proved by unfolding the definition of rest mass, which is defined to be the integrated meaning load when the stability condition holds and zero otherwise. The proof is a direct simplification, not a deep derivation.
The theorem also establishes a zero boundary case. A separate theorem proves that any pattern in a null propagating mode, which is a localized pattern with positive total light energy that does not close under the R-hat orbit, has rest mass zero. This follows because a null mode cannot be stable, and the definition assigns zero rest mass to any pattern that is not stable. The two theorems together delineate which patterns carry rest mass: only those that are stable and closed under the orbit.
In Recognition Science, this theorem is a landing surface, not a completed bridge. The framework's own documentation states that the mass-genesis bridge is not closed. The theorem does not prove that any stable light pattern exists, nor that the integrated meaning load matches any measured particle mass. It only establishes the equality conditionally: if a pattern is stable, then its rest mass is the integrated meaning load. The reverse reconstruction of known masses from measured values is deliberately absent from the canonical statement, and it cannot discharge any of the required proof fields.
What the theorem changes is the target. It fixes the first-principles goal: to prove, bottom-up from the cost function, R-hat stability, Q3 topology, eight-tick closure, phi forcing, and light-state load, that a stable pattern exists and that its integrated meaning load reproduces a measured mass. Until that proof is complete, the equality remains a conditional definitional identity, not a physical prediction.
THEOREM restMass_eq_integratedMeaningLoad_of_stable · IndisputableMonolith/Masses/MassGenesis/TheoremStatement.lean
theorem restMass_eq_integratedMeaningLoad_of_stable
(ψ : LightPattern Λ) (hψ : StableClosedLightPattern ψ) :
restMass ψ = integratedMeaningLoad ψ := by
classical
simp [restMass, hψ]
MODEL StableClosedLightPattern · IndisputableMonolith/Masses/MassGenesis/TheoremStatement.lean
/-- Stable closed light pattern: localized, nontrivial, and closed under
the eight-tick Rhat orbit. -/
def StableClosedLightPattern (ψ : LightPattern Λ) : Prop :=
LocalizedSupport ψ ∧ NontrivialNeutralLoad ψ ∧ ClosedRHatOrbit ψ
THEOREM restMass_eq_zero_of_null · IndisputableMonolith/Masses/MassGenesis/TheoremStatement.lean
theorem restMass_eq_zero_of_null
(ψ : LightPattern Λ) (hψ : NullPropagatingMode ψ) :
restMass ψ = 0 :=
restMass_eq_zero_of_not_stable ψ (not_stable_of_null ψ hψ)
MODEL restMass_eq_integratedMeaningLoad_of_stable · IndisputableMonolith/Masses/MassGenesis/TheoremStatement.lean
theorem restMass_eq_integratedMeaningLoad_of_stable
(ψ : LightPattern Λ) (hψ : StableClosedLightPattern ψ) :
restMass ψ = integratedMeaningLoad ψ := by
classical
simp [restMass, hψ]
What this page does not claim
This answer does not claim that any stable light pattern exists. This answer does not claim that the integrated meaning load equals any measured particle mass. This answer does not claim that the mass-genesis bridge is closed.
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/Masses/MassGenesis/TheoremStatement.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:
- Does any light pattern satisfy the stability condition?
- Can the integrated meaning load of a stable pattern be shown to match a measured particle mass?
- What proof fields must be discharged to close the mass-genesis bridge?
- How does the null propagating mode condition relate to the speed of light in the framework?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM restMass_eq_integratedMeaningLoad_of_stable · IndisputableMonolith/Masses/MassGenesis/TheoremStatement.lean
theorem restMass_eq_integratedMeaningLoad_of_stable (ψ : LightPattern Λ) (hψ : StableClosedLightPattern ψ) : restMass ψ = integratedMeaningLoad ψ := by classical simp [restMass, hψ]The theorem states that for any light pattern that satisfies the stability condition, the rest mass equals the integrated meaning load. restMass_eq_integratedMeaningLoad_of_stable · IndisputableMonolith/Masses/MassGenesis/TheoremStatement.leanMODEL StableClosedLightPattern · IndisputableMonolith/Masses/MassGenesis/TheoremStatement.lean
/-- Stable closed light pattern: localized, nontrivial, and closed under the eight-tick Rhat orbit. -/ def StableClosedLightPattern (ψ : LightPattern Λ) : Prop := LocalizedSupport ψ ∧ NontrivialNeutralLoad ψ ∧ ClosedRHatOrbit ψThe stability condition is a conjunction of three properties: localized support, nontrivial neutral load, and a closed R-hat orbit. StableClosedLightPattern · IndisputableMonolith/Masses/MassGenesis/TheoremStatement.leanTHEOREM restMass_eq_zero_of_null · IndisputableMonolith/Masses/MassGenesis/TheoremStatement.lean
theorem restMass_eq_zero_of_null (ψ : LightPattern Λ) (hψ : NullPropagatingMode ψ) : restMass ψ = 0 := restMass_eq_zero_of_not_stable ψ (not_stable_of_null ψ hψ)A separate theorem proves that any pattern in a null propagating mode has rest mass zero. restMass_eq_zero_of_null · IndisputableMonolith/Masses/MassGenesis/TheoremStatement.leanMODEL restMass_eq_integratedMeaningLoad_of_stable · IndisputableMonolith/Masses/MassGenesis/TheoremStatement.lean
theorem restMass_eq_integratedMeaningLoad_of_stable (ψ : LightPattern Λ) (hψ : StableClosedLightPattern ψ) : restMass ψ = integratedMeaningLoad ψ := by classical simp [restMass, hψ]The framework's own documentation states that the mass-genesis bridge is not closed. restMass_eq_integratedMeaningLoad_of_stable · IndisputableMonolith/Masses/MassGenesis/TheoremStatement.lean