Encyclopedia Masses Masses Mass Genesis T10 Settled Origin Decision Settled Origin Commit Settlement
ARTICLE 4 claims 4 theorems
Masses Mass Genesis T10 Settled Origin Decision Settled Origin Commit Settlement
A machine-checked theorem fixes where the first tick of a settled octave sits, and it does so only relative to a carried clock.
The settled origin
In the Recognition Science account, a settled octave is a completed eight-tick recognition cycle, and each such octave carries an indexing that marks where its run began. The theorem settledOrigin_commitSettlement_eq_gapOne states that, relative to that carried origin, the commitment settlement window of the octave's initial parity phase is exactly the gap-one two-phase mode. In plainer words: the first tick of a settled octave is fixed to be the first gap in the two-phase structure, and this is true for every settled octave in the framework.
The proof is short and direct. A prior theorem, settledOrigin_is_phaseZero, establishes that every settled octave's own origin reads phase zero. Substituting that fact into the definition of the commitment settlement window yields the gap-one result. The machine-checked library of formal theorems records this derivation without gaps or unstated assumptions.
What the theorem does not claim is just as important. It does not say that this phase-zero origin is observer-independent or absolute. The framework's own documentation is explicit: a search for an observer-independent reindexing law that preserves the physical settlement class and forces the same absolute anchor phases did not yield a kernel-checked positive theorem. The final form, Branch B, accepts the carried origin as final. Uniqueness and anchor support are stated relative to the carried run origin, and absolute observer-free phase naming remains outside the closed claim.
This is a deliberate boundary. The theorem pins down the first tick of a settled octave relative to its own carried clock, but it does not pretend to fix an absolute phase for the universe. That distinction matters for anyone reading the framework's claims: the settled origin is a settled relative fact, not a claim about an observer-free absolute frame.
THEOREM settledOrigin_commitSettlement_eq_gapOne · IndisputableMonolith/Masses/MassGenesis/T10SettledOriginDecision.lean
/-- Relative to the carried origin, the run-origin commitment settles exactly
gap-one. -/
theorem settledOrigin_commitSettlement_eq_gapOne
(octave : Q3SettledLedgerOctave) :
commitSettlementWindow (q3PhaseOfLedgerParity octave.initial) =
gapOneTwoPhaseMode := by
rw [settledOrigin_is_phaseZero octave,
commitSettlementWindow_zero_eq_gapOne]
THEOREM settledOrigin_is_phaseZero · IndisputableMonolith/Masses/MassGenesis/T10SettledOriginDecision.lean
/-- Every settled legal octave's own origin reads phase zero. -/
theorem settledOrigin_is_phaseZero
(octave : Q3SettledLedgerOctave) :
q3PhaseOfLedgerParity octave.initial = 0 :=
settledOctave_initial_phase_zero octave
THEOREM carriedSettledOriginFinalForm · IndisputableMonolith/Masses/MassGenesis/T10SettledOriginDecision.lean
theorem carriedSettledOriginFinalForm :
CarriedSettledOriginFinalForm where
every_settled_octave_origin_phase_zero := settledOrigin_is_phaseZero
run_origin_settlement_is_gap_one :=
settledOrigin_commitSettlement_eq_gapOne
claim_scope := trivial
THEOREM T10SettledOriginDecisionCert · IndisputableMonolith/Masses/MassGenesis/T10SettledOriginDecision.lean
structure T10SettledOriginDecisionCert : Prop where
branch_b_accepted : CarriedSettledOriginFinalForm
origin_phase_zero :
∀ octave : Q3SettledLedgerOctave,
q3PhaseOfLedgerParity octave.initial = 0
origin_settlement_gap_one :
∀ octave : Q3SettledLedgerOctave,
commitSettlementWindow (q3PhaseOfLedgerParity octave.initial) =
gapOneTwoPhaseMode
What this page does not claim
The theorem does not establish an observer-free absolute phase origin. It does not prove that the carried origin is unique across all possible reindexings. It does not derive the physical masses themselves, only a structural anchor for their rungs.
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/T10SettledOriginDecision.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 physical content does the gap-one two-phase mode carry for the masses that sit on the rungs of the recognition cycle?
- What would an observer-independent reindexing law have to look like to force absolute anchor phases?
- How does the carried-origin settlement interact with the forced-matter closure plan's later steps?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM settledOrigin_commitSettlement_eq_gapOne · IndisputableMonolith/Masses/MassGenesis/T10SettledOriginDecision.lean
/-- Relative to the carried origin, the run-origin commitment settles exactly gap-one. -/ theorem settledOrigin_commitSettlement_eq_gapOne (octave : Q3SettledLedgerOctave) : commitSettlementWindow (q3PhaseOfLedgerParity octave.initial) = gapOneTwoPhaseMode := by rw [settledOrigin_is_phaseZero octave, commitSettlementWindow_zero_eq_gapOne]The theorem settledOrigin_commitSettlement_eq_gapOne states that, relative to that carried origin, the commitment settlement window of the octave's initial parity phase is exactly the gap-one two-phase mode. settledOrigin_commitSettlement_eq_gapOne · IndisputableMonolith/Masses/MassGenesis/T10SettledOriginDecision.leanTHEOREM settledOrigin_is_phaseZero · IndisputableMonolith/Masses/MassGenesis/T10SettledOriginDecision.lean
/-- Every settled legal octave's own origin reads phase zero. -/ theorem settledOrigin_is_phaseZero (octave : Q3SettledLedgerOctave) : q3PhaseOfLedgerParity octave.initial = 0 := settledOctave_initial_phase_zero octaveA prior theorem, settledOrigin_is_phaseZero, establishes that every settled octave's own origin reads phase zero. settledOrigin_is_phaseZero · IndisputableMonolith/Masses/MassGenesis/T10SettledOriginDecision.leanTHEOREM carriedSettledOriginFinalForm · IndisputableMonolith/Masses/MassGenesis/T10SettledOriginDecision.lean
theorem carriedSettledOriginFinalForm : CarriedSettledOriginFinalForm where every_settled_octave_origin_phase_zero := settledOrigin_is_phaseZero run_origin_settlement_is_gap_one := settledOrigin_commitSettlement_eq_gapOne claim_scope := trivialThe final form, Branch B, accepts the carried origin as final. carriedSettledOriginFinalForm · IndisputableMonolith/Masses/MassGenesis/T10SettledOriginDecision.leanTHEOREM T10SettledOriginDecisionCert · IndisputableMonolith/Masses/MassGenesis/T10SettledOriginDecision.lean
structure T10SettledOriginDecisionCert : Prop where branch_b_accepted : CarriedSettledOriginFinalForm origin_phase_zero : ∀ octave : Q3SettledLedgerOctave, q3PhaseOfLedgerParity octave.initial = 0 origin_settlement_gap_one : ∀ octave : Q3SettledLedgerOctave, commitSettlementWindow (q3PhaseOfLedgerParity octave.initial) = gapOneTwoPhaseModeUniqueness and anchor support are stated relative to the carried run origin, and absolute observer-free phase naming remains outside the closed claim. T10SettledOriginDecisionCert · IndisputableMonolith/Masses/MassGenesis/T10SettledOriginDecision.lean