Physlib Documentation

Physlib.QuantumMechanics.DDimensions.Operators.StateObservables.ExpectedValue

Expectation values and centered vectors #

For a partial linear map T on a complex inner product space and ψ ∈ T.domain, this file defines the expectation value and the centered vector Tψ - ⟨T⟩_ψ ψ.

Main definitions #

Main statements #

References #

Expectation value re ⟪ψ, Tψ⟫_ℂ for ψ ∈ T.domain.

For symmetric T, this agrees with ⟪ψ, Tψ⟫_ℂ after coercion from ; see expectedValue_eq_inner.

Equations
Instances For
    theorem LinearPMap.expectedValue_eq_re_inner {H : Type u_1} [NormedAddCommGroup H] [InnerProductSpace H] (T : H →ₗ.[] H) (ψ : T.domain) :
    T.expectedValue ψ = (inner (↑ψ) (T ψ)).re

    The expectation value, unfolded as a real part.

    theorem LinearPMap.expectedValue_eq_inner {H : Type u_1} [NormedAddCommGroup H] [InnerProductSpace H] (T : H →ₗ.[] H) (hT : T.IsSymmetric) (ψ : T.domain) :
    inner (↑ψ) (T ψ) = (T.expectedValue ψ)

    If T is symmetric, ⟪ψ, Tψ⟫_ℂ is the expectation value, coerced to .

    theorem LinearPMap.inner_eq_expectedValue {H : Type u_1} [NormedAddCommGroup H] [InnerProductSpace H] (T : H →ₗ.[] H) (hT : T.IsSymmetric) (ψ : T.domain) :
    (T.expectedValue ψ) = inner (↑ψ) (T ψ)

    Reverse orientation of LinearPMap.expectedValue_eq_inner.

    def LinearPMap.centered {H : Type u_1} [NormedAddCommGroup H] [InnerProductSpace H] (T : H →ₗ.[] H) (ψ : T.domain) :
    H

    The centered vector Tψ - ⟨T⟩_ψ ψ.

    Equations
    Instances For
      theorem LinearPMap.centered_eq {H : Type u_1} [NormedAddCommGroup H] [InnerProductSpace H] (T : H →ₗ.[] H) (ψ : T.domain) :
      T.centered ψ = T ψ - (T.expectedValue ψ) ψ

      The centered vector, unfolded to its raw expression.

      theorem LinearPMap.centered_eq_zero_iff {H : Type u_1} [NormedAddCommGroup H] [InnerProductSpace H] (T : H →ₗ.[] H) (ψ : T.domain) :
      T.centered ψ = 0 T ψ = (T.expectedValue ψ) ψ

      A centered vector vanishes exactly when Tψ = ⟨T⟩_ψ ψ.

      theorem LinearPMap.inner_state_centered_eq_zero {H : Type u_1} [NormedAddCommGroup H] [InnerProductSpace H] (T : H →ₗ.[] H) (hT : T.IsSymmetric) (ψ : T.domain) (hψ_norm : ψ = 1) :
      inner (↑ψ) (T.centered ψ) = 0

      For a unit vector and symmetric T, the centered vector is orthogonal to the state.

      theorem LinearPMap.inner_centered_state_eq_zero {H : Type u_1} [NormedAddCommGroup H] [InnerProductSpace H] (T : H →ₗ.[] H) (hT : T.IsSymmetric) (ψ : T.domain) (hψ_norm : ψ = 1) :
      inner (T.centered ψ) ψ = 0

      The conjugate orientation of LinearPMap.inner_state_centered_eq_zero.