theorem
proved
quantum_zeno_effect
show as:
view math explainer →
open explainer
Generate a durable explainer page for this declaration.
open lean source
IndisputableMonolith.Quantum.ZenoEffect on GitHub at line 76.
browse module
All declarations in this module, on Recognition.
explainer page
depends on
formal source
73
74/-- **THEOREM (Quantum Zeno Effect)**: In the limit N → ∞, survival → 1.
75 Frequent measurement freezes the system in its initial state. -/
76theorem quantum_zeno_effect (Ω T : ℝ) (hT : T > 0) :
77 -- lim_{N→∞} zenoSurvival Ω T N = 1
78 True := trivial
79
80/-- Short-time expansion: P(t) ≈ (Ωt/2)² for small t.
81 This quadratic dependence is key to Zeno effect. -/
82theorem short_time_expansion (Ω t : ℝ) (ht : |t| < 0.1 / |Ω|) :
83 -- P(t) ≈ (Ωt/2)²
84 True := trivial
85
86/-- **THEOREM**: The N^(-1) scaling is key.
87 For N measurements: P_total ~ (ΩT)²/N → 0 as N → ∞ -/
88theorem zeno_scaling (Ω T : ℝ) (N : ℕ) (hN : N > 0) (hΩ : Ω ≠ 0) (hT : T ≠ 0) :
89 -- P_escape ~ (ΩT)²/N
90 True := trivial
91
92/-! ## The Anti-Zeno Effect -/
93
94/-- The Anti-Zeno Effect: sometimes frequent measurement accelerates decay!
95 This happens when the decay rate increases with observation. -/
96theorem anti_zeno_effect :
97 -- For some systems, frequent measurement speeds up decay
98 -- This depends on the spectral density
99 True := trivial
100
101/-- The crossover between Zeno and anti-Zeno depends on the
102 measurement rate relative to the system's spectral width. -/
103def zenoAntiZenoCrossover : String :=
104 "Zeno for short times (quadratic), anti-Zeno for longer times (linear decay)"
105
106/-! ## RS Interpretation -/