All proofs
Project-declaredLean 4.28.0 · mathlib@8f9d9cff6bd7

Peierls inequality

HermitianMat.peierls_inequality

Project documentation

The trace functional is invariant under joint unitary conjugation of MStates. -/ theorem sandwichedTraceFunctional_conj_unitary_MState (U : Matrix.unitaryGroup d ℂ) (ρ σ : MState d) : Q̃_ α(ρ.U_conj U‖σ.U_conj U) = Q̃_ α(ρ‖σ) := by unfold sandwichedTraceFunctional MState.U_conj exact sandwichedTraceFunctional_conj_unitary_hermitian U ρ.M σ.M /-! ## Joint...

Exact Lean statement

theorem peierls_inequality (A : HermitianMat d ℂ) (g : ℝ → ℝ) (hg : ConvexOn ℝ Set.univ g) :
    ∑ i, g ((A.mat i i).re) ≤ (A.cfc g).trace

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
theorem peierls_inequality (A : HermitianMat d ℂ) (g :   ) (hg : ConvexOn  Set.univ g) :    ∑ i, g ((A.mat i i).re)  (A.cfc g).trace := by  -- By the properties of the trace and the convexity of $g$, we have:  have h_trace_le : ∑ i, g ((A.mat i i).re)  ∑ j, g (A.H.eigenvalues j) * ∑ i, ‖(A.H.eigenvectorUnitary.val i j)‖^2 := by    -- By the spectral theorem, we can write $A$ as $A = \sum_{i} \lambda_i u_i u_i^*$, where $\lambda_i$ are the eigenvalues and $u_i$ are the corresponding eigenvectors.    have h_spectral :  i, (A.mat i i).re = ∑ j, A.H.eigenvalues j * ‖(A.H.eigenvectorUnitary.val i j)‖^2 := by      intro i      have h_sum : (A.mat i i).re = ∑ j, (A.H.eigenvectorBasis j i) * star (A.H.eigenvectorBasis j i) * A.H.eigenvalues j := by        have := A.H.spectral_theorem;        replace this := congr_fun ( congr_fun this i ) i ; simp_all [ Matrix.mul_apply, Matrix.diagonal ] ;        simp [ Complex.ext_iff, mul_comm, mul_left_comm ];        exact Finset.sum_congr rfl fun _ _ => by ring;      simp_all [ Complex.ext_iff, mul_comm ];      simp [ Complex.normSq, Complex.sq_norm ];    have h_jensen :  i, g ((A.mat i i).re)  ∑ j, ‖(A.H.eigenvectorUnitary.val i j)‖^2 * g (A.H.eigenvalues j) := by      intro i      have h_convex_comb : ∑ j, ‖(A.H.eigenvectorUnitary.val i j)‖^2 = 1 := by        have := A.H.eigenvectorUnitary.2;        have := this.2;        replace this := congr_fun ( congr_fun this i ) i; simp_all [ Matrix.mul_apply, Complex.mul_conj, Complex.normSq_eq_norm_sq ] ;        exact_mod_cast this;      convert hg.map_sum_le _ _ _ <;> simp_all [ mul_comm ];    convert Finset.sum_le_sum fun i _ => h_jensen i using 1;    rw [ Finset.sum_comm, Finset.sum_congr rfl ] ; intros ; rw [ Finset.mul_sum _ _ _ ] ; ac_rfl;  have h_unitary :  (j : d), ∑ i, ‖(A.H.eigenvectorUnitary.val i j)‖^2 = 1 := by    exact fun j => Matrix.unitaryGroup_row_norm (H A).eigenvectorUnitary j;  simp_all [ HermitianMat.trace_cfc_eq ]
Project
quantumInfo
License
MIT
Commit
56e83a9288a3
Source
QuantumInfo/Finite/Entropy/DPI.lean:171-197

Reuse this declaration

Bring the exact result into your workflow

The import identifies the source module. Your project still needs the pinned package dependency shown on this page.

What this badge means

This completion status comes from the project or community source. It has not yet been represented here as an independent rebuild and axiom audit.

Continue in this project

Related declarations

Project-declaredLean 4.28.0

Conj Transpose isometry mul isometry le one

conjTranspose_isometry_mul_isometry_le_one

Project documentation

The operator norm of the conjugate transpose is equal to the operator norm. -/ theorem Matrix.opNorm_conjTranspose_eq_opNorm {m n : Type*} [Fintype m] [Fintype n] [DecidableEq m] [DecidableEq n] (A : Matrix m n 𝕜) : Matrix.opNorm Aᴴ = Matrix.opNorm A := by unfold Matrix.opNorm rw [← ContinuousLinearMap.adjoint.norm_map (toEuclideanLin A).toContinuousLine...

quantum informationentropyquantum channels

Source project: quantumInfo

Person-level attribution pending.

View proof record
Project-declaredLean 4.28.0

Convex roof of pure

convex_roof_of_pure

Plain-language statement

The convex roof extension of g : KetUpToPhase d → ℝ≥0 applied to a pure state ψ is g (KetUpToPhase.mk ψ).

quantum informationentropyquantum channels

Source project: quantumInfo

Person-level attribution pending.

View proof record
Project-declaredLean 4.28.0

Id achieves Rate log dim

CPTPMap.id_achievesRate_log_dim

Plain-language statement

The identity channel on D dimensional space achieves a rate of log2(D).

quantum informationentropyquantum channels

Source project: quantumInfo

Person-level attribution pending.

View proof record