Encyclopedia Masses Masses Mass Genesis T10 Posted Load Scale Settled Anchor Eq Commit Settlement Fo
ARTICLE 3 claims 3 theorems
Masses Mass Genesis T10 Posted Load Scale Settled Anchor Eq Commit Settlement Fo
A settled anchor's window, when it matches a commitment settlement, must have amplitude exactly one, not two.
The settled anchor's unit scale
In the Recognition Science framework, a ledger is a discrete record of events, and a recognition is the act of reading that record. A settled anchor is a pattern in the ledger that has been read and fixed. The declaration settledAnchor_eq_commitSettlement_forces_unitAmplitude proves a constraint on such anchors: if a settled anchor's window, its span of recorded values, equals the window of a commitment settlement, then its amplitude, the size of the values it records, must be exactly one. The proof is direct: a commitment settlement window is Boolean, meaning every entry is 0, 1, or -1. A settled anchor with a positive amplitude that matches this Boolean pattern cannot have amplitude 2, because 2 is not a Boolean value. The theorem forces the amplitude to be 1.
This result is a theorem in the framework's machine-checked library of formal theorems. It is not a model or a hypothesis; it is a proved consequence of the framework's definitions. The theorem also has a companion result: a settled anchor window of amplitude 2 cannot be Boolean. This means a doubled scale, an anchor with amplitude 2, is rejected by the framework's logic. The theorem applies both to anchors read directly from a ledger and to anchors read from an emitted photon state, where the window is definitionally a commitment settlement.
What the theorem does not claim is broader. The unit amplitude applies to the anchor's window, not to every quantity in the framework. In particular, it does not force the load topology ratio, a separate measure of how load relates to topology, to equal one. The framework explicitly proves there exists a settled Boolean unit seed, a gap-one worldline, where the load topology ratio is not one. This is stated as a residual open problem, not a theorem. The unit scale is a property of the settled anchor, not a universal constraint on all load measures.
THEOREM settledAnchor_eq_commitSettlement_forces_unitAmplitude · IndisputableMonolith/Masses/MassGenesis/T10PostedLoadScale.lean
/-- Reading a commitment settlement window as the settled anchor forces unit
posting amplitude (the sourced-channel Boolean difference case). -/
theorem settledAnchor_eq_commitSettlement_forces_unitAmplitude
{a : ℝ} {ψ : LightPattern (Fin 8)} {phase : Fin 8}
(hwin : SettledAnchorWindow a ψ)
(heq : ψ.window 0 = commitSettlementWindow phase)
(ha : 0 < a) : a = 1 := by
have hbool : BooleanDifferenceSettlementWindow (ψ.window 0) := by
rw [heq]
exact commitSettlementWindow_boolean phase
exact settledAnchor_boolean_forces_unitAmplitude hwin hbool ha
THEOREM settledAnchorWindow_two_not_boolean · IndisputableMonolith/Masses/MassGenesis/T10PostedLoadScale.lean
/-- **Doubled-scale decoy.** `SettledAnchorWindow 2` is never Boolean-valued:
its commit entry is `2`, outside `{0,±1}`. -/
theorem settledAnchorWindow_two_not_boolean
{ψ : LightPattern (Fin 8)}
(hwin : SettledAnchorWindow 2 ψ) :
¬ BooleanDifferenceSettlementWindow (ψ.window 0) := by
intro hbool
have hunit :=
settledAnchor_boolean_forces_unitAmplitude hwin hbool (by norm_num)
norm_num at hunit
THEOREM settledLoadIsPostedLoad_wall · IndisputableMonolith/Masses/MassGenesis/T10PostedLoadScale.lean
/-- **CONSTRAINT+WITNESS wall.** Unit Boolean posted settlement does not force
`loadTopologyRatio = 1`. The gap-one worldline is the discriminating decoy
against treating Boolean unit scale as topology-matched load. -/
theorem settledLoadIsPostedLoad_wall :
¬ SettledLoadIsPostedLoad := by
intro hall
obtain ⟨ψ, hcarrier, hunit, hbool, hratio⟩ :=
exists_unitBooleanSettled_loadTopologyRatio_ne_one
exact hratio (hall ψ hcarrier hunit hbool)
What this page does not claim
The theorem does not claim that all settled anchors have unit amplitude, only those matching a commitment settlement. The theorem does not claim that the load topology ratio is always one. The theorem does not claim that the framework derives 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/T10PostedLoadScale.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 significance of the load topology ratio being not equal to one for a settled Boolean unit seed?
- What conditions would force the load topology ratio to equal one?
- How does the unit amplitude constraint relate to the mass ladder in the framework?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM settledAnchor_eq_commitSettlement_forces_unitAmplitude · IndisputableMonolith/Masses/MassGenesis/T10PostedLoadScale.lean
/-- Reading a commitment settlement window as the settled anchor forces unit posting amplitude (the sourced-channel Boolean difference case). -/ theorem settledAnchor_eq_commitSettlement_forces_unitAmplitude {a : ℝ} {ψ : LightPattern (Fin 8)} {phase : Fin 8} (hwin : SettledAnchorWindow a ψ) (heq : ψ.window 0 = commitSettlementWindow phase) (ha : 0 < a) : a = 1 := by have hbool : BooleanDifferenceSettlementWindow (ψ.window 0) := by rw [heq] exact commitSettlementWindow_boolean phase exact settledAnchor_boolean_forces_unitAmplitude hwin hbool haIf a settled anchor's window equals the window of a commitment settlement, then its amplitude must be exactly one. settledAnchor_eq_commitSettlement_forces_unitAmplitude · IndisputableMonolith/Masses/MassGenesis/T10PostedLoadScale.leanTHEOREM settledAnchorWindow_two_not_boolean · IndisputableMonolith/Masses/MassGenesis/T10PostedLoadScale.lean
/-- **Doubled-scale decoy.** `SettledAnchorWindow 2` is never Boolean-valued: its commit entry is `2`, outside `{0,±1}`. -/ theorem settledAnchorWindow_two_not_boolean {ψ : LightPattern (Fin 8)} (hwin : SettledAnchorWindow 2 ψ) : ¬ BooleanDifferenceSettlementWindow (ψ.window 0) := by intro hbool have hunit := settledAnchor_boolean_forces_unitAmplitude hwin hbool (by norm_num) norm_num at hunitA settled anchor window of amplitude 2 cannot be Boolean. settledAnchorWindow_two_not_boolean · IndisputableMonolith/Masses/MassGenesis/T10PostedLoadScale.leanTHEOREM settledLoadIsPostedLoad_wall · IndisputableMonolith/Masses/MassGenesis/T10PostedLoadScale.lean
/-- **CONSTRAINT+WITNESS wall.** Unit Boolean posted settlement does not force `loadTopologyRatio = 1`. The gap-one worldline is the discriminating decoy against treating Boolean unit scale as topology-matched load. -/ theorem settledLoadIsPostedLoad_wall : ¬ SettledLoadIsPostedLoad := by intro hall obtain ⟨ψ, hcarrier, hunit, hbool, hratio⟩ := exists_unitBooleanSettled_loadTopologyRatio_ne_one exact hratio (hall ψ hcarrier hunit hbool)The unit amplitude does not force the load topology ratio to equal one. settledLoadIsPostedLoad_wall · IndisputableMonolith/Masses/MassGenesis/T10PostedLoadScale.lean