All proofs
Project-declaredLean 4.28.0 · mathlib@8f9d9cff6bd7

Rpow mul neg rpow eq support Proj

rpow_mul_neg_rpow_eq_supportProj

Plain-language statement

For PSD A and γ ≠ 0, the product A^γ * A^{-γ} equals the support projection of A. This is because x^γ * x^{-γ} = if x = 0 then 0 else 1 for x ≥ 0.

Exact Lean statement

lemma rpow_mul_neg_rpow_eq_supportProj {A : HermitianMat d ℂ}
    (hA : 0 ≤ A) (γ : ℝ) (hγ : γ ≠ 0) :
    (A ^ γ).mat * (A ^ (-γ)).mat = A.supportProj.mat

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma rpow_mul_neg_rpow_eq_supportProj {A : HermitianMat d ℂ}    (hA : 0  A) (γ : ) (hγ : γ  0) :    (A ^ γ).mat * (A ^ (-γ)).mat = A.supportProj.mat := by  rw [HermitianMat.supportProj_eq_cfc];  rw [HermitianMat.rpow_eq_cfc, HermitianMat.rpow_eq_cfc];  rw [  HermitianMat.mat_cfc_mul_apply ];  refine congr_arg _ ( HermitianMat.cfc_congr_of_nonneg hA ?_)  intro x (hx : 0  x)  rcases eq_or_ne x 0 with hx' | hx'  · simp [hx', hγ]  · simp [hx', Real.rpow_neg hx]    exact mul_inv_cancel₀ (by positivity)
Project
quantumInfo
License
MIT
Commit
56e83a9288a3
Source
QuantumInfo/Finite/Entropy/DPI.lean:491-502

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