All proofs
Project-declaredLean 4.28.0 · mathlib@8f9d9cff6bd7

F alpha convex in sigma

f_alpha_convex_in_sigma

Plain-language statement

Step 3 (Convexity in σ): For fixed H ≥ 0 and ρ, and α > 1, the map σ ↦ f_alpha α H ρ σ is convex. The key is that for p = α/(α−1) > 1: • A ↦ Tr[A^p] is convex on PSD matrices (trace function convexity, Theorem 2.10 of Carlen), • σ ↦ σ^{−γ} H σ^{−γ} is concave in σ by Lieb concavity (since −γ = (α−1)/(2α) ∈ (0,½)), • The composition...

Exact Lean statement

theorem f_alpha_convex_in_sigma (hα : 1 < α) (H : HermitianMat d ℂ) (hH : 0 ≤ H)
    (ρ : MState d) {ι : Type*} [Fintype ι]
    (w : ι → ℝ) (hw_nonneg : ∀ i, 0 ≤ w i) (hw_sum : ∑ i, w i = 1)
    (σs : ι → MState d) (σ_mix : MState d)
    (hσ_mix : σ_mix.M = ∑ i, w i • (σs i).M) :
    f_alpha α H ρ σ_mix ≤ ∑ i, w i * f_alpha α H ρ (σs i)

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
theorem f_alpha_convex_in_sigma (hα : 1 < α) (H : HermitianMat d ℂ) (hH : 0  H)    (ρ : MState d) {ι : Type*} [Fintype ι]    (w : ι  ) (hw_nonneg :  i, 0  w i) (hw_sum : ∑ i, w i = 1)    (σs : ι  MState d) (σ_mix : MState d)    (hσ_mix : σ_mix.M = ∑ i, w i • (σs i).M) :    f_alpha α H ρ σ_mix  ∑ i, w i * f_alpha α H ρ (σs i) := by  have hα_pos : 0 < α - 1 := by linarith  -- Define the σ-dependent trace function on HermitianMat  let s :=- 1) / (2 * α)  let p := α /- 1)  let F : HermitianMat d ℂ   := fun σ => ((H.conj^ s).mat) ^ p).trace  -- f_alpha relates to F via: f_alpha α H ρ σ = α * ⟪ρ.M, H⟫ - (α-1) * F(σ.M)  -- because -γ = -((1-α)/(2α)) = (α-1)/(2α) = s  have hf_eq :  σ : MState d, f_alpha α H ρ σ = α * ⟪ρ.M, H⟫_ -- 1) * F σ.M := by    intro σ    show _ = α * ⟪ρ.M, H⟫_ -- 1) *      ((H.conj (σ.M ^ ((α - 1) / (2 * α))).mat) ^/- 1))).trace    unfold f_alpha; ring_nf  simp_rw [hf_eq]  -- Reduce to concavity: ∑ w_i * F(σ_i.M) ≤ F(σ_mix.M)  suffices h : ∑ i, w i * F (σs i).M  F σ_mix.M by    have h1 : ∑ i, w i * ((α - 1) * F (σs i).M) =- 1) * ∑ i, w i * F (σs i).M := by      rw [Finset.mul_sum]; congr 1; ext i; ring    simp only [mul_sub, Finset.sum_sub_distrib,  Finset.sum_mul, hw_sum, one_mul, h1]    linarith [mul_le_mul_of_nonneg_left h (le_of_lt hα_pos)]  -- Apply ConcaveOn.le_map_sum from trace_conj_rpow_concave  have hF_concave : ConcaveOn  {σ : HermitianMat d ℂ | 0  σ} F :=    trace_conj_rpow_concave hα H hH  have h_jensen := hF_concave.le_map_sum    (t := Finset.univ) (w := w) (p := fun i => (σs i).M)    (fun i _ => hw_nonneg i)    (by simp [hw_sum])    (fun i _ => (σs i).nonneg)  rw [ hσ_mix] at h_jensen  convert h_jensen using 1
Project
quantumInfo
License
MIT
Commit
56e83a9288a3
Source
QuantumInfo/Finite/Entropy/DPI.lean:677-711

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