Encyclopedia Masses Masses Mass Genesis T10 Octave Settlement Readout Octave Corner Window Not Raw P
ARTICLE 3 claims 2 theorems 1 model
Masses Mass Genesis T10 Octave Settlement Readout Octave Corner Window Not Raw P
A machine-checked theorem shows that summing eight tick signals cannot produce a photon's phase-zero/one pattern, so the two-phase output must come from a distinct settlement mechanism.
The octave settlement readout
In the Recognition Science framework, a ledger (a discrete record of events) assigns values at eight clock ticks. The declaration octaveCornerWindow_not_rawPhotonPhase01Support establishes a negative result: the plain octave sum, formed by adding the eight single-posting corner windows, is nonzero at every tick, so it cannot serve as the raw support for a photon's phase-zero and phase-one pattern. The theorem proves this by showing the sum at tick two is nonzero, which contradicts the requirement that a raw phase-zero/one support vanish there.
This is a theorem (a statement proved from axioms) in the machine-checked library of formal theorems, not a definitional choice. The octave sum is a canonical construction: no weight is chosen to shape the target. The proof is complete and axiom-clean, meaning it relies only on the standard logical axioms and no framework-specific assumptions.
What the declaration does not claim is equally important. It does not say that phase-zero/one support is impossible in the framework. It only rules out the plain octave sum as the source. The framework's library also proves the parity-signed octave sum is neutral and vanishes at ticks zero and five, so it too is not the raw phase-zero/one support. The actual two-phase output, if it exists, must come from a different settlement mechanism, one that the framework models separately.
In plain terms, the declaration is a boundary marker. It tells a reader exactly where one proposed construction fails, and it does so with the full weight of a formal proof. This is how the framework builds confidence: not by asserting what is possible, but by rigorously closing off what is not.
MODEL octaveCornerWindow · IndisputableMonolith/Masses/MassGenesis/T10OctaveSettlementReadout.lean
/-- Plain settled-octave readout: the sum of the eight phase-posting corner
windows. MODEL construction; properties below are THEOREM. -/
def octaveCornerWindow : PhotonWindow :=
fun t =>
∑ phase : Fin 8,
cornerModeWindowTransport (phaseSignedPostingPhotonSource3 phase) t
THEOREM octaveCornerWindow_not_rawPhotonPhase01Support · IndisputableMonolith/Masses/MassGenesis/T10OctaveSettlementReadout.lean
theorem octaveCornerWindow_not_rawPhotonPhase01Support :
¬ RawPhotonPhase01Support octaveCornerWindow := fun h =>
octaveCornerWindow_ne_zero 2 (h 2 (by decide) (by decide))
THEOREM parityOctaveCornerWindow_eq_zero_iff · IndisputableMonolith/Masses/MassGenesis/T10OctaveSettlementReadout.lean
/-- **Zero-set characterization.** The parity-signed settled readout vanishes
exactly at the two ticks whose Gray vertex is uniform: all-false at tick zero
and all-true at tick five. -/
theorem parityOctaveCornerWindow_eq_zero_iff (t : Fin 8) :
parityOctaveCornerWindow t = 0 ↔ t = 0 ∨ t = 5 := by
constructor
· intro h
fin_cases t
· exact Or.inl rfl
· exact absurd h parity_ne_one
· exact absurd h parity_ne_two
· exact absurd h parity_ne_three
· exact absurd h parity_ne_four
· exact Or.inr rfl
· exact absurd h parity_ne_six
· exact absurd h parity_ne_seven
· rintro (rfl | rfl)
· exact parityVal_zero
· exact parityVal_five
What this page does not claim
The declaration does not claim that phase-zero/one support is impossible in the framework. The declaration does not claim that the octave sum is the only construction that fails this property. The declaration does not claim that the parity-signed sum is the settlement mechanism.
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/T10OctaveSettlementReadout.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 settlement mechanism, if any, produces the two-phase output that the octave sums cannot?
- How does the parity-signed octave sum relate to the physical photon window compatibility property?
- What distinguishes a raw phase-zero/one support from a settlement mechanism with genuinely two-phase output?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
MODEL octaveCornerWindow · IndisputableMonolith/Masses/MassGenesis/T10OctaveSettlementReadout.lean
/-- Plain settled-octave readout: the sum of the eight phase-posting corner windows. MODEL construction; properties below are THEOREM. -/ def octaveCornerWindow : PhotonWindow := fun t => ∑ phase : Fin 8, cornerModeWindowTransport (phaseSignedPostingPhotonSource3 phase) tThe octave sum is a canonical construction: no weight is chosen to shape the target. octaveCornerWindow · IndisputableMonolith/Masses/MassGenesis/T10OctaveSettlementReadout.leanTHEOREM octaveCornerWindow_not_rawPhotonPhase01Support · IndisputableMonolith/Masses/MassGenesis/T10OctaveSettlementReadout.lean
theorem octaveCornerWindow_not_rawPhotonPhase01Support : ¬ RawPhotonPhase01Support octaveCornerWindow := fun h => octaveCornerWindow_ne_zero 2 (h 2 (by decide) (by decide))The plain octave sum is nonzero at every tick, so it cannot serve as the raw support for a photon's phase-zero and phase-one pattern. octaveCornerWindow_not_rawPhotonPhase01Support · IndisputableMonolith/Masses/MassGenesis/T10OctaveSettlementReadout.leanTHEOREM parityOctaveCornerWindow_eq_zero_iff · IndisputableMonolith/Masses/MassGenesis/T10OctaveSettlementReadout.lean
/-- **Zero-set characterization.** The parity-signed settled readout vanishes exactly at the two ticks whose Gray vertex is uniform: all-false at tick zero and all-true at tick five. -/ theorem parityOctaveCornerWindow_eq_zero_iff (t : Fin 8) : parityOctaveCornerWindow t = 0 ↔ t = 0 ∨ t = 5 := by constructor · intro h fin_cases t · exact Or.inl rfl · exact absurd h parity_ne_one · exact absurd h parity_ne_two · exact absurd h parity_ne_three · exact absurd h parity_ne_four · exact Or.inr rfl · exact absurd h parity_ne_six · exact absurd h parity_ne_seven · rintro (rfl | rfl) · exact parityVal_zero · exact parityVal_fiveThe parity-signed octave sum is neutral and vanishes at ticks zero and five, so it too is not the raw phase-zero/one support. parityOctaveCornerWindow_eq_zero_iff · IndisputableMonolith/Masses/MassGenesis/T10OctaveSettlementReadout.lean