Encyclopedia Masses Masses Mass Genesis T10 Octave Anchor Concentration
ARTICLE 3 claims 3 theorems
Masses Mass Genesis T10 Octave Anchor Concentration
A machine-checked proof isolates the exact gap between two ways a photon's window can be described, and shows all but one candidate fails.
The concentrated anchor
In Recognition Science, a framework that derives physical structure from a discrete record of events, a photon's behavior is described by a window: a function that assigns an amplitude to each moment. The library, a machine-checked collection of formal theorems, has two candidate descriptions for this window. One comes from the ledger, the discrete record of settled events, and the other is carried independently by the physical photon state. The question is whether these two descriptions always agree.
The module named T10 octave-anchor concentration proves they do not always agree. It packages the known failures into a single named property, PhysicalPhotonWindowIsOriginSettlementReadout, which states that the photon's window equals the ledger's image of a settled octave's origin occupation. The key theorem, settledOctave_originLocalSettlement_eq_gapOne, proves that for every settled octave, this origin settlement is exactly the gap-one window, a specific two-phase mode. A second theorem, physicalPhotonWindow_of_originSettlement_eq_gapOne, then concludes that any photon whose window matches that ledger image must have the gap-one window.
The module also provides witnesses that every other candidate fails. Corner mode windows, which arise from source-borne aggregates, do not support the raw photon phase condition, and they differ from the gap-one window. A parity-compatible corner window is shown to be compatible with the current physical photon window yet still not gap-one and not phase-01 supported. No naturality law can relate the corner mode relation to the source window relation. These failures are collected into a single certificate, T10OctaveAnchorConcentrationCert, which the library proves holds.
What this establishes in plain language is a precise boundary. The ledger's origin settlement forces the gap-one window, and no other window that passes the compatibility checks can reach it. The concentration is real: the anchor, the origin settlement, picks out exactly one window among the candidates. The module does not claim that the independently carried physical window always equals the ledger image; that bridge remains an open target. It proves the one-way implication and the failures of all alternatives.
THEOREM settledOctave_originLocalSettlement_eq_gapOne · IndisputableMonolith/Masses/MassGenesis/T10OctaveAnchorConcentration.lean
/-- Origin local settlement of every settled octave is gap-one. -/
theorem settledOctave_originLocalSettlement_eq_gapOne
(octave : Q3SettledLedgerOctave)
(L : LocalSettlementReadout) :
(fun t =>
L.amplitude
(ledgerOccupationWindow octave
(q3PhaseOfLedgerParity octave.initial) t)
(ledgerOccupationWindow octave
(q3PhaseOfLedgerParity octave.initial) (t - 1))) =
gapOneTwoPhaseMode :=
(settledLedger_settlement_law octave L
(q3PhaseOfLedgerParity octave.initial)).trans
(settledOctave_first_settlement_is_gapOne octave)
THEOREM physicalPhotonWindow_of_originSettlement_eq_gapOne · IndisputableMonolith/Masses/MassGenesis/T10OctaveAnchorConcentration.lean
/-- Consequently any photon whose window equals that origin settlement image
is the gap-one window. -/
theorem physicalPhotonWindow_of_originSettlement_eq_gapOne
(photon : PhysicalPhotonState)
(octave : Q3SettledLedgerOctave)
(L : LocalSettlementReadout)
(h : PhysicalPhotonWindowIsOriginSettlementReadout photon octave L) :
photon.window = gapOneTwoPhaseMode :=
h.trans (settledOctave_originLocalSettlement_eq_gapOne octave L)
THEOREM t10OctaveAnchorConcentrationCert · IndisputableMonolith/Masses/MassGenesis/T10OctaveAnchorConcentration.lean
theorem t10OctaveAnchorConcentrationCert :
T10OctaveAnchorConcentrationCert where
origin_settlement_eq_gap_one :=
settledOctave_originLocalSettlement_eq_gapOne
corner_no_phase01 := cornerMode_not_rawPhotonPhase01Support_witness
octave_corner_ne_gapOne := octaveCornerWindow_not_gapOne_witness
parity_compatible_not_gapOne :=
parityOctave_compatible_not_gapOne_witness
corner_not_naturality_law :=
cornerMode_not_sourceWindowNaturalityLaw_witness
What this page does not claim
The module does not prove that the independently carried physical photon window always equals the ledger image. The module does not derive the fine-structure constant or any specific particle mass value. The module does not claim that corner mode windows are physically impossible, only that they fail the ledger's origin settlement condition.
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/T10OctaveAnchorConcentration.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 measurement would distinguish the gap-one window from a corner mode window?
- Does the open bridge from the physical photon state to the ledger image require a new axiom or a deeper theorem?
- How does the gap-one window relate to the eight-tick recognition cycle?
- What role does the origin occupation play in the mass ladder?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM settledOctave_originLocalSettlement_eq_gapOne · IndisputableMonolith/Masses/MassGenesis/T10OctaveAnchorConcentration.lean
/-- Origin local settlement of every settled octave is gap-one. -/ theorem settledOctave_originLocalSettlement_eq_gapOne (octave : Q3SettledLedgerOctave) (L : LocalSettlementReadout) : (fun t => L.amplitude (ledgerOccupationWindow octave (q3PhaseOfLedgerParity octave.initial) t) (ledgerOccupationWindow octave (q3PhaseOfLedgerParity octave.initial) (t - 1))) = gapOneTwoPhaseMode := (settledLedger_settlement_law octave L (q3PhaseOfLedgerParity octave.initial)).trans (settledOctave_first_settlement_is_gapOne octave)The key theorem, settledOctave_originLocalSettlement_eq_gapOne, proves that for every settled octave, this origin settlement is exactly the gap-one window, a specific two-phase mode. settledOctave_originLocalSettlement_eq_gapOne · IndisputableMonolith/Masses/MassGenesis/T10OctaveAnchorConcentration.leanTHEOREM physicalPhotonWindow_of_originSettlement_eq_gapOne · IndisputableMonolith/Masses/MassGenesis/T10OctaveAnchorConcentration.lean
/-- Consequently any photon whose window equals that origin settlement image is the gap-one window. -/ theorem physicalPhotonWindow_of_originSettlement_eq_gapOne (photon : PhysicalPhotonState) (octave : Q3SettledLedgerOctave) (L : LocalSettlementReadout) (h : PhysicalPhotonWindowIsOriginSettlementReadout photon octave L) : photon.window = gapOneTwoPhaseMode := h.trans (settledOctave_originLocalSettlement_eq_gapOne octave L)A second theorem, physicalPhotonWindow_of_originSettlement_eq_gapOne, then concludes that any photon whose window matches that ledger image must have the gap-one window. physicalPhotonWindow_of_originSettlement_eq_gapOne · IndisputableMonolith/Masses/MassGenesis/T10OctaveAnchorConcentration.leanTHEOREM t10OctaveAnchorConcentrationCert · IndisputableMonolith/Masses/MassGenesis/T10OctaveAnchorConcentration.lean
theorem t10OctaveAnchorConcentrationCert : T10OctaveAnchorConcentrationCert where origin_settlement_eq_gap_one := settledOctave_originLocalSettlement_eq_gapOne corner_no_phase01 := cornerMode_not_rawPhotonPhase01Support_witness octave_corner_ne_gapOne := octaveCornerWindow_not_gapOne_witness parity_compatible_not_gapOne := parityOctave_compatible_not_gapOne_witness corner_not_naturality_law := cornerMode_not_sourceWindowNaturalityLaw_witnessThese failures are collected into a single certificate, T10OctaveAnchorConcentrationCert, which the library proves holds. t10OctaveAnchorConcentrationCert · IndisputableMonolith/Masses/MassGenesis/T10OctaveAnchorConcentration.lean