Documentation

LCS.Strategy.ObservableToProjector

Conversion from Observables to Projectors #

This module defines the mapping from observables (self-adjoint involutive operators) to projector measurement systems and proves their fundamental algebraic properties.

Given an observable $O$, we define two projectors $P_0, P_1$ corresponding to the outcomes $\{0, 1\} \subseteq \mathbb{F}_2$:

These projectors form a complete binary measurement system.

noncomputable def ObservableToProjector {R : Type u_1} [Ring R] [Algebra R] (O : R) (a : Fin 2) :
R

Converts an observable $O$ and an outcome $a \in \{0, 1\}$ to a projector $P = (1/2)(I + (-1)^a O)$.

Equations
Instances For

    If $O$ is an observable, then the projector $P_a = (1/2)(1 + (-1)^a O)$ is self-adjoint.

    If $O$ is an observable, then each $\mathrm{ObservableToProjector}(O,a)$ is idempotent, so it is a projector.

    The two projectors associated to the two outcomes of a single observable are orthogonal: $P_0 P_1 = 0$.

    The two projectors associated to a single observable form a complete binary measurement: $P_0 + P_1 = 1$.

    theorem commute_observableToProjector {R : Type u_1} [Ring R] [StarRing R] [Algebra R] [StarModule R] {O1 O2 : R} (h : Commute O1 O2) (a b : Fin 2) :

    If observables $O₁$ and $O₂$ commute, then all corresponding projectors $P_a(O₁)$ and $P_b(O₂)$ commute as well.

    Given an observable $O$, the mapping ObservableToProjector O is a measurement system.