def
definition
ledgerPhase
show as:
view math explainer →
open explainer
Generate a durable explainer page for this declaration.
open lean source
IndisputableMonolith.Foundation.QuantumLedger on GitHub at line 193.
browse module
All declarations in this module, on Recognition.
explainer page
depends on
used by
formal source
190 EightTick.phaseExp e.phase
191
192/-- The total phase of a ledger (product of entry phases). -/
193noncomputable def ledgerPhase (L : Ledger) : ℂ :=
194 (L.entries.map entryPhase).prod
195
196/-- An empty ledger has phase 1. -/
197theorem empty_ledger_phase : ledgerPhase emptyLedger = 1 := by
198 simp [ledgerPhase, emptyLedger]
199
200/-- **8-TICK INTERFERENCE**: When summing over all 8 phase configurations
201 with equal amplitudes, the sum is zero.
202
203 This is the quantum version of vacuum fluctuation cancellation. -/
204theorem eight_tick_interference :
205 (∑ k : Fin 8, EightTick.phaseExp k) = 0 :=
206 EightTick.sum_8_phases_eq_zero
207
208/-! ## Summary Theorem -/
209
210/-- **QUANTUM LEDGER FUNDAMENTALS**
211
212 The quantum ledger formalization establishes:
213 1. Ledger entries have well-defined J-cost
214 2. Ledger balance is conserved under updates
215 3. Quantum states are superpositions over ledgers
216 4. Born rule connects to J-cost minimization
217 5. 8-tick phases enable interference -/
218theorem quantum_ledger_fundamentals :
219 -- Entry costs are non-negative
220 (∀ e : LedgerEntry, 0 ≤ e.cost) ∧
221 -- Empty ledger has zero balance
222 emptyLedger.balance = 0 ∧
223 -- Updates preserve balance