Plain-language statement
Exercise 2.8 of Hayashi's book "A group theoretic approach to Quantum Information".
Exact Lean statement
theorem pinching_pythagoras (ρ σ : MState d) :
𝐃(ρ‖σ) = 𝐃(ρ‖pinching_map σ ρ) + 𝐃(pinching_map σ ρ‖σ)Formal artifact
Lean source
theorem pinching_pythagoras (ρ σ : MState d) : 𝐃(ρ‖σ) = 𝐃(ρ‖pinching_map σ ρ) + 𝐃(pinching_map σ ρ‖σ) := by by_cases h_ker : σ.M.ker ≤ ρ.M.ker · have h_ker₁ : (pinching_map σ ρ).M.ker ≤ ρ.M.ker := pinching_map_ker_le ρ σ have h_ker₂ : σ.M.ker ≤ (pinching_map σ ρ).M.ker := ker_le_ker_pinching_map_ker ρ σ h_ker rw [← EReal.coe_ennreal_eq_coe_ennreal_iff, EReal.coe_ennreal_add] rw [qRelativeEnt_ker h_ker, qRelativeEnt_ker h_ker₁, qRelativeEnt_ker h_ker₂] have h_eq₁ := inner_cfc_pinching_right ρ σ Real.log have h_eq₂ := inner_cfc_pinching ρ σ Real.log rw [← HermitianMat.log] at h_eq₁ h_eq₂ simp only [inner_sub_right] rw [h_eq₂, h_eq₁] simp only [EReal.coe_sub] rw [← add_sub_assoc, EReal.sub_add_cancel] · simp only [qRelativeEnt, SandwichedRelRentropy, dif_pos zero_lt_one] trans ⊤ · exact dif_neg h_ker · convert (add_top _).symm apply dif_neg ?_ contrapose! h_ker exact h_ker.trans (pinching_map_ker_le ρ σ)- Project
- quantumInfo
- License
- MIT
- Commit
- 56e83a9288a3
- Source
- QuantumInfo/Finite/Pinching.lean:386-406
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
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...
Source project: quantumInfo
Person-level attribution pending.
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 ψ).
Source project: quantumInfo
Person-level attribution pending.
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).
Source project: quantumInfo
Person-level attribution pending.