Documentation

CsdLean4.Empirical.QM.Uncertainty

Empirical/QM: Robertson uncertainty relation #

Category: 3-Local (promotion-ready to 2-Framework on demand). QM-generic: no CSD ontology, pure inner-product geometry.

The Robertson uncertainty relation (Robertson 1929): for self-adjoint observables A, B and a state ψ,

Var_ψ(A) · Var_ψ(B) ≥ ¼ |⟨ψ, [A,B] ψ⟩|²,

where [A,B] = AB − BA is the commutator and Var_ψ(A) = ‖(A − ⟨A⟩)ψ‖² is the variance of the centered observable. The bound is the squared Cauchy–Schwarz inequality applied to the centered vectors (A−⟨A⟩)ψ, (B−⟨B⟩)ψ, retaining only the imaginary part of their inner product, which equals ½⟨ψ,[A,B]ψ⟩.

Operators are Module.End ℂ H = H →ₗ[ℂ] H; self-adjointness is LinearMap.IsSymmetric (the inner-product form ⟪T x, y⟫ = ⟪x, T y⟫), which sidesteps the Star synthesis issues noted in LF3. The proof needs no finite-dimensionality.

Source #

Robertson 1929, Phys. Rev. 34, 163; Schrödinger 1930 (the stronger form with the anticommutator term, not formalised here).

Expectation value ⟨A⟩_ψ = ⟪ψ, A ψ⟫.

Equations
Instances For

    Variance Var_ψ(A) = ‖(A − ⟨A⟩) ψ‖², the squared norm of the centered observable applied to ψ (the standard quantum variance for a unit ψ).

    Equations
    Instances For

      For a symmetric operator the expectation value is real.

      Subtracting a real scalar multiple of the identity preserves symmetry.

      theorem CSD.Empirical.Uncertainty.commutator_shift {H : Type u_1} [NormedAddCommGroup H] [InnerProductSpace H] (A B : Module.End H) (a b : ) :
      (A - a 1) * (B - b 1) - (B - b 1) * (A - a 1) = A * B - B * A

      The commutator is invariant under shifting each operator by a scalar multiple of the identity: [A − a, B − b] = [A, B].

      Var_ψ(A) = ‖(A − ⟨A⟩•1) ψ‖² (variance via the centered operator).

      theorem CSD.Empirical.Uncertainty.robertson_core {H : Type u_1} [NormedAddCommGroup H] [InnerProductSpace H] (A B : Module.End H) (hA : LinearMap.IsSymmetric A) (hB : LinearMap.IsSymmetric B) (ψ : H) :
      A ψ ^ 2 * B ψ ^ 2 1 / 4 * inner ψ ((A * B - B * A) ψ) ^ 2

      Core inequality. For symmetric A, B and any ψ, ‖A ψ‖² · ‖B ψ‖² ≥ ¼ ‖⟪ψ, [A,B] ψ⟫‖². The uncertainty relation is this applied to the centered observables.

      Robertson uncertainty relation. For self-adjoint observables A, B and any state ψ, Var_ψ(A) · Var_ψ(B) ≥ ¼ ‖⟪ψ, [A,B] ψ⟫‖².