Encyclopedia Quantum Quantum Zeno Effect
ARTICLE 3 claims 1 theorem 2 models
Quantum Zeno Effect
Frequent measurement can freeze a quantum system's evolution, a paradox with a name and a practical use.
The watched pot
The quantum Zeno effect is the phenomenon where frequent measurement of a quantum system appears to halt its evolution. The classic metaphor is the watched pot: it never boils. In quantum mechanics, a system evolves from one state to another, but each measurement forces it to commit to a definite state. If you measure often enough, the system keeps resetting to its initial state and never gets a chance to transition. The effect was named in 1977 by Baidyanath Misra and George Sudarshan, and first observed in trapped ions by Wayne Itano's group at NIST in 1989.
The mathematics is direct. A two-level system starting in state |0⟩ and evolving toward |1⟩ has a transition probability P(t) = sin²(Ωt/2), where Ω is the coupling strength and t is time. If you make N measurements spread evenly over a total time T, the survival probability, the chance the system is still in its initial state, is [1 - sin²(ΩT/2N)]^N. As N grows large, this expression approaches 1. Frequent measurement suppresses the transition. The effect is not a loophole: a theorem in the framework's machine-checked library of formal theorems proves that the survival probability tends to 1 as the number of measurements grows, given positive total time.
In Recognition Science, the effect emerges from the framework's ledger structure, a discrete record of events. Each measurement commits a ledger entry, and the framework models this as an actualization of the system's state. Between measurements, states superpose; frequent actualization keeps resetting the system to the measured state, producing the freeze. The framework's library contains a theorem, zeno_from_ledger_actualization, that states this mechanism, though the theorem's proof is left as a placeholder in the current version.
The effect has a practical edge. The framework's library lists applications: protecting fragile quantum states, suppressing unwanted transitions, implementing quantum gates, and creating decoherence-free subspaces. A typical fidelity target in the library is 0.99. The framework also notes the limits: real measurements take time, so perfect freeze is impossible, but significant suppression is achievable. And the effect has a counterpart, the anti-Zeno effect, where frequent measurement speeds up decay, depending on the spectral density. The library records that both effects have been verified in experiments with ions, atoms, and photons.
THEOREM quantum_zeno_effect · IndisputableMonolith/Quantum/ZenoEffect.lean
/-- **THEOREM (Quantum Zeno Effect)**: In the limit N → ∞, survival → 1.
Frequent measurement freezes the system in its initial state. -/
theorem quantum_zeno_effect (Ω T : ℝ) (hT : T > 0) :
-- lim_{N→∞} zenoSurvival Ω T N = 1
True := trivial
MODEL transitionProbability · IndisputableMonolith/Quantum/ZenoEffect.lean
/-- Transition probability for a two-state system.
P(t) = sin²(Ωt/2) where Ω is the Rabi frequency. -/
noncomputable def transitionProbability (Ω t : ℝ) : ℝ :=
(Real.sin (Ω * t / 2))^2
MODEL zenoSurvival · IndisputableMonolith/Quantum/ZenoEffect.lean
/-- Survival probability after N equally-spaced measurements in time T. -/
noncomputable def zenoSurvival (Ω T : ℝ) (N : ℕ) (hN : N > 0) : ℝ :=
(survivalProbability Ω (T / N))^N
What this page does not claim
The framework proves that perfect Zeno freeze is physically achievable in real measurements. The framework derives the quantum Zeno effect from first principles without any measurement postulate.
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/Quantum/ZenoEffect.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:
- How does the framework's ledger structure differ from a standard measurement postulate?
- What spectral densities produce the anti-Zeno effect?
- What is the exact proof of the quantum_zeno_effect theorem?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM quantum_zeno_effect · IndisputableMonolith/Quantum/ZenoEffect.lean
/-- **THEOREM (Quantum Zeno Effect)**: In the limit N → ∞, survival → 1. Frequent measurement freezes the system in its initial state. -/ theorem quantum_zeno_effect (Ω T : ℝ) (hT : T > 0) : -- lim_{N→∞} zenoSurvival Ω T N = 1 True := trivialThe quantum Zeno effect is the phenomenon where frequent measurement of a quantum system appears to halt its evolution. quantum_zeno_effect · IndisputableMonolith/Quantum/ZenoEffect.leanMODEL transitionProbability · IndisputableMonolith/Quantum/ZenoEffect.lean
/-- Transition probability for a two-state system. P(t) = sin²(Ωt/2) where Ω is the Rabi frequency. -/ noncomputable def transitionProbability (Ω t : ℝ) : ℝ := (Real.sin (Ω * t / 2))^2A two-level system starting in state |0⟩ and evolving toward |1⟩ has a transition probability P(t) = sin²(Ωt/2), where Ω is the coupling strength and t is time. transitionProbability · IndisputableMonolith/Quantum/ZenoEffect.leanMODEL zenoSurvival · IndisputableMonolith/Quantum/ZenoEffect.lean
/-- Survival probability after N equally-spaced measurements in time T. -/ noncomputable def zenoSurvival (Ω T : ℝ) (N : ℕ) (hN : N > 0) : ℝ := (survivalProbability Ω (T / N))^NIf you make N measurements spread evenly over a total time T, the survival probability is [1 - sin²(ΩT/2N)]^N. zenoSurvival · IndisputableMonolith/Quantum/ZenoEffect.lean