Encyclopedia Holography Holography Landauer Calorimeter Forcing Logical Protocol Refuses Idle One Bit
ARTICLE 2 claims 2 theorems
Holography Landauer Calorimeter Forcing Logical Protocol Refuses Idle One Bit
A machine-checked proof shows a protocol that erases nothing cannot claim to have erased one bit, while carefully leaving the harder physics open.
The idle bit refusal
The declaration logical_protocol_refuses_idle_one_bit is a theorem in the framework's machine-checked library of formal theorems. It concerns a logical bit reset protocol, a defined structure that records how many bits a process claims to erase, where the process starts, and the path of cell configurations it follows. The theorem states a simple constraint: if the protocol starts at the designated initial cell and follows an empty path, meaning it performs no steps at all, then it cannot claim to have erased exactly one bit. The proof is direct: the protocol's own definition of what it means to post an erasure debit, when evaluated on an empty path, forces the erased bit count to be zero, contradicting the assumption that it is one.
The context matters. This theorem sits inside a larger investigation of whether a calorimeter, a device that measures heat, can be forced into existence from more basic assumptions. The framework's library already contains a certificate showing that a certain heat-posting rule is tautological, meaning it holds by definition rather than by deeper physical reasoning. The new theorem is part of a stub, a deliberately incomplete sketch, that tests whether a logical protocol can refuse to claim an idle erasure. The proof succeeds at that narrow logical task, but the surrounding module explicitly marks a larger gap: a named residual type, MissingIndependentCellCalorimeter, records that no independent calorimeter has been derived. The stub is not a discharge of that gap.
What the theorem does not claim is as important as what it proves. It does not establish that any physical erasure costs energy, which is the Landauer principle in conventional physics. It does not show that a calorimeter must exist. It does not even show that the logical protocol structure itself is physically realized. The theorem only shows that within the defined structure, with an empty path and a fixed start, the erased bit count cannot be one. The proof is axiom-clean, with no new axioms and no unsolved proof obligations, but it is a statement about a formal structure, not about hardware.
The practical consequence is a sharpened boundary. The framework can prove a negative consistency fact about its own protocol definitions, which is useful hygiene, but the positive physical claim, that erasing a bit necessarily generates heat, remains open. The theorem helps by ruling out one trivial way a protocol might claim an erasure without doing any work, but it does not replace the missing calorimeter argument. A reader should take this as a precise logical checkpoint, not as a physical law.
THEOREM logical_protocol_refuses_idle_one_bit · IndisputableMonolith/Holography/LandauerCalorimeterForcing.lean
/-- Idle path refusal: a protocol that starts at `cell0` with empty path cannot
claim a one-bit logical erasure. -/
theorem logical_protocol_refuses_idle_one_bit
(P : LogicalBitResetProtocol)
(hstart : P.start = cell0) (hpath : P.path = []) :
P.erasedBits ≠ 1 := by
intro hbits
have hdebit := P.forces_debit
simp [LogicalErasurePostsDebit, netErasedBits, hstart, hpath, hbits] at hdebit
THEOREM MissingIndependentCellCalorimeter · IndisputableMonolith/Holography/LandauerCalorimeterForcing.lean
/-- Named gap type for an independent cell calorimeter. A discharge would
supply a `PhysicalStepHeat` equal to scaled `stepHeatCell` for a reason that
does not package the six-channel posting rule into the hypothesis list.
Inhabiting this structure does not close the residual. -/
structure MissingIndependentCellCalorimeter where
named_gap : Unit := ⟨⟩
What this page does not claim
The theorem does not prove that physical erasure costs energy. The theorem does not show that a calorimeter must exist. The theorem does not claim the logical protocol structure is physically realized.
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/Holography/LandauerCalorimeterForcing.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 assumptions would be needed to turn the logical protocol structure into a real erasure process?
- Can an independent calorimeter be derived from the framework's axioms, or does it remain a permanent gap?
- How does the missing calorimeter gap relate to the Landauer principle in conventional thermodynamics?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM logical_protocol_refuses_idle_one_bit · IndisputableMonolith/Holography/LandauerCalorimeterForcing.lean
/-- Idle path refusal: a protocol that starts at `cell0` with empty path cannot claim a one-bit logical erasure. -/ theorem logical_protocol_refuses_idle_one_bit (P : LogicalBitResetProtocol) (hstart : P.start = cell0) (hpath : P.path = []) : P.erasedBits ≠ 1 := by intro hbits have hdebit := P.forces_debit simp [LogicalErasurePostsDebit, netErasedBits, hstart, hpath, hbits] at hdebitif the protocol starts at the designated initial cell and follows an empty path, meaning it performs no steps at all, then it cannot claim to have erased exactly one bit logical_protocol_refuses_idle_one_bit · IndisputableMonolith/Holography/LandauerCalorimeterForcing.leanTHEOREM MissingIndependentCellCalorimeter · IndisputableMonolith/Holography/LandauerCalorimeterForcing.lean
/-- Named gap type for an independent cell calorimeter. A discharge would supply a `PhysicalStepHeat` equal to scaled `stepHeatCell` for a reason that does not package the six-channel posting rule into the hypothesis list. Inhabiting this structure does not close the residual. -/ structure MissingIndependentCellCalorimeter where named_gap : Unit := ⟨⟩the surrounding module explicitly marks a larger gap: a named residual type, MissingIndependentCellCalorimeter, records that no independent calorimeter has been derived MissingIndependentCellCalorimeter · IndisputableMonolith/Holography/LandauerCalorimeterForcing.lean