feat(QuantumInfo): Cauchy-Schwarz norm bound for Bargmann invariant#1134
Open
wock9000 wants to merge 1 commit into
Open
feat(QuantumInfo): Cauchy-Schwarz norm bound for Bargmann invariant#1134wock9000 wants to merge 1 commit into
wock9000 wants to merge 1 commit into
Conversation
Prove `‖Δ₃‖ ≤ 1` by bridging Braket's `dot` product to the `EuclideanSpace ℂ d` inner product and applying `norm_inner_le_norm`. New results: - `Braket.norm_dot_le_one`: `‖⟨ψ₁|ψ₂⟩‖ ≤ 1` for normalized states - `norm_bargmannInvariantThree_le_one`: `‖Δ₃‖ ≤ 1` Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
fb81dcd to
b872b62
Compare
|
|
||
| omit [DecidableEq d] in | ||
| /-- The bra-ket product of normalized states has norm at most 1 (Cauchy-Schwarz). -/ | ||
| lemma Braket.norm_dot_le_one (ψ₁ ψ₂ : Ket d) : ‖〈ψ₁‖ψ₂〉‖ ≤ 1 := by |
Member
There was a problem hiding this comment.
This should be in the BraKet file
Member
There was a problem hiding this comment.
Along with all the private results above.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Braket.norm_dot_le_one: the bra-ket product of normalized states satisfies‖⟨ψ₁|ψ₂⟩‖ ≤ 1, proved via Cauchy-Schwarznorm_bargmannInvariantThree_le_one: the Bargmann invariant satisfies‖Δ₃‖ ≤ 1, as a product of three unit-bounded factorsApproach
The proof connects
Braket.dotto theEuclideanSpace ℂ dinner product via private helpers, then applies Mathlib'snorm_inner_le_norm(Cauchy-Schwarz on unit vectors). The Bargmann bound follows by factoring‖a · b · c‖ = ‖a‖ · ‖b‖ · ‖c‖and bounding each factor.The
EuclideanSpacebridge uses three private definitions (ketToEuclidean,ketToEuclidean_norm,dot_eq_euclidean_inner) that are internal to this file and do not affect the public API.Motivation
The norm bound is needed for connecting the Bargmann invariant to the solid angle on the Bloch sphere (Pancharatnam's theorem), where
|Δ₃| = cos(Ω/4)requires|Δ₃| ≤ 1.Build
Rebased onto master (includes #1133). Zero warnings, zero errors on
lake build QuantumInfo.Finite.GeometricPhase.BargmannInvariant.🤖 Generated with Claude Code