-
Notifications
You must be signed in to change notification settings - Fork 382
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Merged by Bors] - feat: define the weak operator topology #14177
Conversation
PR summary a156413ac6Import changes for modified filesNo significant changes to the import graph Import changes for all files
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a first pass. I may have more thoughts about simplifying the proof of the hasBasis
theorem later. This mostly looks really nice though, thanks!
Co-authored-by: Jireh Loreaux <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @j-loreaux ! Regarding the HasBasis
proof, note that I mostly cribbed it from LinearMap.hasBasis_weakBilin
; if you have ideas to simplify it, they probably apply there as well!
I think this was a problem at one point, but I don't think it is any longer. I believe we have resurrected the Lean 3 behavior where the one declared later has priority, so in this case, the inner product version. You could test it though. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If you want, you can save completeness for a future PR.
bors d+
✌️ dupuisf can now approve this pull request. To approve and merge a pull request, simply reply with |
Co-authored-by: Jireh Loreaux <[email protected]>
bors r+ |
This PR defines the [weak operator topology](https://en.wikipedia.org/wiki/Weak_operator_topology) on maps between normed spaces and proves some of its basic properties. It creates a type copy of `E →L[𝕜] F` endowed with the WOT rather than the norm topology. Along the way, we define several lemmas that are useful for proving properties of a topology that is induced by a bundled hom. Note: I've defined the global notation `E →WOT[𝕜] F` for the type copy; I don't think this is likely to collide with anything else, but I can make it scoped if this is deemed preferable. Co-authored-by: Jireh Loreaux <[email protected]> Co-authored-by: Frédéric Dupuis <[email protected]>
Pull request successfully merged into master. Build succeeded: |
This PR defines the weak operator topology on maps between normed spaces and proves some of its basic properties. It creates a type copy of
E →L[𝕜] F
endowed with the WOT rather than the norm topology.Along the way, we define several lemmas that are useful for proving properties of a topology that is induced by a bundled hom.
Note: I've defined the global notation
E →WOT[𝕜] F
for the type copy; I don't think this is likely to collide with anything else, but I can make it scoped if this is deemed preferable.Co-authored-by: Jireh Loreaux [email protected]