Empirical/QM: unambiguous state discrimination (the IDP POVM) #
Category: 3-Local. The POVM-essential QM-validity result: distinguishing two non-orthogonal pure states with zero error, at the cost of an inconclusive outcome — provably impossible with a projective (von Neumann) measurement, the canonical "why POVMs are needed" example (Ivanovic 1987, Dieks 1988, Peres 1988).
Setup #
Two non-orthogonal states with real overlap s = ⟨ψ₁, ψ₂⟩ ∈ [0, 1):
ψ₁ = |0⟩, ψ₂ = s|0⟩ + σ|1⟩ with σ = √(1−s²). The conclusive effects are
scaled rank-1 projectors onto the orthogonal complements:
E₁ = a |ψ₂^⊥⟩⟨ψ₂^⊥| ("conclude state 1"), E₂ = a |ψ₁^⊥⟩⟨ψ₁^⊥| ("conclude 2"),
with a = 1/(1+s) (the optimal Ivanovic–Dieks–Peres coefficient), ψ₁^⊥ = |1⟩,
ψ₂^⊥ = −σ|0⟩ + s|1⟩. The third, inconclusive, effect is the rank-1 projector
E? = |χ?⟩⟨χ?| = I − E₁ − E₂ with χ? = √s|0⟩ + (σ√s/(1+s))|1⟩; its positivity
(hence the validity of the POVM) is exactly the completeness constraint, satisfied
at a = 1/(1+s).
What this file proves #
- Unambiguity (the defining no-error property):
⟨ψ₂, E₁ ψ₂⟩ = 0and⟨ψ₁, E₂ ψ₁⟩ = 0— outcome "1" never fires on state 2 and vice versa, because each conclusive effect lives on the orthogonal complement of the other state. - Success probability:
⟨ψ₁, E₁ ψ₁⟩ = 1 − s— the IDP success rate. - Completeness:
E₁ + E₂ + |χ?⟩⟨χ?| = I(usd_complete), giving the full three-outcomeusdPOVM : POVM 2 (Fin 3)— a genuine non-projective POVM realising zero-error discrimination of the two non-orthogonal states.
The unambiguity is exactly the POVM-essential content: a projective measurement cannot have an informative outcome that gives identically zero on a non-orthogonal state while leaving room for a second such outcome.
The USD states and conclusive effects #
ψ₁ = |0⟩.
Equations
Instances For
ψ₂ = s|0⟩ + σ|1⟩ (overlap ⟨ψ₁,ψ₂⟩ = s).
Equations
Instances For
ψ₁^⊥ = |1⟩.
Equations
Instances For
ψ₂^⊥ = −σ|0⟩ + s|1⟩.
Equations
Instances For
Component values and inner products #
The USD effects, unambiguity, and success #
The optimal IDP coefficient a = 1/(1+s).
Equations
- CSD.Empirical.QM.USD.usdA s = 1 / (1 + s)
Instances For
E₁ = a|ψ₂^⊥⟩⟨ψ₂^⊥| — the "conclude state 1" effect.
Equations
- CSD.Empirical.QM.USD.E1 s hs0 hs1 = CSD.LF2.scaledRankOneEffect (CSD.Empirical.QM.USD.usdA s) ⋯ ⋯ (CSD.Empirical.QM.USD.psi2perp s) ⋯
Instances For
E₂ = a|ψ₁^⊥⟩⟨ψ₁^⊥| — the "conclude state 2" effect.
Equations
Instances For
Unambiguity (outcome 1): ⟨ψ₂, E₁ ψ₂⟩ = 0 — concluding "state 1" never
fires on state 2, because E₁ lives on the orthogonal complement of ψ₂.
The inconclusive effect and the full POVM #
The inconclusive-outcome vector χ? = √s|0⟩ + (σ√s/(1+s))|1⟩, with
E? = |χ?⟩⟨χ?| = I − E₁ − E₂.
Equations
- CSD.Empirical.QM.USD.chiInc s = EuclideanSpace.single 0 ↑√s + EuclideanSpace.single 1 ↑(CSD.Empirical.QM.USD.sig s * √s / (1 + s))
Instances For
E? = |χ?⟩⟨χ?| as an Effect (the inconclusive outcome). PSD as a rank-1
projector; ≤ I because I − E? = E₁ + E₂ is a sum of PSD effects.
Equations
- CSD.Empirical.QM.USD.Einc s hs0 hs1 = { M := CSD.LF2.outerProduct (CSD.Empirical.QM.USD.chiInc s), isHermitian := ⋯, nonneg := ⋯, le_one := ⋯ }
Instances For
The USD POVM {E₁, E₂, E?} — the three-outcome unambiguous-discrimination
measurement (two conclusive outcomes + one inconclusive), a genuine non-projective
POVM realising zero-error discrimination of the two non-orthogonal states.
Equations
- CSD.Empirical.QM.USD.usdPOVM s hs0 hs1 = { E := ![CSD.Empirical.QM.USD.E1 s hs0 hs1, CSD.Empirical.QM.USD.E2 s hs0, CSD.Empirical.QM.USD.Einc s hs0 hs1], complete := ⋯ }