Project documentation
The No-cloning theorem, saying that if states ψ and φ can both be perfectly cloned using a unitary U and a fiducial state f, and they aren't identical (their inner product is less than 1), then the two states must be orthogonal to begin with. In short: only orthogonal states can be simultaneously cloned.
Exact Lean statement
theorem no_cloning {U : 𝐔[d × d]}
(hψ : U ◃ pure (ψ ⊗ᵠ f) = pure (ψ ⊗ᵠ ψ))
(hφ : U ◃ pure (φ ⊗ᵠ f) = pure (φ ⊗ᵠ φ))
(H : ⟪pure ψ, pure φ⟫_Prob < (1 : ℝ)) :
⟪pure ψ, pure φ⟫_Prob = (0 : ℝ)Formal artifact
Lean source
theorem no_cloning {U : 𝐔[d × d]} (hψ : U ◃ pure (ψ ⊗ᵠ f) = pure (ψ ⊗ᵠ ψ)) (hφ : U ◃ pure (φ ⊗ᵠ f) = pure (φ ⊗ᵠ φ)) (H : ⟪pure ψ, pure φ⟫_Prob < (1 : ℝ)) : ⟪pure ψ, pure φ⟫_Prob = (0 : ℝ) := by set ρψ := pure ψ set ρφ := pure φ have h1 : ⟪ρψ, ρφ⟫_Prob * ⟪ρψ, ρφ⟫_Prob = ⟪pure (ψ ⊗ᵠ ψ), pure (φ ⊗ᵠ φ)⟫_Prob := by grind only [pure_prod_pure, prod_inner_prod] have h2 : (⟪pure (ψ ⊗ᵠ ψ), pure (φ ⊗ᵠ φ)⟫_Prob : ℝ) = ⟪U ◃ pure (ψ ⊗ᵠ f), U ◃ pure (φ ⊗ᵠ f)⟫_Prob := by grind only [pure_prod_pure] replace h2 : ((pure (ψ ⊗ᵠ ψ)).m * (pure (φ ⊗ᵠ φ)).m).trace.re = (ρψ.m * ρφ.m).trace.re := by convert ← h2 simp +zetaDelta only [inner_U_conj, pure_prod_pure, prod] simp [inner, ← Matrix.mul_kronecker_mul, pure_mul_self, Matrix.trace_kronecker] have h3 : (ρψ.m * ρφ.m).trace.re * ((ρψ.m * ρφ.m).trace.re - 1) = 0 := by rw [mul_sub, sub_eq_zero, mul_one] exact congr(Subtype.val $h1).trans h2 rw [mul_eq_zero] at h3 apply h3.resolve_right exact sub_ne_zero_of_ne H.ne- Project
- quantumInfo
- License
- MIT
- Commit
- 56e83a9288a3
- Source
- QuantumInfo/Finite/Unitary.lean:93-114
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.