Sandwiched Trace Functional self
sandwichedTraceFunctional_self
Project documentation
Twirling on a bipartite system: applying 1_A ⊗ V_i and averaging produces the -- partial trace tensored with the maximally mixed state. -/ -- theorem twirling_bipartite [Nonempty dB] -- (κ : Type) [Fintype κ] (V : κ → Matrix.unitaryGroup dB ℂ) -- (hV : ∀ (X : HermitianMat dB ℂ), -- (Fintype.card κ : ℝ)⁻¹ • ∑ i : κ, X.conj (V i : Matrix dB dB ℂ) = -- (X....
Exact Lean statement
theorem sandwichedTraceFunctional_self (hα : 0 < α) (ρ : MState d) :
Q̃_ α(ρ‖ρ) = 1Formal artifact
Lean source
theorem sandwichedTraceFunctional_self (hα : 0 < α) (ρ : MState d) : Q̃_ α(ρ‖ρ) = 1 := by by_cases h : α = 1; · subst h; simp [ sandwichedTraceFunctional ] ; · unfold sandwichedTraceFunctional; have := ρ.pos; have h_simp : (ρ.M.conj (ρ.M ^ ((1 - α) / (2 * α))).mat) = ρ.M ^ (1 + 2 * ((1 - α) / (2 * α))) := by rw [ ← HermitianMat.conj_rpow ]; · rw [ HermitianMat.rpow_one ]; · exact le_of_lt this; · exact div_ne_zero ( sub_ne_zero_of_ne ( Ne.symm h ) ) ( mul_ne_zero two_ne_zero hα.ne' ); · cases lt_or_gt_of_ne h <;> nlinarith [ mul_div_cancel₀ ( 1 - α ) ( by positivity : ( 2 * α ) ≠ 0 ) ]; have h_simp : (ρ.M ^ (1 + 2 * ((1 - α) / (2 * α)))) ^ α = ρ.M ^ ((1 + 2 * ((1 - α) / (2 * α))) * α) := by rw [ ← HermitianMat.rpow_mul ]; exact le_of_lt this; field_simp at *; simp_all only [add_sub_cancel, one_div, HermitianMat.rpow_one, MState.tr]- Project
- quantumInfo
- License
- MIT
- Commit
- 56e83a9288a3
- Source
- QuantumInfo/Finite/Entropy/DPI.lean:1051-1067
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.