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$:
- $P_0 = \frac{1}{2}(I + O)$
- $P_1 = \frac{1}{2}(I - O)$
These projectors form a complete binary measurement system.
Converts an observable $O$ and an outcome $a \in \{0, 1\}$ to a projector $P = (1/2)(I + (-1)^a O)$.
Equations
- ObservableToProjector O a = (1 / 2) • (1 + observableSign a • O)
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$.
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.