Documentation

LCS.Measurement

Projector Measurement Systems #

This module defines the concept of a projector-valued measurement (PVM) in a general star-ring. A measurement system is a family of self-adjoint, idempotent, and mutually orthogonal elements that sum to the identity.

Key Definitions #

Key Lemmas #

structure IsMeasurementSystem {R : Type u_1} [Ring R] [StarRing R] {I : Type u_2} [Fintype I] (f : IR) :
  • sum_one : x : I, f x = 1
  • idempotent (x : I) : f x * f x = f x
  • orthogonal (x y : I) : x yf x * f y = 0
  • self_adjoint (x : I) : star (f x) = f x
Instances For
    noncomputable def InducedMeasurementSystem {R : Type u_1} [Ring R] {I : Type u_2} {J : Type u_3} [Fintype I] [Fintype J] [DecidableEq J] (f : IR) (g : IJ) :
    JR
    Equations
    Instances For
      theorem induced_measurement_system_is_measurement_system {R : Type u_1} [Ring R] [StarRing R] {I : Type u_2} {J : Type u_3} [Fintype I] [Fintype J] [DecidableEq J] (f : IR) (h : IsMeasurementSystem f) (g : IJ) :
      theorem measurement_commute {R : Type u_1} [Ring R] [StarRing R] {I : Type u_2} [Fintype I] {f : IR} (h : IsMeasurementSystem f) (x y : I) :
      Commute (f x) (f y)
      theorem measurement_commute_sum {R : Type u_1} [Ring R] [StarRing R] {I : Type u_2} [Fintype I] {f : IR} (h : IsMeasurementSystem f) (A B : Finset I) :
      Commute (∑ xA, f x) (∑ yB, f y)
      theorem measurement_intersection {R : Type u_1} [Ring R] [StarRing R] {I : Type u_2} [Fintype I] [DecidableEq I] {f : IR} (h : IsMeasurementSystem f) (S T : Finset I) :
      (∑ xS, f x) * yT, f y = xS T, f x
      theorem eq_of_mul_projectors_eq {R : Type u_1} [Ring R] [StarRing R] {I : Type u_2} [Fintype I] {f : IR} (h : IsMeasurementSystem f) {T U : R} (heq : ∀ (x : I), T * f x = U * f x) :
      T = U
      theorem measurement_sum_mul_projector {R : Type u_1} [Ring R] [StarRing R] {I : Type u_2} [Fintype I] [DecidableEq I] {f : IR} (h : IsMeasurementSystem f) (S : Finset I) (x : I) :
      (∑ yS, f y) * f x = if x S then f x else 0