Documentation

MIPRE.Background.LIDT.MIPStarRE.LDT.ExpansionHypercubeGraph.Theorems.Foundations

Section 7 hypercube graph: trace-form foundations #

This file provides the abstract theorem statements and trace-form identities used to formalize the local and global variance rewrites in Section 7 of the LDT paper. The concrete matrix-realization statements are proved first; the public-facing statements in MIPStarRE.LDT.ExpansionHypercubeGraph.Theorems.Results then specialize these identities to arbitrary finite-dimensional operator families.

References #

Statement structures and matrix realization #

Paper origin: references/ldt-paper/expansion.tex:145-178 (\label{lem:local-rewrite}).

Conclusion statement for lem:local-rewrite: the local variance is rewritten as a trace-form expectation in the operator family A.

Instances For

    Paper origin: references/ldt-paper/expansion.tex:179-269 (\label{lem:global-rewrite}).

    Conclusion statement for lem:global-rewrite: the global variance is rewritten as a trace-form expectation along the eigenbasis of the hypercube graph Laplacian.

    Instances For

      Reinterpret an abstract operator family and quantum state as the concrete matrix realization used by the trace-form proof of Section 7.

      Equations
      • One or more equations did not get rendered due to their size.
      Instances For
        theorem MIPStarRE.LDT.ExpansionHypercubeGraph.localVariance_eq_zero_of_isEmpty {ι : Type u} [Fintype ι] [DecidableEq ι] ( : ¬Nonempty ι) (params : Parameters) (A : Point paramsQuantum.Op ι) (ψ : QuantumState ι) :
        localVariance params A ψ = 0

        If the ambient outcome type is empty, the abstract local variance is zero.

        theorem MIPStarRE.LDT.ExpansionHypercubeGraph.globalVariance_eq_zero_of_isEmpty {ι : Type u} [Fintype ι] [DecidableEq ι] ( : ¬Nonempty ι) (params : Parameters) (A : Point paramsQuantum.Op ι) (ψ : QuantumState ι) :
        globalVariance params A ψ = 0

        If the ambient outcome type is empty, the abstract global variance is zero.

        If the ambient outcome type is empty, the local trace formula vanishes.

        If the ambient outcome type is empty, the global trace formula vanishes.

        Finite-sum helper lemmas #

        theorem MIPStarRE.LDT.ExpansionHypercubeGraph.sum_sum_mul_left {α : Type u_1} {β : Type u_2} {γ : Type u_3} [Fintype α] [Fintype β] [CommSemiring γ] (c : γ) (f : αβγ) :
        a : α, b : β, c * f a b = c * a : α, b : β, f a b

        Factor a common scalar out of a doubly indexed finite sum.

        theorem MIPStarRE.LDT.ExpansionHypercubeGraph.sum_sum_add {α : Type u_1} {β : Type u_2} {γ : Type u_3} [Fintype α] [Fintype β] [AddCommMonoid γ] (f g : αβγ) :
        a : α, b : β, (f a b + g a b) = a : α, b : β, f a b + a : α, b : β, g a b

        Distribute a doubly indexed sum across pointwise addition.

        theorem MIPStarRE.LDT.ExpansionHypercubeGraph.sum_sum_sub {α : Type u_1} {β : Type u_2} {γ : Type u_3} [Fintype α] [Fintype β] [AddCommGroup γ] (f g : αβγ) :
        a : α, b : β, (f a b - g a b) = a : α, b : β, f a b - a : α, b : β, g a b

        Distribute a doubly indexed sum across pointwise subtraction.

        Trace witness closed forms #

        Turn a matrix realization state into the corresponding abstract quantum state.

        Equations
        Instances For

          Closed form of globalVarianceTraceForm as the average squared norm of the orthogonal residual family carried by the decomposition.

          theorem MIPStarRE.LDT.ExpansionHypercubeGraph.globalVarianceTraceForm_eq_closedForm {ι : Type u} [Fintype ι] [DecidableEq ι] (params : Parameters) (A : Point paramsQuantum.Op ι) (ψ : QuantumState ι) (decomp : GlobalVarianceDecomposition params A) :
          globalVarianceTraceForm params A ψ decomp = (↑(hypercubeVertexCount params))⁻¹ * u : Point params, ev ψ (Matrix.conjTranspose (A u) * A u) - (↑(hypercubeVertexCount params))⁻¹ * (↑(hypercubeVertexCount params))⁻¹ * u : Point params, v : Point params, ev ψ (Matrix.conjTranspose (A v) * A u)

          Closed form of globalVarianceTraceForm in the same centered-correlation coordinates as matrixGlobalVariance_eq_closedForm.