Encyclopedia Foundation Foundation Pair Kernel Posting Boundary Record Posting Record Is Moving Cut Reco
ARTICLE 3 claims 3 theorems
Foundation Pair Kernel Posting Boundary Record Posting Record Is Moving Cut Reco
A machine-checked theorem shows that a single bit cannot carry the identity of a posting event, because recovering the posting's boundary record forces that bit to a constant.
The moving-cut record
The declaration postingRecordIsMovingCutRecord_uninhabited_on_bit_carrier proves, in the framework's machine-checked library, that no posting record can be represented as a moving cut carried by a single bit. In plain language: if you try to encode the identity of a posting event in one bit, the bit must be the same for every event, so it cannot distinguish one posting from another. The theorem states that the proposition PostingRecordIsMovingCutRecord, which asserts the existence of such a bit-based encoding, is uninhabited: it has no instances.
The proof works by examining what it means for a bit to recover a posting boundary record. A posting boundary record is the credit leg of a posting read as flux across the boundary of the debit region. The framework proves that any bit assignment that recovers this record must be constant: it always returns the value 1. Since a moving cut requires a non-constant bit, the two requirements conflict. The theorem recovers_implies_constant establishes the constancy, and the main theorem applies it to rule out the moving-cut encoding.
This result is a boundary on what a bit can do, not a claim about the physical world. It does not say that posting records cannot be represented in other ways, nor that moving cuts do not exist in general. It only says that a single bit, as defined in this framework, cannot serve as the carrier of a moving-cut occurrence identity. The theorem is proved with no sorry and no new axioms, meaning it relies only on the framework's existing definitions and theorems.
The practical consequence is that occurrence identity, the property that distinguishes one posting event from another, requires more structure than a single bit can provide. This is a formal result about the framework's model of postings, not a statement about information theory or physics. It clarifies what the framework's definitions can and cannot express, and it leaves open the question of what minimal structure would suffice for occurrence identity.
THEOREM postingRecordIsMovingCutRecord_uninhabited_on_bit_carrier · IndisputableMonolith/Foundation/PairKernelPostingBoundaryRecord.lean
theorem postingRecordIsMovingCutRecord_uninhabited_on_bit_carrier :
¬ PostingRecordIsMovingCutRecord := by
rintro ⟨attach, hrec, hnonconst⟩
exact hnonconst (recovers_implies_constant attach hrec)
THEOREM recovers_implies_constant · IndisputableMonolith/Foundation/PairKernelPostingBoundaryRecord.lean
theorem recovers_implies_constant
(attach : CutBitOfOrientedPosting)
(hrec : RecoversPostingBoundaryRecord attach) :
IsConstantCutBit attach :=
⟨(1 : ZMod 2), fun _ _ _ => recovers_forces_posted_one attach hrec _ _ _⟩
THEOREM postingRecordIsMovingCutRecord_uninhabited_on_bit_carrier · IndisputableMonolith/Foundation/PairKernelPostingBoundaryRecord.lean
theorem postingRecordIsMovingCutRecord_uninhabited_on_bit_carrier :
¬ PostingRecordIsMovingCutRecord := by
rintro ⟨attach, hrec, hnonconst⟩
exact hnonconst (recovers_implies_constant attach hrec)
What this page does not claim
The theorem does not claim that posting records cannot be represented in any form, only that a single bit cannot serve as the carrier. The theorem does not claim that moving cuts do not exist in general, only that they cannot be encoded by a single bit. The theorem does not make any statement about physical information theory or the nature of bits in the physical world.
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/PairKernelPostingBoundaryRecord.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 minimal structure beyond a single bit would suffice to carry occurrence identity for a posting event?
- Does the framework's model of postings extend to multi-bit carriers without forcing constancy?
- How does the moving-cut concept relate to the framework's eight-tick recognition cycle?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM postingRecordIsMovingCutRecord_uninhabited_on_bit_carrier · IndisputableMonolith/Foundation/PairKernelPostingBoundaryRecord.lean
theorem postingRecordIsMovingCutRecord_uninhabited_on_bit_carrier : ¬ PostingRecordIsMovingCutRecord := by rintro ⟨attach, hrec, hnonconst⟩ exact hnonconst (recovers_implies_constant attach hrec)The theorem postingRecordIsMovingCutRecord_uninhabited_on_bit_carrier proves that no posting record can be represented as a moving cut carried by a single bit. postingRecordIsMovingCutRecord_uninhabited_on_bit_carrier · IndisputableMonolith/Foundation/PairKernelPostingBoundaryRecord.leanTHEOREM recovers_implies_constant · IndisputableMonolith/Foundation/PairKernelPostingBoundaryRecord.lean
theorem recovers_implies_constant (attach : CutBitOfOrientedPosting) (hrec : RecoversPostingBoundaryRecord attach) : IsConstantCutBit attach := ⟨(1 : ZMod 2), fun _ _ _ => recovers_forces_posted_one attach hrec _ _ _⟩The proof works by showing that any bit assignment that recovers a posting boundary record must be constant. recovers_implies_constant · IndisputableMonolith/Foundation/PairKernelPostingBoundaryRecord.leanTHEOREM postingRecordIsMovingCutRecord_uninhabited_on_bit_carrier · IndisputableMonolith/Foundation/PairKernelPostingBoundaryRecord.lean
theorem postingRecordIsMovingCutRecord_uninhabited_on_bit_carrier : ¬ PostingRecordIsMovingCutRecord := by rintro ⟨attach, hrec, hnonconst⟩ exact hnonconst (recovers_implies_constant attach hrec)The theorem is proved with no sorry and no new axioms. postingRecordIsMovingCutRecord_uninhabited_on_bit_carrier · IndisputableMonolith/Foundation/PairKernelPostingBoundaryRecord.lean