pith. machine review for the scientific record. sign in
def definition def or abbrev high

transitionProbability

show as:
view Lean formalization →

Transition probability for a two-state system is defined as the square of the sine of half the Rabi frequency times time. Physicists modeling quantum measurement effects from ledger actualization cite this when building the Zeno freeze from repeated actualizations. The definition is a direct one-line encoding of the standard Rabi formula with no additional hypotheses.

claim$P(t) = [sin(Ω t / 2)]^2$, where Ω is the Rabi frequency and t is elapsed time.

background

Module Quantum.ZenoEffect derives the quantum Zeno effect from Recognition Science ledger actualization: each measurement commits a ledger entry, frequent actualizations reset the state, and evolution between measurements remains probabilistic. The supplied definition supplies the base transition probability for a driven two-level system. Upstream probability definitions from QuantumLedger (Born-rule norm squared), SMatrixUnitarity (|S_ij|^2), and BoltzmannDistribution supply the shared probabilistic interpretation used here.

proof idea

One-line definition that directly sets the value to the squared sine of half the product of Rabi frequency and time.

why it matters in Recognition Science

This definition is the base probability fed by survivalProbability, transition_at_zero, and transition_bounded inside the same module. It fills the QF-010 target of deriving the Zeno effect from ledger actualization, connecting standard Rabi dynamics to the Recognition Science forcing chain through probabilistic actualization. It leaves open how RS-native constants (phi-ladder, phi^-5 for hbar) fix the value of Ω.

scope and limits

Lean usage

noncomputable def survivalProbability (Ω t : ℝ) : ℝ := 1 - transitionProbability Ω t

formal statement (Lean)

  49noncomputable def transitionProbability (Ω t : ℝ) : ℝ :=

proof body

Definition body.

  50  (Real.sin (Ω * t / 2))^2
  51
  52/-- **THEOREM**: Transition probability starts at 0. -/

used by (3)

From the project-wide theorem graph. These declarations reference this one in their body.

depends on (4)

Lean names referenced from this declaration's body.