Encyclopedia Masses Masses Mass Genesis T10 Multi Quantum Posted Emission Scaled Commit Settlement P
ARTICLE 3 claims 2 theorems 1 model
Masses Mass Genesis T10 Multi Quantum Posted Emission Scaled Commit Settlement P
A scaled photon emission window in the Recognition Science ledger is shown to equal a specific gap-one pattern, but the amplitude that scales it remains a free choice.
The scaled settlement window
The declaration scaledCommitSettlement_phaseZero_eq_scaledGapOne is a theorem in the machine-checked library of formal theorems that Recognition Science uses to build its derivations. It states that a particular settlement window, a discrete record of eight tick values that the framework uses to represent a photon emission, when scaled by a positive real amplitude and placed at phase zero, equals the known gap-one pattern. In plain terms, it proves that the shape of the emitted window at the first phase is exactly the gap-one two-phase mode, a specific pattern of adjacent-pair support that the framework's cost function treats as a stationary point.
The theorem is part of a larger construction called the scaled occupation posting mechanism. The framework models a photon channel as a function that assigns a complex value to each of eight ticks, and the scaled settlement window multiplies a base window by a free positive amplitude a. The theorem pins down the window's shape at phase zero: it is the gap-one pattern, not the gap-two pattern. The gap-two pattern is excluded by shape, because it does not have the adjacent-pair support that the scaled window carries. This is a structural result, not a numerical one; it says nothing about the value of the amplitude itself.
What the theorem does not claim is that the amplitude a is forced to any particular value. The amplitude is free and positive in the construction. A separate named residual, PostedAmplitudeMatchesTopologyFactor, records the choice that would make the amplitude equal to the topology factor amplitude, which would yield sigma-zero. But that choice is not derived from the Boolean ledger; it is an additional identification, not a consequence of the theorem. The theorem also does not claim that any emitted window is a bare unconditional forced matter interface. The interface structure carries the amplitude and the named match residual explicitly, so the claim is conditional on those components being present.
In the framework's own terms, the result establishes that the gap-one pattern is the only shape available at phase zero for a scaled emission window. This matters because it narrows the possible mass-genesis mechanisms: after the unit Boolean emission fails to produce the charged-species sigma-zero, the scaled posting at phase zero must take the gap-one shape. The amplitude remains the open degree of freedom, and the theorem's role is to fix the shape while leaving that freedom explicit. It is a step in the forcing chain, not the end of it.
THEOREM window_ne_gapTwo · scaledCommitSettlementWindow · IndisputableMonolith/Masses/MassGenesis/T10MultiQuantumPostedEmission.lean
theorem window_ne_gapTwo (e : EmittedPhotonStateScaled) :
e.window ≠ gapTwoTwoPhaseMode := by
rw [window_eq_scaledCommit]
exact scaledCommitSettlement_ne_gapTwo e.amplitude e.phase
/-- Positive-amplitude multiple of the Boolean commitment settlement. -/
def scaledCommitSettlementWindow (a : ℝ) (phase : Fin 8) : PhotonWindow :=
fun t => (a : ℂ) * commitSettlementWindow phase t
THEOREM gapOne_factorAmplitude_pos · IndisputableMonolith/Masses/MassGenesis/T10MultiQuantumPostedEmission.lean
/-- Gap-one factor amplitude is strictly positive. -/
theorem gapOne_factorAmplitude_pos :
0 <
primitivePositiveStationaryFactorAmplitude
(worldlinePattern gapOneTwoPhaseMode) := by
obtain ⟨E⟩ := q3MatterCarrier_worldlinePattern_gapOne
obtain ⟨c, hc, hload⟩ := exists_scale_loadNormalizedToTopology E
have hground :
PositiveScaleGroundState (worldlinePattern gapOneTwoPhaseMode)
⟨c, hc⟩ :=
(loadRecognitionCost_eq_zero_iff_loadNormalizedToTopology
(scalePattern_q3ClosedEvidence c hc E)).2 hload
have heq :=
unitSettled_groundStateScale_eq_primitiveAmplitude E
worldlineGapOne_settledAnchor_unit' ⟨c, hc⟩ hground
exact heq ▸ hc
MODEL ofGapOneFactorAmplitude · IndisputableMonolith/Masses/MassGenesis/T10MultiQuantumPostedEmission.lean
def ofGapOneFactorAmplitude
(octave : Q3SettledLedgerOctave) :
EmittedForcedMatterInterfaceScaled := by
set a :=
primitivePositiveStationaryFactorAmplitude
(worldlinePattern gapOneTwoPhaseMode)
have ha : 0 < a := gapOne_factorAmplitude_pos
set ψ := scalePattern a (worldlinePattern gapOneTwoPhaseMode)
have hpack := scalePattern_gapOne_at_factorAmplitude_sigmaZero
refine
{ readout :=
{ octave := octave
amplitude := a
amplitude_pos := ha
pattern := ψ
q3_carrier := hpack.2.1
reads_emitted :=
factorAmplitude_originEmitted_reads_scaledGapOne octave }
amplitude_matches_factor := ?_ }
simpa [a, ψ] using hpack.2.2.2
What this page does not claim
The amplitude value is not forced by the Boolean ledger. The gap-one shape is not claimed to be the only possible emission shape at other phases. The theorem does not assert that any emitted window is a bare unconditional forced matter interface.
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/T10MultiQuantumPostedEmission.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 masses does the gap-one shape at phase zero correspond to in the framework's mass law?
- What mechanism would force the amplitude to match the topology factor, if any?
- How does the scaled posting mechanism connect to the earlier unit Boolean emission result?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM window_ne_gapTwo · scaledCommitSettlementWindow · IndisputableMonolith/Masses/MassGenesis/T10MultiQuantumPostedEmission.lean
theorem window_ne_gapTwo (e : EmittedPhotonStateScaled) : e.window ≠ gapTwoTwoPhaseMode := by rw [window_eq_scaledCommit] exact scaledCommitSettlement_ne_gapTwo e.amplitude e.phase/-- Positive-amplitude multiple of the Boolean commitment settlement. -/ def scaledCommitSettlementWindow (a : ℝ) (phase : Fin 8) : PhotonWindow := fun t => (a : ℂ) * commitSettlementWindow phase tThe theorem proves that a scaled settlement window at phase zero equals the gap-one pattern, not the gap-two pattern. window_ne_gapTwo · scaledCommitSettlementWindow · IndisputableMonolith/Masses/MassGenesis/T10MultiQuantumPostedEmission.leanTHEOREM gapOne_factorAmplitude_pos · IndisputableMonolith/Masses/MassGenesis/T10MultiQuantumPostedEmission.lean
/-- Gap-one factor amplitude is strictly positive. -/ theorem gapOne_factorAmplitude_pos : 0 < primitivePositiveStationaryFactorAmplitude (worldlinePattern gapOneTwoPhaseMode) := by obtain ⟨E⟩ := q3MatterCarrier_worldlinePattern_gapOne obtain ⟨c, hc, hload⟩ := exists_scale_loadNormalizedToTopology E have hground : PositiveScaleGroundState (worldlinePattern gapOneTwoPhaseMode) ⟨c, hc⟩ := (loadRecognitionCost_eq_zero_iff_loadNormalizedToTopology (scalePattern_q3ClosedEvidence c hc E)).2 hload have heq := unitSettled_groundStateScale_eq_primitiveAmplitude E worldlineGapOne_settledAnchor_unit' ⟨c, hc⟩ hground exact heq ▸ hcThe amplitude in the scaled window is free and positive, not forced by the Boolean ledger. gapOne_factorAmplitude_pos · IndisputableMonolith/Masses/MassGenesis/T10MultiQuantumPostedEmission.leanMODEL ofGapOneFactorAmplitude · IndisputableMonolith/Masses/MassGenesis/T10MultiQuantumPostedEmission.lean
def ofGapOneFactorAmplitude (octave : Q3SettledLedgerOctave) : EmittedForcedMatterInterfaceScaled := by set a := primitivePositiveStationaryFactorAmplitude (worldlinePattern gapOneTwoPhaseMode) have ha : 0 < a := gapOne_factorAmplitude_pos set ψ := scalePattern a (worldlinePattern gapOneTwoPhaseMode) have hpack := scalePattern_gapOne_at_factorAmplitude_sigmaZero refine { readout := { octave := octave amplitude := a amplitude_pos := ha pattern := ψ q3_carrier := hpack.2.1 reads_emitted := factorAmplitude_originEmitted_reads_scaledGapOne octave } amplitude_matches_factor := ?_ } simpa [a, ψ] using hpack.2.2.2The choice of amplitude equal to the topology factor amplitude is named as a residual, not derived. ofGapOneFactorAmplitude · IndisputableMonolith/Masses/MassGenesis/T10MultiQuantumPostedEmission.lean