Encyclopedia Foundation Foundation Maximal Forcing Rsmass Ladder Universe Mass Universe Classifier

ARTICLE 3 claims 3 theorems

Foundation Maximal Forcing Rsmass Ladder Universe Mass Universe Classifier

A machine-checked proof separates what physics must determine from what it leaves free, using the golden ratio as its example.

The classifier's verdict

The golden ratio φ, approximately 1.618, is the positive solution to r² = r + 1. It appears throughout mathematics: in the regular pentagon, in the Fibonacci sequence, and in the continued fraction [1;1,1,1,...]. In the Recognition Science framework, φ plays a specific structural role: it is the unique scaling factor that a discrete ledger of events must use. A ledger is a discrete record of events, and the framework's central theorem proves that any cost function meeting five plain conditions must equal J(x) = (x + 1/x)/2 - 1, from which φ follows as the forced self-similar scaling.

The massUniverse_classifier declaration, a theorem in the framework's machine-checked library of formal theorems, establishes a precise separation within a model universe of masses. It defines a ladder of masses where each rung is the previous one multiplied by φ: m(rung) = M0 · φ^rung. The classifier proves that the ratio between adjacent rungs, the dimensionless scaling invariant, is forced: it must be φ for every possible yardstick M0. This is a structural property of the ladder itself, independent of any choice of units.

The same classifier proves the opposite for the absolute yardstick M0 itself. The claim that M0 equals 1 is independent, meaning it is a free coordinate. The proof provides an explicit countermodel pair: the yardsticks 1 and 2 are both admissible, but they disagree on whether M0 = 1. The absolute mass scale is not forced by the framework's logic; it is a choice, like choosing whether to measure in kilograms or pounds.

In Recognition Science, this result is the first concrete instantiation where the framework's maximal forcing machinery exercises both of its branches. The classifier proves that every claim in this universe's closure is either forced or independent, with no third option selected. The theorem massUniverse_trichotomy extends this to state that every closure claim falls into one of three categories: Forced, Independent, or Selected. Here, the Selected category is empty.

The practical consequence is a clean division of labor. Dimensionless structure, like the ratio between adjacent rungs, is determined by the framework's logic. Absolute units, like the value of the yardstick, remain free parameters. This mirrors a familiar situation in physics: the fine-structure constant is dimensionless and universal, while the kilogram is an arbitrary human convention. The classifier provides a formal, machine-checked proof that this separation is not an accident of this model, but a structural feature of the framework's logic.

THEOREM forced_ladderRatio · IndisputableMonolith/Foundation/MaximalForcing/RSMassLadderUniverse.lean
/-- **The phi-ladder scaling invariant is forced over every yardstick.** No gate
is required: the recurrence is a structural identity of the ladder. -/
theorem forced_ladderRatio : Forced Lmass0.admissible isLadderRatioClaim := by
  intro M0 _ r
  show ladderMass M0 (r + 1) = φ * ladderMass M0 r
  unfold ladderMass
  rw [pow_succ]
  ring
THEOREM yardstick_independent · IndisputableMonolith/Foundation/MaximalForcing/RSMassLadderUniverse.lean
/-- The yardstick claim is independent (Prop-level), via the witness. -/
theorem yardstick_independent : Independent Lmass0.admissible isYardstickClaim :=
  independent_of_witness yardstickIndepWitness
THEOREM massUniverse_classifier · IndisputableMonolith/Foundation/MaximalForcing/RSMassLadderUniverse.lean
/-- **Mixed classifier.** Every claim in the mass-ladder closure is classified:
the scaling invariant as `forced`, the yardstick as `independent`. This is the
first universe whose certificate uses both branches. -/
theorem massUniverse_classifier :
    ∀ C : RealityClaim massUniverse.Realization,
      InClosure Primitive.lawOfLogic massUniverse C → ClaimClassification massUniverse C := by
  intro C hC
  have hmem : C ∈ massUniverse.claims := hC
  simp only [massUniverse, Set.mem_insert_iff, Set.mem_singleton_iff] at hmem
  rcases hmem with h | h
  · subst h; exact ClaimClassification.forced forced_ladderRatio
  · subst h; exact ClaimClassification.independent yardstickIndepWitness

What this page does not claim

This result does not claim that the absolute mass scale M0 is determined by the framework; it explicitly proves it is a free coordinate. This result does not claim that the golden ratio φ is the only possible scaling factor; it is the unique one forced by the framework's specific cost function. This result does not claim that particle masses in the real universe follow this exact ladder; the comparison to measured values is an empirical check, not a theorem.

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/Foundation/MaximalForcing/RSMassLadderUniverse.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:

MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND