Encyclopedia Foundation Foundation Pair Kernel Gap2a Source Calorimeter Faithful Readout
ARTICLE 6 claims 5 theorems 1 model
Foundation Pair Kernel Gap2a Source Calorimeter Faithful Readout
A machine-checked library proves that any faithful readout of an attenuating channel must amplify, and forces its gain to a specific power of the golden ratio.
Faithful channel readout
A faithful channel readout is a rule that reconstructs an original signal from a weakened one. In the Recognition Science framework, a ledger (a discrete record of events) carries energy through a sequence of channels, and each channel attenuates, or weakens, the signal by a fixed factor. A faithful readout is a per-channel gain, a multiplier that undoes that weakening so the reading at the end matches the reading at the start. The framework's machine-checked library of formal theorems proves that any such readout must have a gain strictly greater than one, because the channel strictly attenuates. It also proves the readout is unique: two faithful readouts of the same attachment agree everywhere, leaving no freedom in how the reconstruction works.
The central result is that the gain is forced, not chosen. On a complete carrier, where the channel is fully coherent, the gain equals the reciprocal of the native action quantum, written as φ⁵ where φ is the golden ratio. The theorem gain_forced states the gain is exactly φ raised to the block index, and completeCarrier_gain_eq_nativeActionQuantumInv pins it to φ⁵ on complete carriers. This follows from the channel's self-similar attenuation law, not from any posited product rule. The readout's heat observable, defined as scaled posted flux, then selects exactly this quantum and rejects the unit quantum, as shown by readoutHeat_selects_nativeActionQuantumInv and readoutHeat_rejects_unit_quantum.
The module also discharges a previously banked revival door. Under the interface premise that the source scale equals the complete-carrier faithful gain, the theorem sourceCalorimeter_forces_remainingPhysicalEquality derives the remaining physical equality S = φ⁵. But the honesty wall is explicit: that interface premise is a supplied physical identification, logically equivalent to the target equality itself, not a derived law. The module proves the instrument is rigid and selective, but it does not prove the source scale independently. The vacuity guards confirm the instrument laws alone do not force the equality, and the interface shape without faithfulness admits the rejected candidate A.
MODEL FaithfulChannelReadout · IndisputableMonolith/Foundation/PairKernelGap2aSourceCalorimeterFaithfulReadout.lean
/-- **The instrument.** A faithful readout bound to a channel-block energy
attachment: per-block gains that reconstruct the at-cut (zero-block)
reading from the through-carrier (`n`-block) reading. Fields are
target-blind production dynamics only: positivity and transfer inversion
against the attachment's own committed fields. No `sourceScale`, `hbar`,
`nativeActionQuantum`, cotangent coordinate, or desired readout equality
occurs in any field; the faithfulness right-hand side is the attachment's
own empty-block value, not a literal unit. -/
structure FaithfulChannelReadout {N : ℕ} [NeZero N]
(channelEnergy : PostingEventChannelEnergy3 N) where
gain : RealizedPostingEvent3 N → ℕ → ℝ
gain_pos : ∀ event n, 0 < gain event n
gain_undoes_attenuation :
∀ event n,
gain event n * channelEnergy.blockEnergy event n =
channelEnergy.blockEnergy event 0
THEOREM gain_gt_one_of_attenuating · IndisputableMonolith/Foundation/PairKernelGap2aSourceCalorimeterFaithfulReadout.lean
/-- **Mechanical candidate-A exclusion.** A faithful readout of any
nonempty block must strictly amplify: the carrier attenuates, so unit gain
would misreport the posted content. The proof never evaluates `φ` and
never cites `1 ≠ φ⁵`; it holds for every attenuation constant. -/
theorem gain_gt_one_of_attenuating
{N : ℕ} [NeZero N]
{channelEnergy : PostingEventChannelEnergy3 N}
(readout : FaithfulChannelReadout channelEnergy)
(event : RealizedPostingEvent3 N) (m : ℕ) :
1 < readout.gain event (m + 1) := by
have hlt := blockEnergy_succ_lt_one channelEnergy event m
have hpos := channelEnergy.blockEnergy_pos event (m + 1)
rw [gain_eq_inv_blockEnergy readout event (m + 1)]
exact (one_lt_inv₀ hpos).mpr hlt
THEOREM faithful_readout_unique · IndisputableMonolith/Foundation/PairKernelGap2aSourceCalorimeterFaithfulReadout.lean
/-- **The instrument class is rigid**: two faithful readouts of the same
attachment agree everywhere. Zero residual instrument freedom, in contrast
with the free-`q` heat-carrier wall. -/
theorem faithful_readout_unique
{N : ℕ} [NeZero N]
{channelEnergy : PostingEventChannelEnergy3 N}
(readout₁ readout₂ : FaithfulChannelReadout channelEnergy)
(event : RealizedPostingEvent3 N) (n : ℕ) :
readout₁.gain event n = readout₂.gain event n := by
rw [gain_eq_inv_blockEnergy readout₁ event n,
gain_eq_inv_blockEnergy readout₂ event n]
THEOREM completeCarrier_gain_eq_nativeActionQuantumInv · IndisputableMonolith/Foundation/PairKernelGap2aSourceCalorimeterFaithfulReadout.lean
/-- On a coherence-complete physical carrier, the faithful gain is exactly
the reciprocal native action quantum `φ⁵`. The dimension `5` arrives from
the same completeness theorem arrow A used
(`completeCarrier_dimension_eq_configDim`), and the value from
`gain_forced`; neither is posited here. -/
theorem completeCarrier_gain_eq_nativeActionQuantumInv
{N : ℕ} [NeZero N]
{physical : PostingPhysicalChannelCarrier3 N}
{channelEnergy : PostingEventChannelEnergy3 N}
(readout : FaithfulChannelReadout channelEnergy)
(hcomplete : PostingCarrierCoherenceComplete3 physical)
(event : RealizedPostingEvent3 N) :
readout.gain event
(physicalPostingCarrierDimension3 physical event) =
nativeActionQuantumInv := by
rw [gain_forced readout event
(physicalPostingCarrierDimension3 physical event),
completeCarrier_dimension_eq_configDim hcomplete event,
GapDerivation.configDim_at_D3,
nativeActionQuantumInv_eq_constants_phi_pow_five,
zpow_natCast]
THEOREM readoutHeat_selects_nativeActionQuantumInv · readoutHeat_rejects_unit_quantum · IndisputableMonolith/Foundation/PairKernelGap2aSourceCalorimeterFaithfulReadout.lean
/-- **The selective inhabitation the D2 revival demands:** on a
coherence-complete carrier the readout heat is a posted-record-flux carrier
at exactly `nativeActionQuantumInv`, with the quantum instrument-forced
(`gain_forced`) rather than free. -/
theorem readoutHeat_selects_nativeActionQuantumInv
{N : ℕ} [NeZero N]
{physical : PostingPhysicalChannelCarrier3 N}
{channelEnergy : PostingEventChannelEnergy3 N}
(readout : FaithfulChannelReadout channelEnergy)
(hcomplete : PostingCarrierCoherenceComplete3 physical)
(event : RealizedPostingEvent3 N) :
HeatIsPostedRecordFlux nativeActionQuantumInv
(readoutHeat readout physical event) := by
intro c c'
show readout.gain event
(physicalPostingCarrierDimension3 physical event) *
(stepHeatCell c c' : ℝ) =
nativeActionQuantumInv * (stepHeatCell c c' : ℝ)
rw [completeCarrier_gain_eq_nativeActionQuantumInv
readout hcomplete event]
/-- Candidate-A rejection on a coherence-complete carrier: the dimension
theorem supplies only nonemptiness (`configDim = 5 > 0`). -/
theorem readoutHeat_rejects_unit_quantum
{N : ℕ} [NeZero N]
{physical : PostingPhysicalChannelCarrier3 N}
{channelEnergy : PostingEventChannelEnergy3 N}
(readout : FaithfulChannelReadout channelEnergy)
(hcomplete : PostingCarrierCoherenceComplete3 physical)
(event : RealizedPostingEvent3 N) :
¬ HeatIsPostedRecordFlux 1 (readoutHeat readout physical event) := by
apply readoutHeat_rejects_unit_quantum_of_pos_dimension
rw [completeCarrier_dimension_eq_configDim hcomplete event,
GapDerivation.configDim_at_D3]
norm_num
THEOREM sourceCalorimeter_forces_remainingPhysicalEquality · IndisputableMonolith/Foundation/PairKernelGap2aSourceCalorimeterFaithfulReadout.lean
/-- **Conditional closure.** Interface premise + faithful instrument +
coherence-complete carrier force the residual atom. This is a theorem
about what the typed interface buys; it is not an unconditional derivation
of the adopted law. -/
theorem sourceCalorimeter_forces_remainingPhysicalEquality
{N : ℕ} [NeZero N]
{physical : PostingPhysicalChannelCarrier3 N}
{channelEnergy : PostingEventChannelEnergy3 N}
(readout : FaithfulChannelReadout channelEnergy)
(hcomplete : PostingCarrierCoherenceComplete3 physical)
{sourceScale : ℝ} {event : RealizedPostingEvent3 N}
(hinterface :
SourceScaleReadsCompleteCarrierReadout
physical readout sourceScale event) :
RemainingPhysicalEquality sourceScale := by
change sourceScale = uniqueCotangentCoordinate
exact hinterface.trans
(completeCarrier_gain_eq_uniqueCotangentCoordinate
readout hcomplete event)
What this page does not claim
The source scale equality S = φ⁵ is derived unconditionally; it requires the supplied interface premise. The independent calorimeter marker is substantively discharged; the readout heat is definitionally packaged as scaled posted flux. The instrument laws alone force the remaining physical equality without the interface premise.
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/Foundation/PairKernelGap2aSourceCalorimeterFaithfulReadout.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 identification justifies the interface premise that the source scale equals the complete-carrier faithful gain?
- Does the faithful readout instrument extend to incomplete carriers where the channel is not fully coherent?
- How does the readout-derived heat observable relate to the tautological posted heat construction it extensionally matches?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
MODEL FaithfulChannelReadout · IndisputableMonolith/Foundation/PairKernelGap2aSourceCalorimeterFaithfulReadout.lean
/-- **The instrument.** A faithful readout bound to a channel-block energy attachment: per-block gains that reconstruct the at-cut (zero-block) reading from the through-carrier (`n`-block) reading. Fields are target-blind production dynamics only: positivity and transfer inversion against the attachment's own committed fields. No `sourceScale`, `hbar`, `nativeActionQuantum`, cotangent coordinate, or desired readout equality occurs in any field; the faithfulness right-hand side is the attachment's own empty-block value, not a literal unit. -/ structure FaithfulChannelReadout {N : ℕ} [NeZero N] (channelEnergy : PostingEventChannelEnergy3 N) where gain : RealizedPostingEvent3 N → ℕ → ℝ gain_pos : ∀ event n, 0 < gain event n gain_undoes_attenuation : ∀ event n, gain event n * channelEnergy.blockEnergy event n = channelEnergy.blockEnergy event 0A faithful channel readout is a per-channel gain that reconstructs the at-cut reading from the through-carrier reading. FaithfulChannelReadout · IndisputableMonolith/Foundation/PairKernelGap2aSourceCalorimeterFaithfulReadout.leanTHEOREM gain_gt_one_of_attenuating · IndisputableMonolith/Foundation/PairKernelGap2aSourceCalorimeterFaithfulReadout.lean
/-- **Mechanical candidate-A exclusion.** A faithful readout of any nonempty block must strictly amplify: the carrier attenuates, so unit gain would misreport the posted content. The proof never evaluates `φ` and never cites `1 ≠ φ⁵`; it holds for every attenuation constant. -/ theorem gain_gt_one_of_attenuating {N : ℕ} [NeZero N] {channelEnergy : PostingEventChannelEnergy3 N} (readout : FaithfulChannelReadout channelEnergy) (event : RealizedPostingEvent3 N) (m : ℕ) : 1 < readout.gain event (m + 1) := by have hlt := blockEnergy_succ_lt_one channelEnergy event m have hpos := channelEnergy.blockEnergy_pos event (m + 1) rw [gain_eq_inv_blockEnergy readout event (m + 1)] exact (one_lt_inv₀ hpos).mpr hltAny faithful readout of a nonempty block has gain strictly above one. gain_gt_one_of_attenuating · IndisputableMonolith/Foundation/PairKernelGap2aSourceCalorimeterFaithfulReadout.leanTHEOREM faithful_readout_unique · IndisputableMonolith/Foundation/PairKernelGap2aSourceCalorimeterFaithfulReadout.lean
/-- **The instrument class is rigid**: two faithful readouts of the same attachment agree everywhere. Zero residual instrument freedom, in contrast with the free-`q` heat-carrier wall. -/ theorem faithful_readout_unique {N : ℕ} [NeZero N] {channelEnergy : PostingEventChannelEnergy3 N} (readout₁ readout₂ : FaithfulChannelReadout channelEnergy) (event : RealizedPostingEvent3 N) (n : ℕ) : readout₁.gain event n = readout₂.gain event n := by rw [gain_eq_inv_blockEnergy readout₁ event n, gain_eq_inv_blockEnergy readout₂ event n]Two faithful readouts of the same attachment agree everywhere. faithful_readout_unique · IndisputableMonolith/Foundation/PairKernelGap2aSourceCalorimeterFaithfulReadout.leanTHEOREM completeCarrier_gain_eq_nativeActionQuantumInv · IndisputableMonolith/Foundation/PairKernelGap2aSourceCalorimeterFaithfulReadout.lean
/-- On a coherence-complete physical carrier, the faithful gain is exactly the reciprocal native action quantum `φ⁵`. The dimension `5` arrives from the same completeness theorem arrow A used (`completeCarrier_dimension_eq_configDim`), and the value from `gain_forced`; neither is posited here. -/ theorem completeCarrier_gain_eq_nativeActionQuantumInv {N : ℕ} [NeZero N] {physical : PostingPhysicalChannelCarrier3 N} {channelEnergy : PostingEventChannelEnergy3 N} (readout : FaithfulChannelReadout channelEnergy) (hcomplete : PostingCarrierCoherenceComplete3 physical) (event : RealizedPostingEvent3 N) : readout.gain event (physicalPostingCarrierDimension3 physical event) = nativeActionQuantumInv := by rw [gain_forced readout event (physicalPostingCarrierDimension3 physical event), completeCarrier_dimension_eq_configDim hcomplete event, GapDerivation.configDim_at_D3, nativeActionQuantumInv_eq_constants_phi_pow_five, zpow_natCast]On a complete carrier the gain is exactly nativeActionQuantumInv = φ⁵. completeCarrier_gain_eq_nativeActionQuantumInv · IndisputableMonolith/Foundation/PairKernelGap2aSourceCalorimeterFaithfulReadout.leanTHEOREM readoutHeat_selects_nativeActionQuantumInv · readoutHeat_rejects_unit_quantum · IndisputableMonolith/Foundation/PairKernelGap2aSourceCalorimeterFaithfulReadout.lean
/-- **The selective inhabitation the D2 revival demands:** on a coherence-complete carrier the readout heat is a posted-record-flux carrier at exactly `nativeActionQuantumInv`, with the quantum instrument-forced (`gain_forced`) rather than free. -/ theorem readoutHeat_selects_nativeActionQuantumInv {N : ℕ} [NeZero N] {physical : PostingPhysicalChannelCarrier3 N} {channelEnergy : PostingEventChannelEnergy3 N} (readout : FaithfulChannelReadout channelEnergy) (hcomplete : PostingCarrierCoherenceComplete3 physical) (event : RealizedPostingEvent3 N) : HeatIsPostedRecordFlux nativeActionQuantumInv (readoutHeat readout physical event) := by intro c c' show readout.gain event (physicalPostingCarrierDimension3 physical event) * (stepHeatCell c c' : ℝ) = nativeActionQuantumInv * (stepHeatCell c c' : ℝ) rw [completeCarrier_gain_eq_nativeActionQuantumInv readout hcomplete event]/-- Candidate-A rejection on a coherence-complete carrier: the dimension theorem supplies only nonemptiness (`configDim = 5 > 0`). -/ theorem readoutHeat_rejects_unit_quantum {N : ℕ} [NeZero N] {physical : PostingPhysicalChannelCarrier3 N} {channelEnergy : PostingEventChannelEnergy3 N} (readout : FaithfulChannelReadout channelEnergy) (hcomplete : PostingCarrierCoherenceComplete3 physical) (event : RealizedPostingEvent3 N) : ¬ HeatIsPostedRecordFlux 1 (readoutHeat readout physical event) := by apply readoutHeat_rejects_unit_quantum_of_pos_dimension rw [completeCarrier_dimension_eq_configDim hcomplete event, GapDerivation.configDim_at_D3] norm_numThe readout-derived heat observable selects exactly one conversion quantum, nativeActionQuantumInv on complete carriers, and rejects the unit quantum. readoutHeat_selects_nativeActionQuantumInv · readoutHeat_rejects_unit_quantum · IndisputableMonolith/Foundation/PairKernelGap2aSourceCalorimeterFaithfulReadout.leanTHEOREM sourceCalorimeter_forces_remainingPhysicalEquality · IndisputableMonolith/Foundation/PairKernelGap2aSourceCalorimeterFaithfulReadout.lean
/-- **Conditional closure.** Interface premise + faithful instrument + coherence-complete carrier force the residual atom. This is a theorem about what the typed interface buys; it is not an unconditional derivation of the adopted law. -/ theorem sourceCalorimeter_forces_remainingPhysicalEquality {N : ℕ} [NeZero N] {physical : PostingPhysicalChannelCarrier3 N} {channelEnergy : PostingEventChannelEnergy3 N} (readout : FaithfulChannelReadout channelEnergy) (hcomplete : PostingCarrierCoherenceComplete3 physical) {sourceScale : ℝ} {event : RealizedPostingEvent3 N} (hinterface : SourceScaleReadsCompleteCarrierReadout physical readout sourceScale event) : RemainingPhysicalEquality sourceScale := by change sourceScale = uniqueCotangentCoordinate exact hinterface.trans (completeCarrier_gain_eq_uniqueCotangentCoordinate readout hcomplete event)Under the interface premise that the source scale equals the complete-carrier faithful gain, the remaining physical equality S = φ⁵ follows. sourceCalorimeter_forces_remainingPhysicalEquality · IndisputableMonolith/Foundation/PairKernelGap2aSourceCalorimeterFaithfulReadout.lean