All proofs
Project-declaredLean 4.28.0 · mathlib@8f9d9cff6bd7

Hermitian Mat inner le trace rpow mul

HermitianMat.inner_le_trace_rpow_mul

Plain-language statement

Hermitian trace Hölder inequality: for PSD A, B and conjugate exponents p, q > 1, ⟪A, B⟫ ≤ Tr[A^p]^(1/p) * Tr[B^q]^(1/q).

Exact Lean statement

lemma HermitianMat.inner_le_trace_rpow_mul
    {A B : HermitianMat d ℂ} (hA : 0 ≤ A) (hB : 0 ≤ B)
    (p q : ℝ) (hp : 1 < p) (hpq : 1/p + 1/q = 1) :
    ⟪A, B⟫_ℝ ≤ (A ^ p).trace ^ (1/p) * (B ^ q).trace ^ (1/q)

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma HermitianMat.inner_le_trace_rpow_mul    {A B : HermitianMat d ℂ} (hA : 0  A) (hB : 0  B)    (p q : ) (hp : 1 < p) (hpq : 1/p + 1/q = 1) :    ⟪A, B⟫_  (A ^ p).trace ^ (1/p) * (B ^ q).trace ^ (1/q) := by  by_cases hq : q > 1;  · -- Apply the doubly_stochastic_holder lemma with the weights $w_{ij} = \|C_{ij}\|^2$.    rw [trace_rpow_eq_sum, trace_rpow_eq_sum, inner_eq_doubly_stochastic_sum]    refine doubly_stochastic_holder      A.H.eigenvalues B.H.eigenvalues      (fun i j  ‖(A.H.eigenvectorUnitary.val.conjTranspose * B.H.eigenvectorUnitary.val) i j‖ ^ 2)      (fun i  by simpa using hA.eigenvalues_nonneg i)      (fun i  by simpa using hB.eigenvalues_nonneg i)      (by bound) ?_ ?_ p q hp hpq    · apply Matrix.unitary_row_sum_norm_sq (A.H.eigenvectorUnitary.val.conjTranspose * B.H.eigenvectorUnitary.val)      simp [mul_assoc]      simp [ mul_assoc, Matrix.IsHermitian.eigenvectorUnitary]    · apply Matrix.unitary_col_sum_norm_sq (A.H.eigenvectorUnitary.val.conjTranspose * B.H.eigenvectorUnitary.val)      simp [mul_assoc]      simp [ mul_assoc, Matrix.IsHermitian.eigenvectorUnitary]  · rcases eq_or_ne q 0 with _ | _    · grind only [cases Or]    · field_simp at hpq      nlinarith
Project
quantumInfo
License
MIT
Commit
56e83a9288a3
Source
QuantumInfo/Finite/Entropy/Relative.lean:101-123

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