Encyclopedia Masses Masses Mass Genesis Phi Rung Quantization Phi Rung Quantized Of Stable
ARTICLE 5 claims 5 theorems
Masses Mass Genesis Phi Rung Quantization Phi Rung Quantized Of Stable
A stable pattern's mass scale is locked to a power of the golden ratio, a fact the framework proves and carefully separates from any specific particle mass.
The rung scale
The golden ratio φ, approximately 1.618, is the number that solves r² = r + 1. It appears throughout mathematics, from the regular pentagon to the Fibonacci sequence. In the Recognition Science framework, a ledger, a discrete record of events, is the basic object of study. The framework's library, a machine-checked collection of formal theorems, proves that certain stable patterns in this ledger have a mass scale that is a power of φ.
The declaration phiRungQuantized_of_stable establishes that any stable closed light pattern has a well-defined integer rung, and its associated scale is exactly φ raised to that integer. This is a theorem, not a definition. The proof relies on the fact that a closed scale sequence, a geometric sequence attached to a stable pattern, must have a ratio of φ. The theorem also shows this ratio is universal: it is the same for all stable patterns, independent of any particular particle type or measured mass data.
The framework further proves that this rung scale is invariant under the pattern's evolution, meaning it does not change as the pattern develops over time. It also shows that stepping the rung by one multiplies the scale by φ, a direct consequence of the defining equation. These results form a coherent picture: stability forces a specific, quantized scale.
The theorem is explicit about what it does not do. It does not prove that the actual rest mass of a particle equals the predicted mass from the framework's mass law. That equality remains a separate, later step in the framework's development. The rung scale is the topology-derived object; the final mass equality is a further claim.
For a general reader, the consequence is a concrete structural claim: in this framework, stable patterns cannot have arbitrary scales. Their scales are locked to the golden ratio, a number that emerges from the ledger's own closure condition, not from empirical fitting.
THEOREM phiRungQuantized_of_stable · IndisputableMonolith/Masses/MassGenesis/PhiRungQuantization.lean
theorem phiRungQuantized_of_stable
(ψ : LightPattern Λ) (_hψ : StableClosedLightPattern ψ) :
PhiRungQuantized ψ :=
⟨rungOf ψ, rfl, rfl⟩
THEOREM closedPatternScale_ratio_eq_phi · IndisputableMonolith/Masses/MassGenesis/PhiRungQuantization.lean
theorem closedPatternScale_ratio_eq_phi
{ψ : LightPattern Λ} (S : ClosedPatternScale ψ) :
S.sequence.ratio = Constants.phi :=
Foundation.PhiForcingDerived.closed_ratio_is_phi S.sequence S.closed
THEOREM closedPatternScale_forces_universal_phi · IndisputableMonolith/Masses/MassGenesis/PhiRungQuantization.lean
/-- The universal ratio forced by a closed pattern scale is independent of
the particle sector and of empirical mass data. -/
theorem closedPatternScale_forces_universal_phi
{ψ χ : LightPattern Λ}
(Sψ : ClosedPatternScale ψ) (Sχ : ClosedPatternScale χ) :
Sψ.sequence.ratio = Sχ.sequence.ratio := by
rw [closedPatternScale_ratio_eq_phi Sψ,
closedPatternScale_ratio_eq_phi Sχ]
THEOREM phiRungScale_step · IndisputableMonolith/Masses/MassGenesis/PhiRungQuantization.lean
/-- A one-rung topology step multiplies the rung scale by `phi`. -/
theorem phiRungScale_step
(ψ χ : LightPattern Λ)
(hstep : rungOf χ = rungOf ψ + 1) :
phiRungScale χ = Constants.phi * phiRungScale ψ := by
unfold phiRungScale
rw [hstep]
calc
Constants.phi ^ (rungOf ψ + 1)
= Constants.phi ^ (rungOf ψ) * Constants.phi ^ (1 : ℤ) := by
rw [zpow_add₀ Constants.phi_ne_zero]
_ = Constants.phi ^ (rungOf ψ) * Constants.phi := by
simp
_ = Constants.phi * Constants.phi ^ (rungOf ψ) := by
ring
THEOREM predictedMass_unfold_topological_labels · IndisputableMonolith/Masses/MassGenesis/PhiRungQuantization.lean
/-- The existing mass-law prediction expands to the topology labels. This is
only the old formula evaluated on the pattern labels; it is not the M7 theorem
that invariant load equals that prediction. -/
theorem predictedMass_unfold_topological_labels
(ψ : LightPattern Λ) :
predictedMass ψ =
Anchor.yardstick (sectorOf ψ) *
(Constants.phi ^
((rungOf ψ : ℝ) - 8 + MassLaw.gap_correction (ZOf ψ))) := by
rfl
What this page does not claim
The theorem does not assign a numerical mass to any specific particle. The theorem does not claim that all light patterns are stable. The theorem does not derive the fine-structure constant.
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/PhiRungQuantization.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 is the precise definition of a stable closed light pattern in the framework?
- How does the framework's mass law connect the rung scale to a numerical rest mass?
- What is the physical interpretation of the integer rung in terms of particle families?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM phiRungQuantized_of_stable · IndisputableMonolith/Masses/MassGenesis/PhiRungQuantization.lean
theorem phiRungQuantized_of_stable (ψ : LightPattern Λ) (_hψ : StableClosedLightPattern ψ) : PhiRungQuantized ψ := ⟨rungOf ψ, rfl, rfl⟩The declaration phiRungQuantized_of_stable establishes that any stable closed light pattern has a well-defined integer rung, and its associated scale is exactly φ raised to that integer. phiRungQuantized_of_stable · IndisputableMonolith/Masses/MassGenesis/PhiRungQuantization.leanTHEOREM closedPatternScale_ratio_eq_phi · IndisputableMonolith/Masses/MassGenesis/PhiRungQuantization.lean
theorem closedPatternScale_ratio_eq_phi {ψ : LightPattern Λ} (S : ClosedPatternScale ψ) : S.sequence.ratio = Constants.phi := Foundation.PhiForcingDerived.closed_ratio_is_phi S.sequence S.closedThe proof relies on the fact that a closed scale sequence, a geometric sequence attached to a stable pattern, must have a ratio of φ. closedPatternScale_ratio_eq_phi · IndisputableMonolith/Masses/MassGenesis/PhiRungQuantization.leanTHEOREM closedPatternScale_forces_universal_phi · IndisputableMonolith/Masses/MassGenesis/PhiRungQuantization.lean
/-- The universal ratio forced by a closed pattern scale is independent of the particle sector and of empirical mass data. -/ theorem closedPatternScale_forces_universal_phi {ψ χ : LightPattern Λ} (Sψ : ClosedPatternScale ψ) (Sχ : ClosedPatternScale χ) : Sψ.sequence.ratio = Sχ.sequence.ratio := by rw [closedPatternScale_ratio_eq_phi Sψ, closedPatternScale_ratio_eq_phi Sχ]The theorem also shows this ratio is universal: it is the same for all stable patterns, independent of any particular particle type or measured mass data. closedPatternScale_forces_universal_phi · IndisputableMonolith/Masses/MassGenesis/PhiRungQuantization.leanTHEOREM phiRungScale_step · IndisputableMonolith/Masses/MassGenesis/PhiRungQuantization.lean
/-- A one-rung topology step multiplies the rung scale by `phi`. -/ theorem phiRungScale_step (ψ χ : LightPattern Λ) (hstep : rungOf χ = rungOf ψ + 1) : phiRungScale χ = Constants.phi * phiRungScale ψ := by unfold phiRungScale rw [hstep] calc Constants.phi ^ (rungOf ψ + 1) = Constants.phi ^ (rungOf ψ) * Constants.phi ^ (1 : ℤ) := by rw [zpow_add₀ Constants.phi_ne_zero] _ = Constants.phi ^ (rungOf ψ) * Constants.phi := by simp _ = Constants.phi * Constants.phi ^ (rungOf ψ) := by ringIt also shows that stepping the rung by one multiplies the scale by φ, a direct consequence of the defining equation. phiRungScale_step · IndisputableMonolith/Masses/MassGenesis/PhiRungQuantization.leanTHEOREM predictedMass_unfold_topological_labels · IndisputableMonolith/Masses/MassGenesis/PhiRungQuantization.lean
/-- The existing mass-law prediction expands to the topology labels. This is only the old formula evaluated on the pattern labels; it is not the M7 theorem that invariant load equals that prediction. -/ theorem predictedMass_unfold_topological_labels (ψ : LightPattern Λ) : predictedMass ψ = Anchor.yardstick (sectorOf ψ) * (Constants.phi ^ ((rungOf ψ : ℝ) - 8 + MassLaw.gap_correction (ZOf ψ))) := by rflIt does not prove that the actual rest mass of a particle equals the predicted mass from the framework's mass law. predictedMass_unfold_topological_labels · IndisputableMonolith/Masses/MassGenesis/PhiRungQuantization.lean