theorem
proved
superposition
show as:
view math explainer →
open explainer
Read the cached plain-language explainer.
open lean source
IndisputableMonolith.Physics.SchroedingerEquationFromRS on GitHub at line 36.
browse module
All declarations in this module, on Recognition.
explainer page
depends on
used by
-
lambda_PBM_approx -
ledger_cost_additive -
forcing_chain_complete -
coherence_defect_of_combined -
SuperpositionJustification -
ledger_universal -
predictions -
quantumSpeedups -
universalGateSet -
no_cloning_theorem_remark -
no_universal_cloning_witness_real -
schroedingerCert -
measurementBasisCount -
single_particle_interference -
which_path_destroys_interference -
cost_probability_relation -
LedgerBranch -
QuantumState -
macroscopic_decoherence_instant -
neutral_windows_from_jcost
formal source
33theorem stationary_state : Jcost 1 = 0 := Jcost_unit0
34
35/-- Superposition: J > 0. -/
36theorem superposition {r : ℝ} (hr : 0 < r) (hne : r ≠ 1) :
37 0 < Jcost r := Jcost_pos_of_ne_one r hr hne
38
39structure SchroedingerCert where
40 five_systems : Fintype.card QMSystem = 5
41 stationary : Jcost 1 = 0
42 superposition_cost : ∀ {r : ℝ}, 0 < r → r ≠ 1 → 0 < Jcost r
43
44def schroedingerCert : SchroedingerCert where
45 five_systems := qmSystemCount
46 stationary := stationary_state
47 superposition_cost := superposition
48
49end IndisputableMonolith.Physics.SchroedingerEquationFromRS