Encyclopedia Holography Holography Landauer Bridge Walls

ARTICLE 4 claims 3 theorems 1 model

Holography Landauer Bridge Walls

A machine-checked ledger shows exactly where the physics of heat and the physics of information remain unconnected.

The bridge walls

Landauer's principle says that erasing a bit of information must dissipate a minimum amount of heat. In the Recognition Science framework, this principle appears as a bridge between two kinds of records: a ledger, a discrete record of events, and a physical system that carries heat. The bridge is not assumed. A module in the framework's machine-checked library of formal theorems, called LandauerBridgeWalls, builds two walls that mark exactly where the connection is missing.

The first wall concerns heat. The framework defines a quantity called posted flux, the amount of change recorded on the ledger when a step occurs. One can define physical heat to be exactly that posted flux, scaled by a constant. This is a definitional choice, a MODEL, not a discovery. The module proves that this choice satisfies the formal requirement by definition, but it also proves that a zero heat value fails the requirement as soon as any step posts a nonzero flux. The wall stands because no independent calorimetric observable, a measurement of heat from a physical device, is identified with the ledger's flux. The theorem shows the tautological choice works, and the decoy fails, but the physical discharge remains an OPEN target.

The second wall concerns logical erasure. The framework's formal statement of erasure is exactly an accounting identity: the number of erased bits equals the net change in posted weight on the ledger. The module proves this equivalence, and it proves that an idle path erases zero bits while a claim of one-bit erasure on that idle path is false. This shows the premise can discriminate between paths. Yet no Lean object names a logical-bit reset protocol that forces the equality. Endpoint weight drop alone is refused as logical entropy erasure. The wall marks the absence of a derived protocol.

Together, the two walls form a joint certificate. The module proves the hygiene of its definitions and the failure of its decoys, but it does not prove the physical bridge. What the reader can now see is a precise map of the gap: the framework has a ledger and a heat carrier, and it has an accounting identity for erasure, but the physical discharge of either bridge is not derived. The walls are honest markers of what remains OPEN, not claims of completion.

MODEL tautologicalPostedHeat · IndisputableMonolith/Holography/LandauerBridgeWalls.lean
/-- MODEL hygiene inhabitant: define physical heat to be scaled posted flux.
This satisfies `HeatIsPostedRecordFlux` definitionally. It does not identify
an independent calorimeter with the ledger. -/
def tautologicalPostedHeat (q : ℝ) : PhysicalStepHeat :=
  fun c c' => q * (stepHeatCell c c' : ℝ)
THEOREM tautological_heat_is_posted_record_flux · zero_heat_fails_unit_carrier · IndisputableMonolith/Holography/LandauerBridgeWalls.lean
tautological_heat_is_posted_record_flux · IndisputableMonolith/Holography/LandauerBridgeWalls.lean:44
theorem tautological_heat_is_posted_record_flux (q : ℝ) :
    HeatIsPostedRecordFlux q (tautologicalPostedHeat q) := by
  intro c c'
  rfl
theorem zero_heat_fails_unit_carrier :
    ¬ HeatIsPostedRecordFlux 1 zeroHeat := by
  intro h
  have hstep := h cell0 postingStepTarget
  have hnz : (stepHeatCell cell0 postingStepTarget : ℝ) ≠ 0 := by
    exact_mod_cast postingStepTarget_posts_nonzero
  simp [zeroHeat] at hstep
  exact hnz hstep.symm
THEOREM logical_erasure_posts_debit_iff · IndisputableMonolith/Holography/LandauerBridgeWalls.lean
logical_erasure_posts_debit_iff · IndisputableMonolith/Holography/LandauerBridgeWalls.lean:103
/-- The logical-erasure premise is exactly endpoint posted-weight accounting.
There is no additional logical-bit structure in the statement. -/
theorem logical_erasure_posts_debit_iff
    (erasedBits : ℕ) (c : CellCfg) (p : List CellCfg) :
    LogicalErasurePostsDebit erasedBits c p ↔
      netErasedBits c p = (erasedBits : ℤ) :=
  Iff.rfl
THEOREM zero_bits_erasure_on_idle · one_bit_erasure_fails_on_idle · IndisputableMonolith/Holography/LandauerBridgeWalls.lean
/-- Quiet path: staying at the zero cell erases zero posted bits. -/
theorem zero_bits_erasure_on_idle :
    LogicalErasurePostsDebit 0 cell0 [] := by
  simp [LogicalErasurePostsDebit, netErasedBits]
one_bit_erasure_fails_on_idle · IndisputableMonolith/Holography/LandauerBridgeWalls.lean:116
/-- Claiming a one-bit logical erasure on the idle path is false. This shows
the premise discriminates paths, but still does not supply a reset protocol. -/
theorem one_bit_erasure_fails_on_idle :
    ¬ LogicalErasurePostsDebit 1 cell0 [] := by
  simp [LogicalErasurePostsDebit, netErasedBits]

What this page does not claim

No physical discharge of the heat carrier premise is proved. No logical-bit reset protocol is derived or named. The module does not prove Landauer's principle as a physical law.

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/LandauerBridgeWalls.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:

MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND