Encyclopedia Masses Masses Mass Genesis Open Propagation Open Null Ray No Positive Period
ARTICLE 3 claims 2 theorems 1 model
Masses Mass Genesis Open Propagation Open Null Ray No Positive Period
A mathematical guarantee that a certain kind of massless carrier never cycles back on itself, told through the simple fact that an infinite ray has no repeating pattern.
An open ray cannot repeat
An infinite ray, the kind that starts somewhere and goes on forever in one direction, has a property so basic it is easy to miss: it never comes back to a place it has already been. If you number its positions 0, 1, 2, and so on, then position 5 is not position 2, and position 10 is not position 7. No matter how far you step forward, you can never land on an earlier spot. This is the classical idea of an injective function on the natural numbers, and it is the entire content of the declaration openNullRay_no_positive_period.
The declaration lives inside a larger framework called Recognition Science, which models physical reality as a discrete record of events, a ledger, where each event costs something to recognize. In that framework, a massless particle like a photon is represented as a zero-cost recognition mode that propagates along such an infinite ray. The theorem in question states that this ray cannot have a positive period: there is no number p greater than zero such that the ray's position at step n+p equals its position at step n. The proof is a single line: if the ray were periodic, the injectivity of the ray would force n+p to equal n, which is impossible for positive p.
This matters because it separates two kinds of objects in the framework. Finite, closed matter patterns, like the patterns that represent electrons or quarks, repeat after a fixed number of ticks in an eight-tick cycle. An open null mode, by contrast, is defined precisely by not doing that. The theorem guarantees that the carrier for zero rest mass is not accidentally a finite closed pattern, which would confuse it with matter. It is a structural distinction, not a physical measurement: the declaration proves that the ray is not periodic, and nothing more.
In Recognition Science, this declaration is part of the support for the concept of zero rest mass. It establishes that the framework can host a mode that is genuinely open-ended. It does not claim that this mode is a photon, that it has polarization, or that it carries momentum. Those are separate physics layers, as the framework's own documentation states. The declaration is a piece of bookkeeping that keeps the ledger honest: an open ray stays open, and a closed pattern stays closed.
What the declaration does not claim is just as important as what it proves. It does not say that any physical photon exists, only that the mathematical structure for one is nonempty. It does not derive the speed of light or any other dynamical property. It does not even claim that the ray is infinite in a physical sense; it only says that, within the formal model, the ray's indexing is injective. The theorem is a small, sharp tool: it cuts away the possibility of periodicity and leaves everything else untouched.
THEOREM openNullRay_no_positive_period · IndisputableMonolith/Masses/MassGenesis/OpenPropagation.lean
/-- An injective ray cannot close with any positive period. -/
theorem openNullRay_no_positive_period
(γ : OpenNullLightMode) (n p : ℕ) (hp : 0 < p) :
γ.ray (n + p) ≠ γ.ray n := by
intro h
have hidx : n + p = n := γ.ray_injective h
omega
THEOREM openNull_not_finite_closed · IndisputableMonolith/Masses/MassGenesis/OpenPropagation.lean
theorem openNull_not_finite_closed (γ : OpenNullLightMode) :
OpenNullNotFiniteClosed γ := by
intro n p hp
exact openNullRay_no_positive_period γ n p hp
MODEL OpenNullLightMode · IndisputableMonolith/Masses/MassGenesis/OpenPropagation.lean
/-- An open null light mode is a zero-cost propagating recognition mode carried
by an injective infinite ray. This is the recognition-level carrier needed for
zero rest mass; polarization and photon momentum are separate physics layers. -/
structure OpenNullLightMode where
mode : Physics.NullRecognitionMode.PropagatingMode
zero_cost : Physics.NullRecognitionMode.totalModeCost mode = 0
ray : ℕ → ℕ
ray_injective : Function.Injective ray
What this page does not claim
The declaration does not prove that any physical photon exists. The declaration does not derive the speed of light or any dynamical property of the mode. The declaration does not assign polarization or momentum to the mode.
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/OpenPropagation.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 the speed of light for this open null mode?
- What physical properties distinguish this zero-cost mode from a photon in the framework?
- How does the eight-tick cycle for closed matter patterns arise from the forcing chain?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM openNullRay_no_positive_period · IndisputableMonolith/Masses/MassGenesis/OpenPropagation.lean
/-- An injective ray cannot close with any positive period. -/ theorem openNullRay_no_positive_period (γ : OpenNullLightMode) (n p : ℕ) (hp : 0 < p) : γ.ray (n + p) ≠ γ.ray n := by intro h have hidx : n + p = n := γ.ray_injective h omegaThe declaration states that an injective ray cannot have a positive period. openNullRay_no_positive_period · IndisputableMonolith/Masses/MassGenesis/OpenPropagation.leanTHEOREM openNull_not_finite_closed · IndisputableMonolith/Masses/MassGenesis/OpenPropagation.lean
theorem openNull_not_finite_closed (γ : OpenNullLightMode) : OpenNullNotFiniteClosed γ := by intro n p hp exact openNullRay_no_positive_period γ n p hpThe theorem proves that the ray is not a finite closed pattern. openNull_not_finite_closed · IndisputableMonolith/Masses/MassGenesis/OpenPropagation.leanMODEL OpenNullLightMode · IndisputableMonolith/Masses/MassGenesis/OpenPropagation.lean
/-- An open null light mode is a zero-cost propagating recognition mode carried by an injective infinite ray. This is the recognition-level carrier needed for zero rest mass; polarization and photon momentum are separate physics layers. -/ structure OpenNullLightMode where mode : Physics.NullRecognitionMode.PropagatingMode zero_cost : Physics.NullRecognitionMode.totalModeCost mode = 0 ray : ℕ → ℕ ray_injective : Function.Injective rayThe framework models a massless particle as a zero-cost recognition mode on an infinite ray. OpenNullLightMode · IndisputableMonolith/Masses/MassGenesis/OpenPropagation.lean