Encyclopedia Masses Masses Mass Genesis Open Propagation Open Null Light Cert
ARTICLE 4 claims 3 theorems 1 model
Masses Mass Genesis Open Propagation Open Null Light Cert
A formal certificate that a zero-rest-mass recognition mode exists, carried along an endless ray, without claiming to explain polarization or photon momentum.
The open light carrier
In physics, a massless particle like the photon travels at the speed of light and has zero rest mass. The Recognition Science framework, which models reality as a discrete ledger of recognition events, needs a formal way to certify that such a zero-rest-mass mode can exist within its own structure. The declaration OpenNullLightCert is that certificate: a machine-checked collection of formal theorems that establishes the existence of a zero-cost recognition mode moving along an injective infinite ray, meaning a sequence of natural numbers that never repeats and never closes into a loop.
The certificate contains three proven facts. First, there exists at least one open null light mode, a propagating recognition mode whose total cost is zero, which is the recognition-level carrier needed for zero rest mass. Second, the canonical example of such a mode, built on the identity ray, indeed has zero rest mass. Third, no open null light mode can be a finite closed matter pattern: because the ray is injective, it cannot have any positive period, so it never cycles back on itself. This last point is what distinguishes a massless carrier from the closed, eight-tick cyclic patterns that model massive particles.
In Recognition Science, the framework proves that the golden ratio φ emerges as the unique self-similar scaling, and that particle masses sit on a φ-power ladder. The open null light certificate fits into this scheme as the missing carrier for the null side: it provides the formal object that the NullPropagatingMode predicate needed but lacked on the finite surface. Without this certificate, the framework's account of massless particles would be incomplete, because the predicate for null propagation would be empty.
What the certificate does not claim is just as important. It establishes the existence of a zero-rest-mass recognition mode, but it explicitly leaves polarization and photon momentum to separate physics layers. It does not derive the speed of light, the fine-structure constant, or any specific measured property of the photon. It is a structural existence proof within the framework's own ledger, not a derivation of experimental physics. The certificate says that a zero-rest-mass carrier can exist in the framework's terms, and that is all it says.
THEOREM OpenNullLightCert · openNullLightCert · IndisputableMonolith/Masses/MassGenesis/OpenPropagation.lean
structure OpenNullLightCert where
exists_open_null : ∃ γ : OpenNullLightMode, openNullRestMass γ = 0
canonical_zero_rest_mass : openNullRestMass canonicalOpenNullMode = 0
open_ray_not_periodic :
∀ γ : OpenNullLightMode, OpenNullNotFiniteClosed γ
def openNullLightCert : OpenNullLightCert where
exists_open_null := openNullLightMode_nonempty
canonical_zero_rest_mass := openNullRestMass_zero canonicalOpenNullMode
open_ray_not_periodic := openNull_not_finite_closed
THEOREM openNullLightMode_nonempty · openNullRestMass_zero · openNull_not_finite_closed · IndisputableMonolith/Masses/MassGenesis/OpenPropagation.lean
theorem openNullLightMode_nonempty :
∃ γ : OpenNullLightMode, openNullRestMass γ = 0 :=
⟨canonicalOpenNullMode, openNullRestMass_zero canonicalOpenNullMode⟩
theorem openNullRestMass_zero (γ : OpenNullLightMode) :
openNullRestMass γ = 0 :=
γ.zero_cost
theorem openNull_not_finite_closed (γ : OpenNullLightMode) :
OpenNullNotFiniteClosed γ := by
intro n p hp
exact openNullRay_no_positive_period γ n p hp
THEOREM openNullRay_no_positive_period · openNull_not_finite_closed · 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 (γ : 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 certificate does not derive the speed of light or any measured photon property. The certificate does not claim to explain polarization or photon momentum. The certificate does not prove that the framework's model of light matches experiment.
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 zero-cost recognition mode connect to the measured speed of light?
- What separate physics layer defines photon momentum in the framework?
- How does the φ-power mass ladder accommodate the zero rest mass of the photon?
- What experimental prediction follows from the existence of this open null carrier?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM OpenNullLightCert · openNullLightCert · IndisputableMonolith/Masses/MassGenesis/OpenPropagation.lean
structure OpenNullLightCert where exists_open_null : ∃ γ : OpenNullLightMode, openNullRestMass γ = 0 canonical_zero_rest_mass : openNullRestMass canonicalOpenNullMode = 0 open_ray_not_periodic : ∀ γ : OpenNullLightMode, OpenNullNotFiniteClosed γdef openNullLightCert : OpenNullLightCert where exists_open_null := openNullLightMode_nonempty canonical_zero_rest_mass := openNullRestMass_zero canonicalOpenNullMode open_ray_not_periodic := openNull_not_finite_closedThe declaration OpenNullLightCert is a machine-checked collection of formal theorems that establishes the existence of a zero-cost recognition mode moving along an injective infinite ray. OpenNullLightCert · openNullLightCert · IndisputableMonolith/Masses/MassGenesis/OpenPropagation.leanTHEOREM openNullLightMode_nonempty · openNullRestMass_zero · openNull_not_finite_closed · IndisputableMonolith/Masses/MassGenesis/OpenPropagation.lean
theorem openNullLightMode_nonempty : ∃ γ : OpenNullLightMode, openNullRestMass γ = 0 := ⟨canonicalOpenNullMode, openNullRestMass_zero canonicalOpenNullMode⟩theorem openNullRestMass_zero (γ : OpenNullLightMode) : openNullRestMass γ = 0 := γ.zero_costtheorem openNull_not_finite_closed (γ : OpenNullLightMode) : OpenNullNotFiniteClosed γ := by intro n p hp exact openNullRay_no_positive_period γ n p hpThe certificate contains three proven facts: existence of an open null mode, canonical zero rest mass, and no finite closed pattern. openNullLightMode_nonempty · openNullRestMass_zero · openNull_not_finite_closed · IndisputableMonolith/Masses/MassGenesis/OpenPropagation.leanTHEOREM openNullRay_no_positive_period · openNull_not_finite_closed · 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 omegatheorem openNull_not_finite_closed (γ : OpenNullLightMode) : OpenNullNotFiniteClosed γ := by intro n p hp exact openNullRay_no_positive_period γ n p hpNo open null light mode can be a finite closed matter pattern because the ray is injective and cannot have any positive period. openNullRay_no_positive_period · 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 certificate explicitly leaves polarization and photon momentum to separate physics layers. OpenNullLightMode · IndisputableMonolith/Masses/MassGenesis/OpenPropagation.lean