Matrix-valued measurements for the MIP*=RE project #
This file provides the matrix-valued measurement layer used by the LDT formalization.
Main definitions #
Submeasurement— a family of PSD matrices summing to at most the identity.Measurement— a family of PSD matrices summing to exactly the identity.Submeasurement.postprocess— data-processed submeasurements via answer relabeling.Measurement.postprocess— the paper's postprocessing proposition for complete POVMs.inconsistency— the off-diagonal mass∑_{a ≠ b} τ(M_a N_b).diagOverlap— the diagonal mass∑_a τ(M_a N_a).
References #
This file builds the project's finite-dimensional measurement layer on top of
the normalized-trace and positive-operator facts in MIPStarRE.Quantum.FiniteMatrix
for the quantum formalization in references/ldt-paper/.
Submeasurements and measurements #
A submeasurement on a finite answer type α is a family of PSD matrices
M : α → Op d with ∑ a, M a ≤ 1.
- effect : α → Op d
The effect operators.
Each effect is positive semidefinite.
The effects sum to at most the identity.
Instances For
A measurement is a submeasurement whose effects sum exactly to the identity.
The effects sum to the identity.
Instances For
Totals and postprocessing #
Totals and postprocessing #
The total operator ∑ a, M_a.
Instances For
Data processing: relabel the answer set by f : α → β, summing the effects over
fibers.
Equations
Instances For
Restatement of sum_le_one in terms of the named total operator.
Postprocessing preserves the sum of all effects.
Postprocessing preserves the named total operator.
Build a complete measurement from effects whose sum is exactly the identity.
This constructor keeps the equality proof as the primary hypothesis and derives the inherited submeasurement inequality automatically. It is useful at paper sites that are explicitly POVMs rather than relaxed sub-POVMs.
Equations
- MIPStarRE.Quantum.Measurement.ofSumEqOne effect pos sum_eq_one = { effect := effect, pos := pos, sum_le_one := ⋯, sum_eq_one := sum_eq_one }
Instances For
The named total of a complete measurement is the identity.
Postprocess a complete measurement by relabeling outcomes.
This formalizes references/ldt-paper/preliminaries.tex:169--180: regrouping
the effects along the fibers of f preserves the total operator, so a POVM
remains a POVM after postprocessing.
Equations
- M.postprocess f = { toSubmeasurement := M.postprocess f, sum_eq_one := ⋯ }
Instances For
Overlap definitions #
The off-diagonal overlap mass ∑_{a ≠ b} τ(M_a N_b).
Equations
- MIPStarRE.Quantum.inconsistency M N = ∑ a : α, ∑ b : α with b ≠ a, MIPStarRE.Quantum.normalizedTrace (M a * N b)
Instances For
The diagonal overlap mass ∑_a τ(M_a N_a).
Equations
- MIPStarRE.Quantum.diagOverlap M N = ∑ a : α, MIPStarRE.Quantum.normalizedTrace (M a * N a)