feat(QuantumMechanics): the basic criterion of essential self-adjoint…#1432
Conversation
…ness Add §D to SpectralTheory/Symmetric.lean: `IsSymmetric.closure_sub_smul_surjective` for symmetric, densely-defined `A` and non-real `z`, density of the range of `A - z • 1` upgrades to surjectivity of `A.closure - z • 1` and `IsEssentiallySelfAdjoint.of_dense_range_add_sub`, the basic criterion (Reed–Simon VIII.3): a symmetric, densely-defined operator with `A ± i` of dense range is essentially self-adjoint. Add `IsSymmetric.closure` to Unbounded.lean: the closure of a symmetric densely-defined operator is symmetric. Downstream, this powers the essential self-adjointness of the momentum operator via density of its deficiency ranges in Fourier space. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
|
Thank you for this PR, which will now be reviewed. If submitting to ./Physlib or ./QuantumInfo, please see our review guidelines if you are not familiar with the process. You should expect a back and forth with a reviewer before your PR is merged. See also that link for how to add appropriate labels to your PR. The PR will also go through a number of automated checks. You can learn more about these here, including how to run them locally. If you are submitting to ./PhyslibAlpha there will be a lighter review process, though your PR must still pass the automated checks. If you want to bring attention to this PR, please write a message on this thread of the Lean Zulip. Important: If a reviewer adds an |
There was a problem hiding this comment.
Thanks, nice to have this e.s.a. theorem!
I've left some comments on closure_sub_smul_surjective to help you get a feel for how to apply a self-critical eye when stating lemmas and their hypotheses. Practice and becoming more familiar with the library over time will only make this easier :)
In this case the lemmas are improved by phrasing things in terms of submodules of H because we are dealing with linear maps rather than general functions.
edit: I should clarify that the "foo" version of IsSymmetric.closure_sub_smul_surjective that I land on below is mathematically identical to how you phrased things (after the hz : z ∈ T.regularityDomain change) thanks to LinearMap.range_eq_top and Submodule.dense_iff_topologicalClosure_eq_top but is a cleaner digitization because it doesn't involve coersions to sets or functions (which will help down the road).
In the e.s.a. proof you use IsSelfAdjoint.of_surjective_add_sub which I think would benefit from receiving the same treatment. Here's my suggest rephrasing:
lemma IsSymmetric.isSelfAdjoint_of_range_eq_top [CompleteSpace H]
(hsym : T.IsSymmetric) (hdense : T.HasDenseDomain)
(hadd : (T + I • 1).toFun.range = ⊤) (hsub : (T - I • 1).toFun.range = ⊤) :
IsSelfAdjoint T := by
sorryIt might make sense to include this change in this PR so that it gels with the e.s.a. proof; let me know what you think.
Stated the criteria in the submodule lattice instead of sets/functions. IsSelfAdjoint.of_surjective_add_sub becomes IsSymmetric.isSelfAdjoint_of_range_eq_top (range = ⊤ hypotheses); the e.s.a. criterion becomes IsSymmetric.isEssentiallySelfAdjoint_of_ defectNumber_eq_zero (hsym is needed for correctness). Droped the subsumed closure_sub_smul_surjective, folded section D into the IsSymmetric namespace, and move IsSymmetric.closure into C.1 by unbundling adjoint_closure_eq_adjoint from IsUnbounded. Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
…eq_top criterion Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
|
-awaiting-author |
|
Hi @adambornemann-glitch, creating a carbon copy of |
Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
|
That's on me, I couldn't see the of_le route and should have asked follow ups instead of just pushing again. I'm not sure what I was thinking honestly (I've been kinda soupy all day). It's fixed properly now: the duplicate is removed, IsUnbounded.adjoint_closure_eq_adjoint is restored, and IsSymmetric.closure sits at the end of the IsSymmetric section. Lesson learned. Question for you: the sign identity T + I • 1 = T − (−I) • 1 now appears inline in two proofs, would you like it factored into Mathematics/LinearPMap.lean, or left as is? |
I realize now that it doesn't work -- I was too quick and thought the inequality
I think to keep this PR focused it's fine to leave it how it is. In the (near) future we should add |
gloges
left a comment
There was a problem hiding this comment.
Thanks for working out these changes - looks good!
|
It's on my list of things to take a crack out now, I'll still leave this PR as is while I'm working on it. 🫡 |
…ness
Add §D to SpectralTheory/Symmetric.lean:
IsSymmetric.closure_sub_smul_surjectivefor symmetric, densely-definedAand non-realz, density of the range ofA - z • 1upgrades to surjectivity ofA.closure - z • 1andIsEssentiallySelfAdjoint.of_dense_range_add_sub(the basic criterion).Downstream, this powers the essential self-adjointness of the momentum operator via density of its deficiency ranges in Fourier space.