Encyclopedia Foundation Foundation Maximal Forcing Rsmass Ladder Universe Yardstick Independent
ARTICLE 3 claims 3 theorems
Foundation Maximal Forcing Rsmass Ladder Universe Yardstick Independent
Within one framework's formal system, the absolute mass scale is a free coordinate, not a forced invariant, and the proof is a pair of countermodels.
The free yardstick
The declaration yardstick_independent establishes a precise limit on what a certain formal system can force. The system in question is the mass-ladder layer of Recognition Science, which places particle masses on a phi-ladder: each rung's mass is a base value multiplied by a power of the golden ratio, written m(rung) = M0 · φ^rung. The base value M0 is the yardstick, the absolute unit that sets the scale of the whole ladder. The declaration proves that this yardstick is independent: the formal system cannot force it to be any particular number.
The proof is a pair of countermodels, two admissible worlds that disagree on the claim. One world sets the yardstick to 1, the other to 2. Both are fully admissible, meaning they satisfy every condition the framework imposes on candidate universes. Since the two worlds disagree on whether M0 = 1, the claim that the yardstick equals one cannot be forced. The theorem is machine-checked in the framework's library of formal theorems, with the countermodel pair as the explicit witness.
This independence is the counterpart to a forced claim in the same layer. The dimensionless scaling invariant, that adjacent rungs differ by the factor φ, is forced over every yardstick. It holds structurally, with no extra condition needed. The contrast is the point: the framework's classifier distinguishes invariants from coordinates. The ratio between rungs is an invariant, forced by the ladder's definition. The absolute scale is a coordinate, free to vary. Dimensionless structure is forced; absolute units are free.
The declaration does not claim that mass ratios are arbitrary, nor that the phi-ladder itself is optional. It claims only that the absolute yardstick is a free coordinate within this formal layer. It also does not claim that the yardstick's value is physically unconstrained in the full framework; other layers may select it. Within this specific universe, the yardstick is independent, and the proof is the two countermodels.
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 yardstickIndepWitness · IndisputableMonolith/Foundation/MaximalForcing/RSMassLadderUniverse.lean
/-- **The yardstick is independent.** Two admissible yardsticks (1 and 2) disagree
on the claim `M0 = 1`. The absolute mass scale is a free coordinate, not a forced
invariant. -/
def yardstickIndepWitness : IndependenceWitness massUniverse isYardstickClaim where
yes_model := (1 : ℝ)
no_model := (2 : ℝ)
yes_admissible := trivial
no_admissible := trivial
yes_holds := rfl
no_fails := by
intro h
have h1 : (2 : ℝ) = 1 := h
norm_num at h1
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
What this page does not claim
The declaration does not claim that the phi-ladder itself is forced; it takes the ladder as given and classifies claims about it. The declaration does not claim that the yardstick is physically unconstrained in the full framework, only that this formal layer cannot force it. The declaration does not claim that the two countermodels are physically realized; they are formal witnesses within the framework.
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:
- What selects the absolute mass scale in the full framework, if anything does?
- How does the independence of the yardstick here relate to the selection of other constants elsewhere in the framework?
- Does the forced scaling invariant survive when the rung index is extended from natural numbers to integers?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
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 yardstickIndepWitnessThe declaration proves that the yardstick M0 is independent, not forced to any particular value. yardstick_independent · IndisputableMonolith/Foundation/MaximalForcing/RSMassLadderUniverse.leanTHEOREM yardstickIndepWitness · IndisputableMonolith/Foundation/MaximalForcing/RSMassLadderUniverse.lean
/-- **The yardstick is independent.** Two admissible yardsticks (1 and 2) disagree on the claim `M0 = 1`. The absolute mass scale is a free coordinate, not a forced invariant. -/ def yardstickIndepWitness : IndependenceWitness massUniverse isYardstickClaim where yes_model := (1 : ℝ) no_model := (2 : ℝ) yes_admissible := trivial no_admissible := trivial yes_holds := rfl no_fails := by intro h have h1 : (2 : ℝ) = 1 := h norm_num at h1The proof is a pair of countermodels, two admissible worlds that disagree on the claim that M0 = 1. yardstickIndepWitness · IndisputableMonolith/Foundation/MaximalForcing/RSMassLadderUniverse.leanTHEOREM 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] ringThe dimensionless scaling invariant, that adjacent rungs differ by the factor φ, is forced over every yardstick. forced_ladderRatio · IndisputableMonolith/Foundation/MaximalForcing/RSMassLadderUniverse.lean