LF2: auxiliary effect constructions #
Category: 3-Local (LF2 Effect-algebra helpers).
Shared infrastructure for building concrete (possibly non-projective) effects, used by the Empirical POVM examples (trine, USD, …):
scaledRankOneEffect—c|φ⟩⟨φ|as anEffectfor0 ≤ c ≤ 1and unitφ(thec = 1case isrankOneEffect); PSD viapsd_smul(the√c·Iconjugation),le_onevia the convex decomposition(1-c)P + (1-P);trace_outer_mul_eq_inner—Tr(|ψ⟩⟨ψ| · M) = ⟨ψ, M ψ⟩, the trace-form / expectation bridge;scaledRankOne_quadratic—⟨ψ, (c|φ⟩⟨φ|) ψ⟩ = c‖⟨ψ,φ⟩‖², the quadratic form (the per-outcome Born weight of a scaled rank-1 effect).
theorem
CSD.LF2.psd_smul
{N : ℕ}
{M : Matrix (Fin N) (Fin N) ℂ}
(hM : M.PosSemidef)
{c : ℝ}
(hc : 0 ≤ c)
:
(↑c • M).PosSemidef
(c • M) is positive semidefinite for 0 ≤ c (real) and PSD M, via the
conjugation (√c·I)ᴴ M (√c·I) = c·M.
noncomputable def
CSD.LF2.scaledRankOneEffect
{N : ℕ}
(c : ℝ)
(hc0 : 0 ≤ c)
(hc1 : c ≤ 1)
(φ : EuclideanSpace ℂ (Fin N))
(hφ : ‖φ‖ = 1)
:
Effect N
c|φ⟩⟨φ| as an Effect, for 0 ≤ c ≤ 1 and a unit vector φ. The c = 1
case is rankOneEffect.
Equations
- CSD.LF2.scaledRankOneEffect c hc0 hc1 φ hφ = { M := ↑c • CSD.LF2.outerProduct φ, isHermitian := ⋯, nonneg := ⋯, le_one := ⋯ }
Instances For
theorem
CSD.LF2.trace_outer_mul_eq_inner
{N : ℕ}
(ψ : EuclideanSpace ℂ (Fin N))
(M : Matrix (Fin N) (Fin N) ℂ)
:
Tr(|ψ⟩⟨ψ| · M) = ⟨ψ, M ψ⟩ — the trace-form / expectation bridge.