Encyclopedia Foundation Foundation Quantum Ledger Quantum Ledger Fundamentals
ARTICLE 4 claims 4 theorems
Foundation Quantum Ledger Quantum Ledger Fundamentals
A machine-checked library proves four basic facts about a discrete record of events, then uses them to frame quantum states.
The ledger's quantum turn
A ledger is a discrete record of events. In Recognition Science, each event carries a cost, a positive ratio, and a phase. The declaration quantum_ledger_fundamentals bundles four proved facts about this structure: entry costs are never negative, an empty ledger has zero balance, updates preserve the balance, and the eight possible phases sum to zero. Each fact is a theorem in the framework's machine-checked library of formal theorems, meaning the proof is verified by a computer kernel.
The first fact, non-negative costs, follows from the definition of cost as a function of a positive ratio. The second, zero balance for an empty ledger, is immediate from the definition. The third is the conservation law: when an update adds two entries whose ratios are reciprocals, the log-ratios cancel, so the total balance, the sum of log-ratios, stays unchanged. The fourth is an interference condition: the eight phase factors, one for each tick of the recognition cycle, sum to zero. This is the same cancellation that makes light and matter waves interfere.
These four facts are the foundation for a larger claim: a quantum state is a superposition over ledger configurations. The library defines a quantum state as a list of ledger configurations each with a complex amplitude, normalized so the sum of squared magnitudes is one. Probability of a configuration is the squared magnitude of its amplitude. The expected cost of a state is the weighted average of configuration costs, with probabilities as weights. The Born rule, the standard rule that probability equals squared amplitude, is not postulated here; it is a definitional consequence of how probability is defined from the amplitudes.
What the declaration does not claim is as important as what it proves. It does not claim that the Born rule is derived from cost minimization; that is a separate theorem in the library, born_rule_jcost_connection, which states the expected cost is a weighted average, not that probabilities minimize it. It does not claim that measurement physically collapses a state to a minimum-cost configuration; that remains a target. It does not claim that the eight-tick cycle is the only possible phase structure; the interference sum is proved for this specific cycle. The declaration is a precise, narrow bundle of algebraic facts, not a complete physical theory.
What the reader can now see is the shape of the framework's quantum turn: a discrete ledger, a conservation law, and a phase cancellation, all proved, all machine-checked. The classical picture of a ledger as a bookkeeping device gains a quantum resonance, but the physics of measurement and the derivation of the Born rule from cost remain open questions, not settled theorems.
THEOREM entry_cost_nonneg · IndisputableMonolith/Foundation/QuantumLedger.lean
/-- The J-cost of an entry is non-negative. -/
theorem entry_cost_nonneg (e : LedgerEntry) : 0 ≤ e.cost := by
rw [e.cost_eq]
exact Jcost_nonneg e.ratio_pos
THEOREM empty_ledger_balance · IndisputableMonolith/Foundation/QuantumLedger.lean
theorem empty_ledger_balance : emptyLedger.balance = 0 := rfl
THEOREM ledger_balance_conserved · IndisputableMonolith/Foundation/QuantumLedger.lean
/-- **CONSERVATION THEOREM**: Applying an update preserves balance. -/
theorem ledger_balance_conserved (L : Ledger) (u : LedgerUpdate) :
(applyUpdate L u).balance = L.balance := rfl
THEOREM eight_tick_interference · IndisputableMonolith/Foundation/QuantumLedger.lean
/-- **8-TICK INTERFERENCE**: When summing over all 8 phase configurations
with equal amplitudes, the sum is zero.
This is the quantum version of vacuum fluctuation cancellation. -/
theorem eight_tick_interference :
(∑ k : Fin 8, EightTick.phaseExp k) = 0 :=
EightTick.sum_8_phases_eq_zero
What this page does not claim
The Born rule is derived from cost minimization. Measurement collapses a state to a minimum-cost configuration. The eight-tick cycle is the only possible phase structure.
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/QuantumLedger.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 process, if any, selects the minimum-cost configuration during measurement?
- How does the eight-tick phase cycle relate to the continuous phases of ordinary quantum mechanics?
- Can the Born rule be derived from cost minimization, or is it only a definitional consequence?
- What ledger configurations correspond to the states of a real physical system?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM entry_cost_nonneg · IndisputableMonolith/Foundation/QuantumLedger.lean
/-- The J-cost of an entry is non-negative. -/ theorem entry_cost_nonneg (e : LedgerEntry) : 0 ≤ e.cost := by rw [e.cost_eq] exact Jcost_nonneg e.ratio_posEntry costs are never negative. entry_cost_nonneg · IndisputableMonolith/Foundation/QuantumLedger.leanTHEOREM empty_ledger_balance · IndisputableMonolith/Foundation/QuantumLedger.lean
theorem empty_ledger_balance : emptyLedger.balance = 0 := rflAn empty ledger has zero balance. empty_ledger_balance · IndisputableMonolith/Foundation/QuantumLedger.leanTHEOREM ledger_balance_conserved · IndisputableMonolith/Foundation/QuantumLedger.lean
/-- **CONSERVATION THEOREM**: Applying an update preserves balance. -/ theorem ledger_balance_conserved (L : Ledger) (u : LedgerUpdate) : (applyUpdate L u).balance = L.balance := rflUpdates preserve the balance. ledger_balance_conserved · IndisputableMonolith/Foundation/QuantumLedger.leanTHEOREM eight_tick_interference · IndisputableMonolith/Foundation/QuantumLedger.lean
/-- **8-TICK INTERFERENCE**: When summing over all 8 phase configurations with equal amplitudes, the sum is zero. This is the quantum version of vacuum fluctuation cancellation. -/ theorem eight_tick_interference : (∑ k : Fin 8, EightTick.phaseExp k) = 0 := EightTick.sum_8_phases_eq_zeroThe eight possible phases sum to zero. eight_tick_interference · IndisputableMonolith/Foundation/QuantumLedger.lean