Encyclopedia Foundation Foundation Pair Kernel Gap2a Landauer Calorimeter Door Residual Landauer Door Mi
ARTICLE 4 claims 4 theorems
Foundation Pair Kernel Gap2a Landauer Calorimeter Door Residual Landauer Door Mi
A machine-checked proof that the missing piece in a physics derivation is genuinely missing, not just unclaimed.
The unbuilt calorimeter
The declaration landauerDoor_missingIndependentCellCalorimeter_inhabited is a formal certificate inside the Recognition Science framework's machine-checked library of formal theorems. It establishes one narrow fact: the type named MissingIndependentCellCalorimeter has at least one inhabitant, meaning the framework's own notation records that an independent calorimeter, a device that would measure heat conversion without relying on the framework's internal definitions, has not been constructed. The proof is a citation, not a construction: it points to a named gap type and confirms the gap exists.
The context matters. In 2026, the framework attempted to derive Planck's law from Landauer's principle, the idea that erasing one bit of information dissipates a minimum heat of q times the number of erased bits. The derivation worked only if the conversion quantum q was fixed to a specific value, the framework's native action quantum. The problem: the heat-carrier premise, the statement that heat equals q times erased bits, held for every real number q, including q = 1 and q = the native quantum. A premise that holds everywhere cannot select a specific value. The declaration under discussion certifies that the missing piece, an independent calorimeter that would force q to be the native quantum, is still absent. It does not build that calorimeter; it marks the spot where one would go.
What the declaration does not claim is just as precise. It does not prove that the missing calorimeter is impossible, only that it has not been supplied. It does not establish that the native quantum is the correct conversion factor, nor that Planck's law follows. The framework's own theorems explicitly reject the strongest current formulation: pairing the free-q premise with an arbitrary source scale cannot force the target equality. A separate conditional theorem shows what would close the gap: if a future independent calorimeter forced the selective quantum and the priced carrier identified its source scale with that quantum, then the target equality would follow. That conditional is a hypothesis, not a result.
The practical consequence is a clean ledger. The framework can distinguish what is proved from what is open, and this declaration is the bookkeeping entry that says: the door to the derivation is closed, here is the lock, and no one has the key. A reader can trust that the gap is real and named, and can see exactly what would discharge it.
THEOREM landauerDoor_missingIndependentCellCalorimeter_inhabited · IndisputableMonolith/Foundation/PairKernelGap2aLandauerCalorimeterDoorResidual.lean
theorem landauerDoor_missingIndependentCellCalorimeter_inhabited :
Nonempty MissingIndependentCellCalorimeter :=
⟨landauerDoor_cites_missingIndependentCellCalorimeter⟩
THEOREM landauer_q_free_inhabits_every_conversion_quantum · landauer_q_free_admits_candidateA · landauer_q_free_admits_candidateB · IndisputableMonolith/Foundation/PairKernelGap2aLandauerCalorimeterDoorResidual.lean
/-- The Landauer heat-carrier premise is inhabited at every conversion
quantum via the tautological posted-heat selector. -/
theorem landauer_q_free_inhabits_every_conversion_quantum (q : ℝ) :
HeatIsPostedRecordFlux q (tautologicalPostedHeat q) :=
tautological_heat_is_posted_record_flux q
/-- Candidate-A conversion quantum `q = 1`: heat-carrier premise inhabited. -/
theorem landauer_q_free_admits_candidateA :
HeatIsPostedRecordFlux (1 : ℝ) (tautologicalPostedHeat 1) :=
landauer_q_free_inhabits_every_conversion_quantum 1
/-- Candidate-B conversion quantum `q = nativeActionQuantumInv`: heat-carrier
premise inhabited. Free `q` does not select this quantum. -/
theorem landauer_q_free_admits_candidateB :
HeatIsPostedRecordFlux nativeActionQuantumInv
(tautologicalPostedHeat nativeActionQuantumInv) :=
landauer_q_free_inhabits_every_conversion_quantum nativeActionQuantumInv
THEOREM landauerDoor_does_not_force_remainingPhysicalEquality · IndisputableMonolith/Foundation/PairKernelGap2aLandauerCalorimeterDoorResidual.lean
/-- Explicit vacuous-pairing countermodel: the free-`q` heat-carrier premise
(existential, not mentioning `S`) is inhabited, yet candidate A rejects the
atom. Mirrors `no_route_within_banked_family`. -/
theorem landauerDoor_does_not_force_remainingPhysicalEquality :
¬ (∀ S : ℝ,
LandauerFreeConversionQuantumPremise S →
RemainingPhysicalEquality S) := by
intro hforce
exact remainingPhysicalEquality_rejects_candidateA
(hforce candidateA_sourceMagnitudeExpr.eval
(landauerFreeConversionQuantumPremise_holds _))
THEOREM landauerDoor_revival_if_independent_calorimeter_selects_nativeActionQuantumInv · IndisputableMonolith/Foundation/PairKernelGap2aLandauerCalorimeterDoorResidual.lean
/-- **OPEN revival door** (not assumed elsewhere).
Cites `MissingIndependentCellCalorimeter`. The missing premise is carried
as an explicit hypothesis: a future independent calorimeter discharge that
forces selective conversion quantum `nativeActionQuantumInv` (not free
`q`), together with identification of the priced occurrence source scale
with that quantum. Under those hypotheses the priced carrier yields
`RemainingPhysicalEquality`.
The heat-carrier conjunct is retained as the named revival hypothesis even
though the present corpus already inhabits it tautologically at every `q`
(including `nativeActionQuantumInv`); independence of that inhabitation is
exactly the OPEN wall. The scale-identification conjunct is what closes the
atom once a selective independent forcing exists.
This theorem is the named revival condition only. It does not inhabit the
missing independent discharge, does not use a structure-field default, and
is not used as an instance elsewhere in this module. -/
theorem landauerDoor_revival_if_independent_calorimeter_selects_nativeActionQuantumInv
(_cited_open_wall : MissingIndependentCellCalorimeter)
(S : ℝ)
(h_independent_forces_selective_quantum_nativeInv :
∃ heat : PhysicalStepHeat,
HeatIsPostedRecordFlux nativeActionQuantumInv heat)
(h_priced_carrier_scale_eq_that_quantum :
S = nativeActionQuantumInv) :
RemainingPhysicalEquality S := by
-- Retain the OPEN heat hypothesis in the statement; closure uses the
-- priced-scale identification with the already-proved cotangent equality.
rcases h_independent_forces_selective_quantum_nativeInv with ⟨_heat, _hheat⟩
change S = uniqueCotangentCoordinate
exact h_priced_carrier_scale_eq_that_quantum.trans
uniqueCotangentCoordinate_eq_nativeActionQuantumInv.symm
What this page does not claim
The declaration does not prove the missing calorimeter is impossible to build. It does not establish that the native action quantum is the correct conversion factor for Landauer heat. It does not derive Planck's law or any physical equality from the Landauer 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/PairKernelGap2aLandauerCalorimeterDoorResidual.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 constitute an independent calorimeter discharge in the framework's terms?
- Does the framework's native action quantum have any independent physical justification outside the Landauer derivation?
- What other derivations in the framework rely on a similarly free conversion quantum?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM landauerDoor_missingIndependentCellCalorimeter_inhabited · IndisputableMonolith/Foundation/PairKernelGap2aLandauerCalorimeterDoorResidual.lean
theorem landauerDoor_missingIndependentCellCalorimeter_inhabited : Nonempty MissingIndependentCellCalorimeter := ⟨landauerDoor_cites_missingIndependentCellCalorimeter⟩The type named MissingIndependentCellCalorimeter has at least one inhabitant, meaning the framework's own notation records that an independent calorimeter has not been constructed. landauerDoor_missingIndependentCellCalorimeter_inhabited · IndisputableMonolith/Foundation/PairKernelGap2aLandauerCalorimeterDoorResidual.leanTHEOREM landauer_q_free_inhabits_every_conversion_quantum · landauer_q_free_admits_candidateA · landauer_q_free_admits_candidateB · IndisputableMonolith/Foundation/PairKernelGap2aLandauerCalorimeterDoorResidual.lean
/-- The Landauer heat-carrier premise is inhabited at every conversion quantum via the tautological posted-heat selector. -/ theorem landauer_q_free_inhabits_every_conversion_quantum (q : ℝ) : HeatIsPostedRecordFlux q (tautologicalPostedHeat q) := tautological_heat_is_posted_record_flux q/-- Candidate-A conversion quantum `q = 1`: heat-carrier premise inhabited. -/ theorem landauer_q_free_admits_candidateA : HeatIsPostedRecordFlux (1 : ℝ) (tautologicalPostedHeat 1) := landauer_q_free_inhabits_every_conversion_quantum 1/-- Candidate-B conversion quantum `q = nativeActionQuantumInv`: heat-carrier premise inhabited. Free `q` does not select this quantum. -/ theorem landauer_q_free_admits_candidateB : HeatIsPostedRecordFlux nativeActionQuantumInv (tautologicalPostedHeat nativeActionQuantumInv) := landauer_q_free_inhabits_every_conversion_quantum nativeActionQuantumInvThe heat-carrier premise held for every real number q, including q = 1 and q = the native quantum. landauer_q_free_inhabits_every_conversion_quantum · landauer_q_free_admits_candidateA · landauer_q_free_admits_candidateB · IndisputableMonolith/Foundation/PairKernelGap2aLandauerCalorimeterDoorResidual.leanTHEOREM landauerDoor_does_not_force_remainingPhysicalEquality · IndisputableMonolith/Foundation/PairKernelGap2aLandauerCalorimeterDoorResidual.lean
/-- Explicit vacuous-pairing countermodel: the free-`q` heat-carrier premise (existential, not mentioning `S`) is inhabited, yet candidate A rejects the atom. Mirrors `no_route_within_banked_family`. -/ theorem landauerDoor_does_not_force_remainingPhysicalEquality : ¬ (∀ S : ℝ, LandauerFreeConversionQuantumPremise S → RemainingPhysicalEquality S) := by intro hforce exact remainingPhysicalEquality_rejects_candidateA (hforce candidateA_sourceMagnitudeExpr.eval (landauerFreeConversionQuantumPremise_holds _))Pairing the free-q premise with an arbitrary source scale cannot force the target equality. landauerDoor_does_not_force_remainingPhysicalEquality · IndisputableMonolith/Foundation/PairKernelGap2aLandauerCalorimeterDoorResidual.leanTHEOREM landauerDoor_revival_if_independent_calorimeter_selects_nativeActionQuantumInv · IndisputableMonolith/Foundation/PairKernelGap2aLandauerCalorimeterDoorResidual.lean
/-- **OPEN revival door** (not assumed elsewhere). Cites `MissingIndependentCellCalorimeter`. The missing premise is carried as an explicit hypothesis: a future independent calorimeter discharge that forces selective conversion quantum `nativeActionQuantumInv` (not free `q`), together with identification of the priced occurrence source scale with that quantum. Under those hypotheses the priced carrier yields `RemainingPhysicalEquality`. The heat-carrier conjunct is retained as the named revival hypothesis even though the present corpus already inhabits it tautologically at every `q` (including `nativeActionQuantumInv`); independence of that inhabitation is exactly the OPEN wall. The scale-identification conjunct is what closes the atom once a selective independent forcing exists. This theorem is the named revival condition only. It does not inhabit the missing independent discharge, does not use a structure-field default, and is not used as an instance elsewhere in this module. -/ theorem landauerDoor_revival_if_independent_calorimeter_selects_nativeActionQuantumInv (_cited_open_wall : MissingIndependentCellCalorimeter) (S : ℝ) (h_independent_forces_selective_quantum_nativeInv : ∃ heat : PhysicalStepHeat, HeatIsPostedRecordFlux nativeActionQuantumInv heat) (h_priced_carrier_scale_eq_that_quantum : S = nativeActionQuantumInv) : RemainingPhysicalEquality S := by -- Retain the OPEN heat hypothesis in the statement; closure uses the -- priced-scale identification with the already-proved cotangent equality. rcases h_independent_forces_selective_quantum_nativeInv with ⟨_heat, _hheat⟩ change S = uniqueCotangentCoordinate exact h_priced_carrier_scale_eq_that_quantum.trans uniqueCotangentCoordinate_eq_nativeActionQuantumInv.symmIf a future independent calorimeter forced the selective quantum and the priced carrier identified its source scale with that quantum, then the target equality would follow. landauerDoor_revival_if_independent_calorimeter_selects_nativeActionQuantumInv · IndisputableMonolith/Foundation/PairKernelGap2aLandauerCalorimeterDoorResidual.lean