Encyclopedia Masses Masses Mass Genesis T10 Sourced Channel Emission Channel Tick Current Eq Origin
ARTICLE 3 claims 3 theorems
Masses Mass Genesis T10 Sourced Channel Emission Channel Tick Current Eq Origin
In the Recognition Science account, the flow that makes a photon is literally the change in a bookkeeping ledger, and a proved theorem pins that flow to a specific local settlement readout.
The ledger current
A ledger, a discrete record of events, is the core image of Recognition Science. The declaration channelTickCurrent_eq_originLocalSettlement_at_phase is a proved theorem inside the framework's machine-checked library of formal theorems. It states a precise identity: for any octave and any phase of the eight-tick cycle, the current flowing through a posted photon channel equals the amplitude of a local settlement readout computed from the ledger occupation difference between consecutive ticks. In plainer words, the theorem says that the signal carried by an emitted photon is not an independent quantity; it is exactly the change in the ledger's occupation number from one tick to the next, read through a specific settlement function.
This identity is the core of what the framework calls a sourced channel. The theorem channelTickCurrent_eq_commitSettlementWindow first shows that the tick current equals a commit settlement window. Then, using a settlement law, the theorem proves that this window is exactly the amplitude of the difference settlement readout applied to consecutive ledger occupations. The consequence is that the photon's window, the shape of its signal over the eight ticks, is definitionally tied to the ledger, not a free field. The theorem EmittedPhotonState.window_eq_localSettlementImage extends this to the emitted state: the window of any emitted photon is that same local settlement image. This is a structural result about how the framework models photon emission, not a claim about any specific measured photon.
What the declaration does not claim is equally important. It does not say that the framework derives the fine-structure constant, nor that it proves the Riemann Hypothesis. It does not claim that the ledger is a physical object in the conventional sense; the ledger is a modeling choice within the framework. The theorem does not assert that all photons arise this way, only that in the sourced channel model, the window is the settlement readout. It also does not claim that the gap-two mode, a specific two-phase pattern, can be an emitted window; a separate theorem proves it cannot. The declaration is a proved identity inside the framework, with its scope limited to the sourced channel model it defines.
THEOREM channelTickCurrent_eq_originLocalSettlement_at_phase · IndisputableMonolith/Masses/MassGenesis/T10SourcedChannelEmission.lean
/-- Equivalent form: sampling equals the origin-style local settlement
readout at this phase under the difference readout. -/
theorem channelTickCurrent_eq_originLocalSettlement_at_phase
(octave : Q3SettledLedgerOctave) (phase : Fin 8) :
channelTickCurrent octave phase =
(fun t =>
differenceSettlementReadout.amplitude
(ledgerOccupationWindow octave phase t)
(ledgerOccupationWindow octave phase (t - 1))) := by
rw [channelTickCurrent_eq_commitSettlementWindow,
settledLedger_settlement_law octave differenceSettlementReadout phase]
THEOREM window_eq_localSettlementImage · IndisputableMonolith/Masses/MassGenesis/T10SourcedChannelEmission.lean
theorem window_eq_localSettlementImage (e : EmittedPhotonState) :
e.window =
(fun t =>
differenceSettlementReadout.amplitude
(ledgerOccupationWindow e.octave e.phase t)
(ledgerOccupationWindow e.octave e.phase (t - 1))) :=
channelTickCurrent_eq_originLocalSettlement_at_phase e.octave e.phase
THEOREM gapTwo_not_emittedPhotonWindow · IndisputableMonolith/Masses/MassGenesis/T10SourcedChannelEmission.lean
/-- Gap-two cannot arise as any emitted-photon window. -/
theorem gapTwo_not_emittedPhotonWindow :
¬ ∃ e : EmittedPhotonState, e.window = gapTwoTwoPhaseMode := by
rintro ⟨e, he⟩
exact e.window_ne_gapTwo he
What this page does not claim
The framework derives the fine-structure constant or proves the Riemann Hypothesis. The ledger is a physical object in the conventional sense; it is a modeling choice. All photons in the framework arise from a sourced channel; the theorem covers the sourced model only.
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/T10SourcedChannelEmission.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 a sourced channel from a free-field photon model?
- How does the settlement readout function relate to the framework's cost function J?
- What is the empirical status of the octave ladder for particle masses?
- Does the framework's library contain a proof that the sourced channel is the only possible emission mechanism?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM channelTickCurrent_eq_originLocalSettlement_at_phase · IndisputableMonolith/Masses/MassGenesis/T10SourcedChannelEmission.lean
/-- Equivalent form: sampling equals the origin-style local settlement readout at this phase under the difference readout. -/ theorem channelTickCurrent_eq_originLocalSettlement_at_phase (octave : Q3SettledLedgerOctave) (phase : Fin 8) : channelTickCurrent octave phase = (fun t => differenceSettlementReadout.amplitude (ledgerOccupationWindow octave phase t) (ledgerOccupationWindow octave phase (t - 1))) := by rw [channelTickCurrent_eq_commitSettlementWindow, settledLedger_settlement_law octave differenceSettlementReadout phase]the current flowing through a posted photon channel equals the amplitude of a local settlement readout computed from the ledger occupation difference between consecutive ticks channelTickCurrent_eq_originLocalSettlement_at_phase · IndisputableMonolith/Masses/MassGenesis/T10SourcedChannelEmission.leanTHEOREM window_eq_localSettlementImage · IndisputableMonolith/Masses/MassGenesis/T10SourcedChannelEmission.lean
theorem window_eq_localSettlementImage (e : EmittedPhotonState) : e.window = (fun t => differenceSettlementReadout.amplitude (ledgerOccupationWindow e.octave e.phase t) (ledgerOccupationWindow e.octave e.phase (t - 1))) := channelTickCurrent_eq_originLocalSettlement_at_phase e.octave e.phasethe window of any emitted photon is that same local settlement image window_eq_localSettlementImage · IndisputableMonolith/Masses/MassGenesis/T10SourcedChannelEmission.leanTHEOREM gapTwo_not_emittedPhotonWindow · IndisputableMonolith/Masses/MassGenesis/T10SourcedChannelEmission.lean
/-- Gap-two cannot arise as any emitted-photon window. -/ theorem gapTwo_not_emittedPhotonWindow : ¬ ∃ e : EmittedPhotonState, e.window = gapTwoTwoPhaseMode := by rintro ⟨e, he⟩ exact e.window_ne_gapTwo hea separate theorem proves it cannot gapTwo_not_emittedPhotonWindow · IndisputableMonolith/Masses/MassGenesis/T10SourcedChannelEmission.lean