pith. machine review for the scientific record. sign in
def

transitionProbability

definition
show as:
view math explainer →
module
IndisputableMonolith.Quantum.ZenoEffect
domain
Quantum
line
49 · github
papers citing
none yet

open explainer

Generate a durable explainer page for this declaration.

open lean source

IndisputableMonolith.Quantum.ZenoEffect on GitHub at line 49.

browse module

All declarations in this module, on Recognition.

explainer page

Tracked in the explainer inventory; generation is lazy so crawlers do not trigger LLM jobs.

open explainer

depends on

used by

formal source

  46
  47/-- Transition probability for a two-state system.
  48    P(t) = sin²(Ωt/2) where Ω is the Rabi frequency. -/
  49noncomputable def transitionProbability (Ω t : ℝ) : ℝ :=
  50  (Real.sin (Ω * t / 2))^2
  51
  52/-- **THEOREM**: Transition probability starts at 0. -/
  53theorem transition_at_zero (Ω : ℝ) : transitionProbability Ω 0 = 0 := by
  54  unfold transitionProbability
  55  simp [Real.sin_zero]
  56
  57/-- **THEOREM**: Transition probability is bounded by 1. -/
  58theorem transition_bounded (Ω t : ℝ) : transitionProbability Ω t ≤ 1 := by
  59  unfold transitionProbability
  60  have h := Real.sin_sq_le_one (Ω * t / 2)
  61  exact h
  62
  63/-! ## The Zeno Effect -/
  64
  65/-- Survival probability after one measurement.
  66    If initially in |0⟩, measure and find |0⟩ with probability 1 - P(t). -/
  67noncomputable def survivalProbability (Ω t : ℝ) : ℝ :=
  68  1 - transitionProbability Ω t
  69
  70/-- Survival probability after N equally-spaced measurements in time T. -/
  71noncomputable def zenoSurvival (Ω T : ℝ) (N : ℕ) (hN : N > 0) : ℝ :=
  72  (survivalProbability Ω (T / N))^N
  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