Encyclopedia Masses Masses Mass Genesis Null Vs Closed
ARTICLE 4 claims 4 theorems
Masses Mass Genesis Null Vs Closed
Mass arises when a pattern closes on itself; light is what never closes, and the two can never be the same thing.
The null-closed split
In physics, the distinction between matter and light is fundamental: matter has rest mass, light does not. Recognition Science approaches this split through the behavior of patterns in a discrete ledger, a record of recognition events. The module MassGenesis M4 establishes a precise, machine-checked version of this distinction: a pattern that closes into a stable loop carries positive rest mass, while a pattern that propagates without closing has zero rest mass, and no single pattern can do both.
The key concept is the tick, a single step in the ledger's evolution. A pattern is closed if, after a fixed number of ticks, it returns to its starting configuration. In the concrete finite model used here, that period is always eight ticks. A pattern is null if it propagates freely, never settling into such a cycle. The central result is that these two conditions are mutually exclusive: a pattern that propagates without closing cannot also be a stable closed pattern, and vice versa.
On the matter side, the module proves that any closed pattern with localized support and a nontrivial neutral load has positive rest mass. This is the formal statement that stable, self-contained structures are heavy. On the light side, the finite cyclic model has no null-propagating patterns at all, because every finite pattern eventually cycles. The physical null side is instead carried by a separate, open carrier: an infinite ray on which a zero-cost propagating mode exists, and that mode has zero rest mass.
The practical consequence is a clean separation principle. If a pattern is closed and stable, it has mass; if it is null and propagating, it does not. The two categories never overlap, and the framework's library records this as a certificate, a bundled collection of formal theorems. This is not a claim about which particles exist, but a structural fact about what mass and light mean in this account.
THEOREM nullPropagatingMode_not_stable · IndisputableMonolith/Masses/MassGenesis/NullVsClosed.lean
/-- A null mode and a stable closed light pattern cannot coincide. -/
theorem nullPropagatingMode_not_stable
(ψ : LightPattern Λ) (hnull : NullPropagatingMode ψ) :
¬ StableClosedLightPattern ψ :=
not_stable_of_null ψ hnull
THEOREM closed_nontrivial_restMass_pos · IndisputableMonolith/Masses/MassGenesis/NullVsClosed.lean
theorem closed_nontrivial_restMass_pos
(ψ : LightPattern Λ)
(hloc : LocalizedSupport ψ)
(hnontrivial : NontrivialNeutralLoad ψ) :
0 < restMass ψ :=
restMass_pos_of_stable ψ
(closed_nontrivial_is_stable ψ hloc hnontrivial)
THEOREM no_nullPropagatingMode_for_finite_cyclic_Rhat · IndisputableMonolith/Masses/MassGenesis/NullVsClosed.lean
/-- In the concrete finite cyclic Rhat surface, no `LightPattern` can satisfy
the current null-propagating predicate, because every finite pattern has the
eight-tick closure witness. -/
theorem no_nullPropagatingMode_for_finite_cyclic_Rhat
(ψ : LightPattern Λ) :
¬ NullPropagatingMode ψ := by
intro hnull
exact hnull.2.1 (closedRHatOrbit_period_eight ψ)
THEOREM open_null_light_exists · open_null_light_restMass_zero · IndisputableMonolith/Masses/MassGenesis/NullVsClosed.lean
theorem open_null_light_exists :
∃ γ : OpenNullLightMode, openNullRestMass γ = 0 :=
openNullLightMode_nonempty
theorem open_null_light_restMass_zero
(γ : OpenNullLightMode) :
openNullRestMass γ = 0 :=
openNullRestMass_zero γ
What this page does not claim
This module does not identify which specific particles are matter or light. The open null carrier is not proven to be the photon. No claim is made that the finite cyclic model is the physical universe.
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/NullVsClosed.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:
- What physical interpretation does the eight-tick closure period carry?
- How does the open null carrier relate to the speed of light in the framework?
- What distinguishes a nontrivial neutral load from a trivial one in the ledger?
- Does the null-closed split extend to patterns on non-cyclic surfaces?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM nullPropagatingMode_not_stable · IndisputableMonolith/Masses/MassGenesis/NullVsClosed.lean
/-- A null mode and a stable closed light pattern cannot coincide. -/ theorem nullPropagatingMode_not_stable (ψ : LightPattern Λ) (hnull : NullPropagatingMode ψ) : ¬ StableClosedLightPattern ψ := not_stable_of_null ψ hnulla pattern that propagates without closing cannot also be a stable closed pattern nullPropagatingMode_not_stable · IndisputableMonolith/Masses/MassGenesis/NullVsClosed.leanTHEOREM closed_nontrivial_restMass_pos · IndisputableMonolith/Masses/MassGenesis/NullVsClosed.lean
theorem closed_nontrivial_restMass_pos (ψ : LightPattern Λ) (hloc : LocalizedSupport ψ) (hnontrivial : NontrivialNeutralLoad ψ) : 0 < restMass ψ := restMass_pos_of_stable ψ (closed_nontrivial_is_stable ψ hloc hnontrivial)any closed pattern with localized support and a nontrivial neutral load has positive rest mass closed_nontrivial_restMass_pos · IndisputableMonolith/Masses/MassGenesis/NullVsClosed.leanTHEOREM no_nullPropagatingMode_for_finite_cyclic_Rhat · IndisputableMonolith/Masses/MassGenesis/NullVsClosed.lean
/-- In the concrete finite cyclic Rhat surface, no `LightPattern` can satisfy the current null-propagating predicate, because every finite pattern has the eight-tick closure witness. -/ theorem no_nullPropagatingMode_for_finite_cyclic_Rhat (ψ : LightPattern Λ) : ¬ NullPropagatingMode ψ := by intro hnull exact hnull.2.1 (closedRHatOrbit_period_eight ψ)the finite cyclic model has no null-propagating patterns at all no_nullPropagatingMode_for_finite_cyclic_Rhat · IndisputableMonolith/Masses/MassGenesis/NullVsClosed.leanTHEOREM open_null_light_exists · open_null_light_restMass_zero · IndisputableMonolith/Masses/MassGenesis/NullVsClosed.lean
theorem open_null_light_exists : ∃ γ : OpenNullLightMode, openNullRestMass γ = 0 := openNullLightMode_nonemptytheorem open_null_light_restMass_zero (γ : OpenNullLightMode) : openNullRestMass γ = 0 := openNullRestMass_zero γa zero-cost propagating mode exists on an infinite ray, and that mode has zero rest mass open_null_light_exists · open_null_light_restMass_zero · IndisputableMonolith/Masses/MassGenesis/NullVsClosed.lean