-
Notifications
You must be signed in to change notification settings - Fork 1.2k
feat(Topology/FiberBundle): continuousAt_symm_prodMk_left
#38020
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
base: master
Are you sure you want to change the base?
Changes from all commits
6d439df
1b08856
c3aef65
a7cc26b
b1250be
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -592,6 +592,17 @@ theorem continuousAt_proj (ex : x ∈ e.source) : ContinuousAt proj x := | |||||||||||
| theorem continuousOn_proj : ContinuousOn proj e.source := | ||||||||||||
| continuousOn_of_forall_continuousAt fun _ ↦ e.continuousAt_proj | ||||||||||||
|
|
||||||||||||
| /-- For fixed `v ∈ F`, `x ↦ e.symm (x,v)` is continuous at any point in the base set -/ | ||||||||||||
| theorem continuousAt_symm_prodMk_left {b : B} {v : F} (hb : b ∈ e.baseSet) : | ||||||||||||
| ContinuousAt (e.symm ∘ (·, v)) b := | ||||||||||||
| ContinuousAt.comp (e.continuousOn_symm.continuousAt | ||||||||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can you extract |
||||||||||||
| (e.open_target.mem_nhds (e.mem_target.mpr hb))) (continuousAt_id.prodMk continuousAt_const) | ||||||||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Two more small golfs:
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Actually, I wonder if |
||||||||||||
|
|
||||||||||||
| /-- For fixed `v ∈ F`, `x ↦ e.symm (x,v)` is continuous on `e.baseSet` -/ | ||||||||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||
| theorem continuousOn_symm_prodMk_left {v : F} : | ||||||||||||
| ContinuousOn (e.symm ∘ (·, v)) e.baseSet := | ||||||||||||
| fun _ hb => (e.continuousAt_symm_prodMk_left hb).continuousWithinAt | ||||||||||||
|
Comment on lines
+602
to
+604
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Minor reformatting, might be a matter of taste:
Suggested change
|
||||||||||||
|
|
||||||||||||
| /-- Pre-composition of a `Bundle.Trivialization` and a `Homeomorph`. -/ | ||||||||||||
| protected def compHomeomorph {Z' : Type*} [TopologicalSpace Z'] (h : Z' ≃ₜ Z) : | ||||||||||||
| Trivialization F (proj ∘ h) where | ||||||||||||
|
|
||||||||||||
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.