V rho conj mul self eq
V_rho_conj_mul_self_eq
Plain-language statement
V_rho^H * V_rho simplifies to sandwiching the traceRight by the inverse square root.
Exact Lean statement
lemma V_rho_conj_mul_self_eq (ρAB : HermitianMat (dA × dB) ℂ) (hρ : ρAB.mat.PosDef) :
let ρAFormal artifact
Lean source
lemma V_rho_conj_mul_self_eq (ρAB : HermitianMat (dA × dB) ℂ) (hρ : ρAB.mat.PosDef) : let ρA := ρAB.traceRight let ρA_inv_sqrt := (ρA⁻¹.sqrt : Matrix dA dA ℂ) (V_rho ρAB)ᴴ * (V_rho ρAB) = ρA_inv_sqrt * ρAB.traceRight.mat * ρA_inv_sqrt := by -- By definition of $V_rho$, we can write out the product $V_rho^H * V_rho$. simp [V_rho]; simp [ ← Matrix.mul_assoc ]; have h_simp : (Matrix.kroneckerMap (fun x1 x2 => x1 * x2) (ρAB.sqrt : Matrix (dA × dB) (dA × dB) ℂ) (1 : Matrix dB dB ℂ))ᴴ * (Matrix.kroneckerMap (fun x1 x2 => x1 * x2) (ρAB.sqrt : Matrix (dA × dB) (dA × dB) ℂ) (1 : Matrix dB dB ℂ)) = Matrix.kroneckerMap (fun x1 x2 => x1 * x2) (ρAB : Matrix (dA × dB) (dA × dB) ℂ) (1 : Matrix dB dB ℂ) := by have h_simp : (ρAB.sqrt : Matrix (dA × dB) (dA × dB) ℂ)ᴴ * (ρAB.sqrt : Matrix (dA × dB) (dA × dB) ℂ) = ρAB := by convert ρAB.sqrt_sq ( show 0 ≤ ρAB from ?_ ) using 1; · simp [ HermitianMat.sqrt ]; · positivity ext ⟨ i, j ⟩ ⟨ k, l ⟩ simp [ ← h_simp, Matrix.mul_apply ] ring_nf by_cases hij : j = l · simp [ hij, Matrix.one_apply ] simp [← Finset.sum_filter] refine' Finset.sum_bij ( fun x _ => x.1 ) _ _ _ _ <;> simp intro a b exact Or.inl ( by simpa using congr_fun ( congr_fun ( ρAB.sqrt.2 ) i ) ( a, b ) ) · simp [ hij, Matrix.one_apply ] exact Finset.sum_eq_zero (by aesop) simp_all [ mul_assoc, Matrix.mul_assoc ]; simp [ ← Matrix.mul_assoc, ← map_to_tensor_MES_prop ]- Project
- quantumInfo
- License
- MIT
- Commit
- 56e83a9288a3
- Source
- QuantumInfo/Finite/Entropy/SSA.lean:107-131
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.