Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions Mathlib/Topology/FiberBundle/Trivialization.lean
Original file line number Diff line number Diff line change
Expand Up @@ -592,6 +592,19 @@ 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

/-- The inverse of a trivialization is continuous at any point in the target. -/
theorem continuousAt_symm {p : B × F} (hp : p ∈ e.target) : ContinuousAt e.symm p :=
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I was thinking of OpenPartialHomeomorph.continuousAt_symm instead --- that will also apply inside Homotopy/Lifting. (And doing that within this PR is fine with me.)

e.continuousOn_symm.continuousAt (e.open_target.mem_nhds hp)

/-- 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 (fun x ↦ e.symm (x, v)) b :=
(e.continuousAt_symm (e.mem_target.mpr hb)).comp (by fun_prop)

/-- For fixed `v ∈ F`, `x ↦ e.symm (x,v)` is continuous on `e.baseSet`. -/
theorem continuousOn_symm_prodMk_left {v : F} : ContinuousOn (fun x ↦ e.symm (x, v)) e.baseSet :=
fun _ hb ↦ (e.continuousAt_symm_prodMk_left hb).continuousWithinAt

/-- Pre-composition of a `Bundle.Trivialization` and a `Homeomorph`. -/
protected def compHomeomorph {Z' : Type*} [TopologicalSpace Z'] (h : Z' ≃ₜ Z) :
Trivialization F (proj ∘ h) where
Expand Down
Loading