Plain-language statement
Core inequality: W†W ≤ I. This is the key step, following from the isometry argument: V_rho ⊗ I_C and I_A ⊗ V_sigma are isometries, their cross product has norm ≤ 1, and the result can be related to W_mat through the MES computation (Eq. 6 in Lin-Kim-Hsieh).
Exact Lean statement
theorem W_mat_sq_le_one [Nonempty dA] [Nonempty dB] [Nonempty dC]
(ρAB : HermitianMat (dA × dB) ℂ) (σBC : HermitianMat (dB × dC) ℂ)
(hρ : ρAB.mat.PosDef) (hσ : σBC.mat.PosDef) :
(W_mat ρAB σBC)ᴴ * (W_mat ρAB σBC) ≤ 1Formal artifact
Lean source
theorem W_mat_sq_le_one [Nonempty dA] [Nonempty dB] [Nonempty dC] (ρAB : HermitianMat (dA × dB) ℂ) (σBC : HermitianMat (dB × dC) ℂ) (hρ : ρAB.mat.PosDef) (hσ : σBC.mat.PosDef) : (W_mat ρAB σBC)ᴴ * (W_mat ρAB σBC) ≤ 1 := by rw [W_mat_eq_three_factors] have h_T₂ := T₂_sq_le_one (dA := dA) σBC hσ have h_step1 : (PERM_mat dA dB dC)ᴴ * ((T₂_mat dA dB dC σBC)ᴴ * (T₂_mat dA dB dC σBC)) * PERM_mat dA dB dC ≤ 1 := by calc _ ≤ (PERM_mat dA dB dC)ᴴ * 1 * PERM_mat dA dB dC := Matrix.PosSemidef.conjTranspose_mul_mul_mono _ h_T₂ _ = 1 := by rw [Matrix.mul_one, PERM_isometry] calc _ = (T₁_mat dA dB dC ρAB)ᴴ * ((PERM_mat dA dB dC)ᴴ * ((T₂_mat dA dB dC σBC)ᴴ * (T₂_mat dA dB dC σBC)) * PERM_mat dA dB dC) * (T₁_mat dA dB dC ρAB) := by simp [Matrix.conjTranspose_mul, Matrix.mul_assoc] _ ≤ (T₁_mat dA dB dC ρAB)ᴴ * 1 * (T₁_mat dA dB dC ρAB) := Matrix.PosSemidef.conjTranspose_mul_mul_mono _ h_step1 _ = 1 := by rw [Matrix.mul_one, T₁_isometry _ hρ]- Project
- quantumInfo
- License
- MIT
- Commit
- 56e83a9288a3
- Source
- QuantumInfo/Finite/Entropy/SSA.lean:717-734
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.