Skip to content
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

Closed
wants to merge 17 commits into from

Conversation

dupuisf
Copy link
Contributor

@dupuisf dupuisf commented Jun 27, 2024

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]


Open in Gitpod

@dupuisf dupuisf added awaiting-review awaiting-CI t-analysis Analysis (normed *, calculus) labels Jun 27, 2024
Copy link

github-actions bot commented Jun 27, 2024

PR summary a156413ac6

Import changes for modified files

No significant changes to the import graph

Import changes for all files
Files Import difference
Mathlib.Analysis.NormedSpace.WeakOperatorTopology 1512
Mathlib.Analysis.InnerProductSpace.WeakOperatorTopology 1558

Declarations diff

+ ContinuousInv.induced
+ ContinuousLinearMap.continuous_toWOT
+ ContinuousLinearMap.toWOTCLM
+ ContinuousLinearMapWOT
+ ContinuousMul.induced
+ ContinuousSMul.induced
+ _root_.ContinuousLinearMap.toWOT
+ _root_.ContinuousLinearMap.toWOT_apply
+ add_apply
+ basisSets_mem_nhds
+ continuous_dual_apply
+ continuous_inducingFn
+ continuous_of_dual_apply_continuous
+ embedding_inducingFn
+ ext
+ ext_dual
+ ext_dual_iff
+ ext_iff
+ ext_inner
+ ext_inner_iff
+ hasBasis_seminorms
+ inducingFn
+ instAddCommGroup
+ instContinuousAdd
+ instContinuousLinearMapClass
+ instContinuousNeg
+ instContinuousSMul
+ instFunLike
+ instLocallyConvexSpace
+ instModule
+ instT3Space
+ instTopologicalAddGroup
+ instTopologicalSpace
+ instUniformAddGroup
+ instUniformSpace
+ le_nhds_iff_forall_dual_apply_le_nhds
+ le_nhds_iff_forall_inner_apply_le_nhds
+ neg_apply
+ seminorm
+ seminormFamily
+ smul_apply
+ sub_apply
+ tendsto_iff_forall_dual_apply_tendsto
+ tendsto_iff_forall_inner_apply_tendsto
+ withSeminorms
+ zero_apply

You can run this locally as follows
## summary with just the declaration names:
./scripts/declarations_diff.sh <optional_commit>

## more verbose report:
./scripts/declarations_diff.sh long <optional_commit>

@dupuisf dupuisf added WIP Work in progress and removed awaiting-review labels Jun 28, 2024
@dupuisf dupuisf added awaiting-review and removed WIP Work in progress labels Jun 28, 2024
@dupuisf dupuisf added WIP Work in progress and removed awaiting-review labels Jun 30, 2024
@dupuisf dupuisf added awaiting-review and removed WIP Work in progress labels Jun 30, 2024
Copy link
Collaborator

@j-loreaux j-loreaux left a 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!

@j-loreaux j-loreaux added the awaiting-author A reviewer has asked the author a question or requested changes label Jul 16, 2024
@JonBannon JonBannon self-requested a review July 16, 2024 19:08
Copy link
Contributor Author

@dupuisf dupuisf left a 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!

@dupuisf dupuisf removed the awaiting-author A reviewer has asked the author a question or requested changes label Jul 17, 2024
@j-loreaux
Copy link
Collaborator

Does ext behave well where there are competing ext lemmas? If we have both this and ext_dual_iff.mpr tagged as ext, they would both apply in the Hilbert space case.

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.

@j-loreaux j-loreaux added the awaiting-author A reviewer has asked the author a question or requested changes label Jul 17, 2024
@leanprover-community-mathlib4-bot leanprover-community-mathlib4-bot added the merge-conflict The PR has a merge conflict with master, and needs manual merging. (this label is managed by a bot) label Jul 19, 2024
@leanprover-community-mathlib4-bot leanprover-community-mathlib4-bot added merge-conflict The PR has a merge conflict with master, and needs manual merging. (this label is managed by a bot) and removed merge-conflict The PR has a merge conflict with master, and needs manual merging. (this label is managed by a bot) labels Jul 19, 2024
@leanprover-community-mathlib4-bot leanprover-community-mathlib4-bot removed the merge-conflict The PR has a merge conflict with master, and needs manual merging. (this label is managed by a bot) label Jul 19, 2024
@dupuisf dupuisf removed the awaiting-author A reviewer has asked the author a question or requested changes label Jul 19, 2024
@kim-em kim-em requested a review from j-loreaux July 20, 2024 19:06
Copy link
Collaborator

@j-loreaux j-loreaux left a 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+

@mathlib-bors
Copy link
Contributor

mathlib-bors bot commented Jul 20, 2024

✌️ dupuisf can now approve this pull request. To approve and merge a pull request, simply reply with bors r+. More detailed instructions are available here.

@dupuisf
Copy link
Contributor Author

dupuisf commented Jul 21, 2024

bors r+

@github-actions github-actions bot added the ready-to-merge This PR has been sent to bors. label Jul 21, 2024
mathlib-bors bot pushed a commit that referenced this pull request Jul 21, 2024
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]>
@mathlib-bors
Copy link
Contributor

mathlib-bors bot commented Jul 21, 2024

Pull request successfully merged into master.

Build succeeded:

@mathlib-bors mathlib-bors bot changed the title feat: define the weak operator topology [Merged by Bors] - feat: define the weak operator topology Jul 21, 2024
@mathlib-bors mathlib-bors bot closed this Jul 21, 2024
@mathlib-bors mathlib-bors bot deleted the dupuisf/wot_def branch July 21, 2024 01:55
@adomani adomani mentioned this pull request Aug 1, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
delegated ready-to-merge This PR has been sent to bors. t-analysis Analysis (normed *, calculus)
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants