fact stringlengths 6 14.3k | statement stringlengths 1 2.88k | proof stringlengths 0 13.9k | type stringclasses 12
values | symbolic_name stringlengths 0 131 | library stringclasses 417
values | filename stringlengths 17 80 | imports listlengths 0 16 | deps listlengths 0 64 | docstring stringlengths 8 10.2k ⌀ | line_start int64 6 4.24k | line_end int64 7 4.25k | has_proof bool 2
classes | source_url stringclasses 1
value | commit stringclasses 1
value |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
continuous_linear_equiv_at (e : trivialization F (π F E)) [e.is_linear R] (b : B)
(hb : b ∈ e.base_set) : E b ≃L[R] F :=
{ to_fun := λ y, (e ⟨b, y⟩).2, -- given explicitly to help `simps`
inv_fun := e.symm b, -- given explicitly to help `simps`
continuous_to_fun := continuous_snd.comp (e.continuous_on.comp_contin... | continuous_linear_equiv_at (e : trivialization F (π F E)) [e.is_linear R] (b : B)
(hb : b ∈ e.base_set) : E b ≃L[R] F | { to_fun := λ y, (e ⟨b, y⟩).2, -- given explicitly to help `simps`
inv_fun := e.symm b, -- given explicitly to help `simps`
continuous_to_fun := continuous_snd.comp (e.continuous_on.comp_continuous
(fiber_bundle.total_space_mk_inducing F E b).continuous
(λ x, e.mem_source.mpr hb)),
continuous_inv_fun := (... | def | trivialization.continuous_linear_equiv_at | topology.vector_bundle | src/topology/vector_bundle/basic.lean | [
"analysis.normed_space.bounded_linear_maps",
"topology.fiber_bundle.basic"
] | [
"continuous",
"inv_fun",
"trivialization"
] | In a vector bundle, a trivialization in the fiber (which is a priori only linear)
is in fact a continuous linear equiv between the fibers and the model fiber. | 435 | 444 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
coe_continuous_linear_equiv_at_eq (e : trivialization F (π F E)) [e.is_linear R] {b : B}
(hb : b ∈ e.base_set) :
(e.continuous_linear_equiv_at R b hb : E b → F) = e.continuous_linear_map_at R b :=
(e.coe_linear_map_at_of_mem hb).symm | coe_continuous_linear_equiv_at_eq (e : trivialization F (π F E)) [e.is_linear R] {b : B}
(hb : b ∈ e.base_set) :
(e.continuous_linear_equiv_at R b hb : E b → F) = e.continuous_linear_map_at R b | (e.coe_linear_map_at_of_mem hb).symm | lemma | trivialization.coe_continuous_linear_equiv_at_eq | topology.vector_bundle | src/topology/vector_bundle/basic.lean | [
"analysis.normed_space.bounded_linear_maps",
"topology.fiber_bundle.basic"
] | [
"trivialization"
] | null | 448 | 451 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
symm_continuous_linear_equiv_at_eq (e : trivialization F (π F E)) [e.is_linear R] {b : B}
(hb : b ∈ e.base_set) :
((e.continuous_linear_equiv_at R b hb).symm : F → E b) = e.symmL R b :=
rfl | symm_continuous_linear_equiv_at_eq (e : trivialization F (π F E)) [e.is_linear R] {b : B}
(hb : b ∈ e.base_set) :
((e.continuous_linear_equiv_at R b hb).symm : F → E b) = e.symmL R b | rfl | lemma | trivialization.symm_continuous_linear_equiv_at_eq | topology.vector_bundle | src/topology/vector_bundle/basic.lean | [
"analysis.normed_space.bounded_linear_maps",
"topology.fiber_bundle.basic"
] | [
"trivialization"
] | null | 453 | 456 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
continuous_linear_equiv_at_apply' (e : trivialization F (π F E)) [e.is_linear R]
(x : total_space F E) (hx : x ∈ e.source) :
e.continuous_linear_equiv_at R x.proj (e.mem_source.1 hx) x.2 = (e x).2 := by { cases x, refl } | continuous_linear_equiv_at_apply' (e : trivialization F (π F E)) [e.is_linear R]
(x : total_space F E) (hx : x ∈ e.source) :
e.continuous_linear_equiv_at R x.proj (e.mem_source.1 hx) x.2 = (e x).2 | by { cases x, refl } | lemma | trivialization.continuous_linear_equiv_at_apply' | topology.vector_bundle | src/topology/vector_bundle/basic.lean | [
"analysis.normed_space.bounded_linear_maps",
"topology.fiber_bundle.basic"
] | [
"trivialization"
] | null | 458 | 460 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
apply_eq_prod_continuous_linear_equiv_at (e : trivialization F (π F E)) [e.is_linear R]
(b : B) (hb : b ∈ e.base_set) (z : E b) :
e ⟨b, z⟩ = (b, e.continuous_linear_equiv_at R b hb z) :=
begin
ext,
{ refine e.coe_fst _,
rw e.source_eq,
exact hb },
{ simp only [coe_coe, continuous_linear_equiv_at_apply... | apply_eq_prod_continuous_linear_equiv_at (e : trivialization F (π F E)) [e.is_linear R]
(b : B) (hb : b ∈ e.base_set) (z : E b) :
e ⟨b, z⟩ = (b, e.continuous_linear_equiv_at R b hb z) | begin
ext,
{ refine e.coe_fst _,
rw e.source_eq,
exact hb },
{ simp only [coe_coe, continuous_linear_equiv_at_apply] }
end | lemma | trivialization.apply_eq_prod_continuous_linear_equiv_at | topology.vector_bundle | src/topology/vector_bundle/basic.lean | [
"analysis.normed_space.bounded_linear_maps",
"topology.fiber_bundle.basic"
] | [
"coe_coe",
"trivialization"
] | null | 464 | 473 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
zero_section (e : trivialization F (π F E)) [e.is_linear R]
{x : B} (hx : x ∈ e.base_set) : e (zero_section F E x) = (x, 0) :=
by simp_rw [zero_section, e.apply_eq_prod_continuous_linear_equiv_at R x hx 0,
map_zero] | zero_section (e : trivialization F (π F E)) [e.is_linear R]
{x : B} (hx : x ∈ e.base_set) : e (zero_section F E x) = (x, 0) | by simp_rw [zero_section, e.apply_eq_prod_continuous_linear_equiv_at R x hx 0,
map_zero] | lemma | trivialization.zero_section | topology.vector_bundle | src/topology/vector_bundle/basic.lean | [
"analysis.normed_space.bounded_linear_maps",
"topology.fiber_bundle.basic"
] | [
"trivialization"
] | null | 475 | 478 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
symm_apply_eq_mk_continuous_linear_equiv_at_symm (e : trivialization F (π F E))
[e.is_linear R] (b : B) (hb : b ∈ e.base_set) (z : F) :
e.to_local_homeomorph.symm ⟨b, z⟩
= ⟨b, (e.continuous_linear_equiv_at R b hb).symm z⟩ :=
begin
have h : (b, z) ∈ e.target,
{ rw e.target_eq,
exact ⟨hb, mem_univ _⟩ },
a... | symm_apply_eq_mk_continuous_linear_equiv_at_symm (e : trivialization F (π F E))
[e.is_linear R] (b : B) (hb : b ∈ e.base_set) (z : F) :
e.to_local_homeomorph.symm ⟨b, z⟩
= ⟨b, (e.continuous_linear_equiv_at R b hb).symm z⟩ | begin
have h : (b, z) ∈ e.target,
{ rw e.target_eq,
exact ⟨hb, mem_univ _⟩ },
apply e.inj_on (e.map_target h),
{ simp only [e.source_eq, hb, mem_preimage] },
simp_rw [e.right_inv h, coe_coe, e.apply_eq_prod_continuous_linear_equiv_at R b hb,
continuous_linear_equiv.apply_symm_apply],
end | lemma | trivialization.symm_apply_eq_mk_continuous_linear_equiv_at_symm | topology.vector_bundle | src/topology/vector_bundle/basic.lean | [
"analysis.normed_space.bounded_linear_maps",
"topology.fiber_bundle.basic"
] | [
"coe_coe",
"continuous_linear_equiv.apply_symm_apply",
"trivialization"
] | null | 482 | 494 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
comp_continuous_linear_equiv_at_eq_coord_change (e e' : trivialization F (π F E))
[e.is_linear R] [e'.is_linear R] {b : B} (hb : b ∈ e.base_set ∩ e'.base_set) :
(e.continuous_linear_equiv_at R b hb.1).symm.trans (e'.continuous_linear_equiv_at R b hb.2)
= coord_changeL R e e' b :=
by { ext v, rw [coord_changeL_app... | comp_continuous_linear_equiv_at_eq_coord_change (e e' : trivialization F (π F E))
[e.is_linear R] [e'.is_linear R] {b : B} (hb : b ∈ e.base_set ∩ e'.base_set) :
(e.continuous_linear_equiv_at R b hb.1).symm.trans (e'.continuous_linear_equiv_at R b hb.2)
= coord_changeL R e e' b | by { ext v, rw [coord_changeL_apply e e' hb], refl } | lemma | trivialization.comp_continuous_linear_equiv_at_eq_coord_change | topology.vector_bundle | src/topology/vector_bundle/basic.lean | [
"analysis.normed_space.bounded_linear_maps",
"topology.fiber_bundle.basic"
] | [
"trivialization"
] | null | 496 | 500 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
vector_bundle_core (ι : Type*) :=
(base_set : ι → set B)
(is_open_base_set : ∀ i, is_open (base_set i))
(index_at : B → ι)
(mem_base_set_at : ∀ x, x ∈ base_set (index_at x))
(coord_change : ι → ι → B → (F →L[R] F))
(coord_change_self : ∀ i, ∀ x ∈ base_set i, ∀ v, coord_change i i x v = v)
(con... | vector_bundle_core (ι : Type*) | (base_set : ι → set B)
(is_open_base_set : ∀ i, is_open (base_set i))
(index_at : B → ι)
(mem_base_set_at : ∀ x, x ∈ base_set (index_at x))
(coord_change : ι → ι → B → (F →L[R] F))
(coord_change_self : ∀ i, ∀ x ∈ base_set i, ∀ v, coord_change i i x v = v)
(continuous_on_coord_change : ∀ i j, c... | structure | vector_bundle_core | topology.vector_bundle | src/topology/vector_bundle/basic.lean | [
"analysis.normed_space.bounded_linear_maps",
"topology.fiber_bundle.basic"
] | [
"continuous_on",
"continuous_on_coord_change",
"is_open"
] | Analogous construction of `fiber_bundle_core` for vector bundles. This
construction gives a way to construct vector bundles from a structure registering how
trivialization changes act on fibers. | 513 | 522 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
trivial_vector_bundle_core (ι : Type*) [inhabited ι] :
vector_bundle_core R B F ι :=
{ base_set := λ ι, univ,
is_open_base_set := λ i, is_open_univ,
index_at := default,
mem_base_set_at := λ x, mem_univ x,
coord_change := λ i j x, continuous_linear_map.id R F,
coord_change_self := λ i x hx v, rfl,
coord_c... | trivial_vector_bundle_core (ι : Type*) [inhabited ι] :
vector_bundle_core R B F ι | { base_set := λ ι, univ,
is_open_base_set := λ i, is_open_univ,
index_at := default,
mem_base_set_at := λ x, mem_univ x,
coord_change := λ i j x, continuous_linear_map.id R F,
coord_change_self := λ i x hx v, rfl,
coord_change_comp := λ i j k x hx v, rfl,
continuous_on_coord_change := λ i j, continuous_on... | def | trivial_vector_bundle_core | topology.vector_bundle | src/topology/vector_bundle/basic.lean | [
"analysis.normed_space.bounded_linear_maps",
"topology.fiber_bundle.basic"
] | [
"continuous_linear_map.id",
"continuous_on_const",
"continuous_on_coord_change",
"is_open_univ",
"vector_bundle_core"
] | The trivial vector bundle core, in which all the changes of coordinates are the
identity. | 526 | 535 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
(ι : Type*) [inhabited ι] : inhabited (vector_bundle_core R B F ι) :=
⟨trivial_vector_bundle_core R B F ι⟩ | (ι : Type*) [inhabited ι] : inhabited (vector_bundle_core R B F ι) | ⟨trivial_vector_bundle_core R B F ι⟩ | instance | topology.vector_bundle | src/topology/vector_bundle/basic.lean | [
"analysis.normed_space.bounded_linear_maps",
"topology.fiber_bundle.basic"
] | [
"vector_bundle_core"
] | null | 537 | 538 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 | |
to_fiber_bundle_core : fiber_bundle_core ι B F :=
{ coord_change := λ i j b, Z.coord_change i j b,
continuous_on_coord_change := λ i j, is_bounded_bilinear_map_apply.continuous.comp_continuous_on
((Z.continuous_on_coord_change i j).prod_map continuous_on_id),
..Z } | to_fiber_bundle_core : fiber_bundle_core ι B F | { coord_change := λ i j b, Z.coord_change i j b,
continuous_on_coord_change := λ i j, is_bounded_bilinear_map_apply.continuous.comp_continuous_on
((Z.continuous_on_coord_change i j).prod_map continuous_on_id),
..Z } | def | vector_bundle_core.to_fiber_bundle_core | topology.vector_bundle | src/topology/vector_bundle/basic.lean | [
"analysis.normed_space.bounded_linear_maps",
"topology.fiber_bundle.basic"
] | [
"continuous_on_coord_change",
"continuous_on_id",
"fiber_bundle_core",
"prod_map"
] | Natural identification to a `fiber_bundle_core`. | 545 | 549 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
to_fiber_bundle_core_coe : has_coe (vector_bundle_core R B F ι)
(fiber_bundle_core ι B F) := ⟨to_fiber_bundle_core⟩ | to_fiber_bundle_core_coe : has_coe (vector_bundle_core R B F ι)
(fiber_bundle_core ι B F) | ⟨to_fiber_bundle_core⟩ | instance | vector_bundle_core.to_fiber_bundle_core_coe | topology.vector_bundle | src/topology/vector_bundle/basic.lean | [
"analysis.normed_space.bounded_linear_maps",
"topology.fiber_bundle.basic"
] | [
"fiber_bundle_core",
"vector_bundle_core"
] | null | 551 | 552 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
coord_change_linear_comp (i j k : ι): ∀ x ∈ (Z.base_set i) ∩ (Z.base_set j) ∩ (Z.base_set k),
(Z.coord_change j k x).comp (Z.coord_change i j x) = Z.coord_change i k x :=
λ x hx, by { ext v, exact Z.coord_change_comp i j k x hx v } | coord_change_linear_comp (i j k : ι): ∀ x ∈ (Z.base_set i) ∩ (Z.base_set j) ∩ (Z.base_set k),
(Z.coord_change j k x).comp (Z.coord_change i j x) = Z.coord_change i k x | λ x hx, by { ext v, exact Z.coord_change_comp i j k x hx v } | lemma | vector_bundle_core.coord_change_linear_comp | topology.vector_bundle | src/topology/vector_bundle/basic.lean | [
"analysis.normed_space.bounded_linear_maps",
"topology.fiber_bundle.basic"
] | [] | null | 556 | 558 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
index := ι | index | ι | def | vector_bundle_core.index | topology.vector_bundle | src/topology/vector_bundle/basic.lean | [
"analysis.normed_space.bounded_linear_maps",
"topology.fiber_bundle.basic"
] | [] | The index set of a vector bundle core, as a convenience function for dot notation | 561 | 562 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
base := B | base | B | def | vector_bundle_core.base | topology.vector_bundle | src/topology/vector_bundle/basic.lean | [
"analysis.normed_space.bounded_linear_maps",
"topology.fiber_bundle.basic"
] | [] | The base space of a vector bundle core, as a convenience function for dot notation | 565 | 566 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
fiber : B → Type* := Z.to_fiber_bundle_core.fiber | fiber : B → Type* | Z.to_fiber_bundle_core.fiber | def | vector_bundle_core.fiber | topology.vector_bundle | src/topology/vector_bundle/basic.lean | [
"analysis.normed_space.bounded_linear_maps",
"topology.fiber_bundle.basic"
] | [] | The fiber of a vector bundle core, as a convenience function for dot notation and
typeclass inference | 570 | 571 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
topological_space_fiber (x : B) : topological_space (Z.fiber x) :=
by delta_instance vector_bundle_core.fiber | topological_space_fiber (x : B) : topological_space (Z.fiber x) | by delta_instance vector_bundle_core.fiber | instance | vector_bundle_core.topological_space_fiber | topology.vector_bundle | src/topology/vector_bundle/basic.lean | [
"analysis.normed_space.bounded_linear_maps",
"topology.fiber_bundle.basic"
] | [
"topological_space",
"vector_bundle_core.fiber"
] | null | 573 | 574 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
add_comm_monoid_fiber : ∀ (x : B), add_comm_monoid (Z.fiber x) :=
by dsimp [vector_bundle_core.fiber]; delta_instance fiber_bundle_core.fiber | add_comm_monoid_fiber : ∀ (x : B), add_comm_monoid (Z.fiber x) | by dsimp [vector_bundle_core.fiber]; delta_instance fiber_bundle_core.fiber | instance | vector_bundle_core.add_comm_monoid_fiber | topology.vector_bundle | src/topology/vector_bundle/basic.lean | [
"analysis.normed_space.bounded_linear_maps",
"topology.fiber_bundle.basic"
] | [
"add_comm_monoid",
"fiber_bundle_core.fiber",
"vector_bundle_core.fiber"
] | null | 575 | 576 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
module_fiber : ∀ (x : B), module R (Z.fiber x) :=
by dsimp [vector_bundle_core.fiber]; delta_instance fiber_bundle_core.fiber | module_fiber : ∀ (x : B), module R (Z.fiber x) | by dsimp [vector_bundle_core.fiber]; delta_instance fiber_bundle_core.fiber | instance | vector_bundle_core.module_fiber | topology.vector_bundle | src/topology/vector_bundle/basic.lean | [
"analysis.normed_space.bounded_linear_maps",
"topology.fiber_bundle.basic"
] | [
"fiber_bundle_core.fiber",
"module",
"vector_bundle_core.fiber"
] | null | 577 | 578 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
add_comm_group_fiber [add_comm_group F] : ∀ (x : B), add_comm_group (Z.fiber x) :=
by dsimp [vector_bundle_core.fiber]; delta_instance fiber_bundle_core.fiber | add_comm_group_fiber [add_comm_group F] : ∀ (x : B), add_comm_group (Z.fiber x) | by dsimp [vector_bundle_core.fiber]; delta_instance fiber_bundle_core.fiber | instance | vector_bundle_core.add_comm_group_fiber | topology.vector_bundle | src/topology/vector_bundle/basic.lean | [
"analysis.normed_space.bounded_linear_maps",
"topology.fiber_bundle.basic"
] | [
"add_comm_group",
"fiber_bundle_core.fiber",
"vector_bundle_core.fiber"
] | null | 579 | 580 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
proj : total_space F Z.fiber → B := total_space.proj | proj : total_space F Z.fiber → B | total_space.proj | def | vector_bundle_core.proj | topology.vector_bundle | src/topology/vector_bundle/basic.lean | [
"analysis.normed_space.bounded_linear_maps",
"topology.fiber_bundle.basic"
] | [] | The projection from the total space of a fiber bundle core, on its base. | 583 | 583 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
total_space := bundle.total_space F Z.fiber | total_space | bundle.total_space F Z.fiber | def | vector_bundle_core.total_space | topology.vector_bundle | src/topology/vector_bundle/basic.lean | [
"analysis.normed_space.bounded_linear_maps",
"topology.fiber_bundle.basic"
] | [
"bundle.total_space"
] | The total space of the vector bundle, as a convenience function for dot notation.
It is by definition equal to `bundle.total_space Z.fiber`. | 587 | 588 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
triv_change (i j : ι) : local_homeomorph (B × F) (B × F) :=
fiber_bundle_core.triv_change ↑Z i j | triv_change (i j : ι) : local_homeomorph (B × F) (B × F) | fiber_bundle_core.triv_change ↑Z i j | def | vector_bundle_core.triv_change | topology.vector_bundle | src/topology/vector_bundle/basic.lean | [
"analysis.normed_space.bounded_linear_maps",
"topology.fiber_bundle.basic"
] | [
"fiber_bundle_core.triv_change",
"local_homeomorph"
] | Local homeomorphism version of the trivialization change. | 591 | 592 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
mem_triv_change_source (i j : ι) (p : B × F) :
p ∈ (Z.triv_change i j).source ↔ p.1 ∈ Z.base_set i ∩ Z.base_set j :=
fiber_bundle_core.mem_triv_change_source ↑Z i j p | mem_triv_change_source (i j : ι) (p : B × F) :
p ∈ (Z.triv_change i j).source ↔ p.1 ∈ Z.base_set i ∩ Z.base_set j | fiber_bundle_core.mem_triv_change_source ↑Z i j p | lemma | vector_bundle_core.mem_triv_change_source | topology.vector_bundle | src/topology/vector_bundle/basic.lean | [
"analysis.normed_space.bounded_linear_maps",
"topology.fiber_bundle.basic"
] | [
"fiber_bundle_core.mem_triv_change_source"
] | null | 594 | 596 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
to_topological_space : topological_space Z.total_space :=
Z.to_fiber_bundle_core.to_topological_space | to_topological_space : topological_space Z.total_space | Z.to_fiber_bundle_core.to_topological_space | instance | vector_bundle_core.to_topological_space | topology.vector_bundle | src/topology/vector_bundle/basic.lean | [
"analysis.normed_space.bounded_linear_maps",
"topology.fiber_bundle.basic"
] | [
"topological_space"
] | Topological structure on the total space of a vector bundle created from core, designed so
that all the local trivialization are continuous. | 600 | 601 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
coe_coord_change (i j : ι) :
Z.to_fiber_bundle_core.coord_change i j b = Z.coord_change i j b := rfl | coe_coord_change (i j : ι) :
Z.to_fiber_bundle_core.coord_change i j b = Z.coord_change i j b | rfl | lemma | vector_bundle_core.coe_coord_change | topology.vector_bundle | src/topology/vector_bundle/basic.lean | [
"analysis.normed_space.bounded_linear_maps",
"topology.fiber_bundle.basic"
] | [] | null | 605 | 606 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
local_triv (i : ι) : trivialization F (π F Z.fiber) :=
by dsimp [vector_bundle_core.total_space, vector_bundle_core.fiber];
exact Z.to_fiber_bundle_core.local_triv i | local_triv (i : ι) : trivialization F (π F Z.fiber) | by dsimp [vector_bundle_core.total_space, vector_bundle_core.fiber];
exact Z.to_fiber_bundle_core.local_triv i | def | vector_bundle_core.local_triv | topology.vector_bundle | src/topology/vector_bundle/basic.lean | [
"analysis.normed_space.bounded_linear_maps",
"topology.fiber_bundle.basic"
] | [
"trivialization",
"vector_bundle_core.fiber",
"vector_bundle_core.total_space"
] | One of the standard local trivializations of a vector bundle constructed from core, taken by
considering this in particular as a fiber bundle constructed from core. | 610 | 612 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
local_triv.is_linear (i : ι) : (Z.local_triv i).is_linear R :=
{ linear := λ x hx, by dsimp [vector_bundle_core.local_triv]; exact
{ map_add := λ v w, by simp only [continuous_linear_map.map_add] with mfld_simps,
map_smul := λ r v, by simp only [continuous_linear_map.map_smul] with mfld_simps} } | local_triv.is_linear (i : ι) : (Z.local_triv i).is_linear R | { linear := λ x hx, by dsimp [vector_bundle_core.local_triv]; exact
{ map_add := λ v w, by simp only [continuous_linear_map.map_add] with mfld_simps,
map_smul := λ r v, by simp only [continuous_linear_map.map_smul] with mfld_simps} } | instance | vector_bundle_core.local_triv.is_linear | topology.vector_bundle | src/topology/vector_bundle/basic.lean | [
"analysis.normed_space.bounded_linear_maps",
"topology.fiber_bundle.basic"
] | [
"continuous_linear_map.map_add",
"continuous_linear_map.map_smul",
"vector_bundle_core.local_triv"
] | The standard local trivializations of a vector bundle constructed from core are linear. | 615 | 618 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
mem_local_triv_source (p : Z.total_space) :
p ∈ (Z.local_triv i).source ↔ p.1 ∈ Z.base_set i :=
by dsimp [vector_bundle_core.fiber]; exact iff.rfl | mem_local_triv_source (p : Z.total_space) :
p ∈ (Z.local_triv i).source ↔ p.1 ∈ Z.base_set i | by dsimp [vector_bundle_core.fiber]; exact iff.rfl | lemma | vector_bundle_core.mem_local_triv_source | topology.vector_bundle | src/topology/vector_bundle/basic.lean | [
"analysis.normed_space.bounded_linear_maps",
"topology.fiber_bundle.basic"
] | [
"vector_bundle_core.fiber"
] | null | 622 | 624 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
base_set_at : Z.base_set i = (Z.local_triv i).base_set := rfl | base_set_at : Z.base_set i = (Z.local_triv i).base_set | rfl | lemma | vector_bundle_core.base_set_at | topology.vector_bundle | src/topology/vector_bundle/basic.lean | [
"analysis.normed_space.bounded_linear_maps",
"topology.fiber_bundle.basic"
] | [] | null | 626 | 626 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
local_triv_apply (p : Z.total_space) :
(Z.local_triv i) p = ⟨p.1, Z.coord_change (Z.index_at p.1) i p.1 p.2⟩ := rfl | local_triv_apply (p : Z.total_space) :
(Z.local_triv i) p = ⟨p.1, Z.coord_change (Z.index_at p.1) i p.1 p.2⟩ | rfl | lemma | vector_bundle_core.local_triv_apply | topology.vector_bundle | src/topology/vector_bundle/basic.lean | [
"analysis.normed_space.bounded_linear_maps",
"topology.fiber_bundle.basic"
] | [] | null | 628 | 629 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
mem_local_triv_target (p : B × F) :
p ∈ (Z.local_triv i).target ↔ p.1 ∈ (Z.local_triv i).base_set :=
Z.to_fiber_bundle_core.mem_local_triv_target i p | mem_local_triv_target (p : B × F) :
p ∈ (Z.local_triv i).target ↔ p.1 ∈ (Z.local_triv i).base_set | Z.to_fiber_bundle_core.mem_local_triv_target i p | lemma | vector_bundle_core.mem_local_triv_target | topology.vector_bundle | src/topology/vector_bundle/basic.lean | [
"analysis.normed_space.bounded_linear_maps",
"topology.fiber_bundle.basic"
] | [] | null | 631 | 633 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
local_triv_symm_fst (p : B × F) :
(Z.local_triv i).to_local_homeomorph.symm p =
⟨p.1, Z.coord_change i (Z.index_at p.1) p.1 p.2⟩ := rfl | local_triv_symm_fst (p : B × F) :
(Z.local_triv i).to_local_homeomorph.symm p =
⟨p.1, Z.coord_change i (Z.index_at p.1) p.1 p.2⟩ | rfl | lemma | vector_bundle_core.local_triv_symm_fst | topology.vector_bundle | src/topology/vector_bundle/basic.lean | [
"analysis.normed_space.bounded_linear_maps",
"topology.fiber_bundle.basic"
] | [] | null | 635 | 637 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
local_triv_symm_apply {b : B} (hb : b ∈ Z.base_set i) (v : F) :
(Z.local_triv i).symm b v = Z.coord_change i (Z.index_at b) b v :=
by apply (Z.local_triv i).symm_apply hb v | local_triv_symm_apply {b : B} (hb : b ∈ Z.base_set i) (v : F) :
(Z.local_triv i).symm b v = Z.coord_change i (Z.index_at b) b v | by apply (Z.local_triv i).symm_apply hb v | lemma | vector_bundle_core.local_triv_symm_apply | topology.vector_bundle | src/topology/vector_bundle/basic.lean | [
"analysis.normed_space.bounded_linear_maps",
"topology.fiber_bundle.basic"
] | [] | null | 639 | 641 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
local_triv_coord_change_eq {b : B} (hb : b ∈ Z.base_set i ∩ Z.base_set j)
(v : F) :
(Z.local_triv i).coord_changeL R (Z.local_triv j) b v = Z.coord_change i j b v :=
begin
rw [trivialization.coord_changeL_apply', local_triv_symm_fst, local_triv_apply,
coord_change_comp],
exacts [⟨⟨hb.1, Z.mem_base_set_at b⟩... | local_triv_coord_change_eq {b : B} (hb : b ∈ Z.base_set i ∩ Z.base_set j)
(v : F) :
(Z.local_triv i).coord_changeL R (Z.local_triv j) b v = Z.coord_change i j b v | begin
rw [trivialization.coord_changeL_apply', local_triv_symm_fst, local_triv_apply,
coord_change_comp],
exacts [⟨⟨hb.1, Z.mem_base_set_at b⟩, hb.2⟩, hb]
end | lemma | vector_bundle_core.local_triv_coord_change_eq | topology.vector_bundle | src/topology/vector_bundle/basic.lean | [
"analysis.normed_space.bounded_linear_maps",
"topology.fiber_bundle.basic"
] | [
"trivialization.coord_changeL_apply'"
] | null | 643 | 650 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
local_triv_at (b : B) : trivialization F (π F Z.fiber) :=
Z.local_triv (Z.index_at b) | local_triv_at (b : B) : trivialization F (π F Z.fiber) | Z.local_triv (Z.index_at b) | def | vector_bundle_core.local_triv_at | topology.vector_bundle | src/topology/vector_bundle/basic.lean | [
"analysis.normed_space.bounded_linear_maps",
"topology.fiber_bundle.basic"
] | [
"trivialization"
] | Preferred local trivialization of a vector bundle constructed from core, at a given point, as
a bundle trivialization | 654 | 655 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
local_triv_at_def :
Z.local_triv (Z.index_at b) = Z.local_triv_at b := rfl | local_triv_at_def :
Z.local_triv (Z.index_at b) = Z.local_triv_at b | rfl | lemma | vector_bundle_core.local_triv_at_def | topology.vector_bundle | src/topology/vector_bundle/basic.lean | [
"analysis.normed_space.bounded_linear_maps",
"topology.fiber_bundle.basic"
] | [] | null | 657 | 658 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
mem_source_at : (⟨b, a⟩ : Z.total_space) ∈ (Z.local_triv_at b).source :=
by { rw [local_triv_at, mem_local_triv_source], exact Z.mem_base_set_at b } | mem_source_at : (⟨b, a⟩ : Z.total_space) ∈ (Z.local_triv_at b).source | by { rw [local_triv_at, mem_local_triv_source], exact Z.mem_base_set_at b } | lemma | vector_bundle_core.mem_source_at | topology.vector_bundle | src/topology/vector_bundle/basic.lean | [
"analysis.normed_space.bounded_linear_maps",
"topology.fiber_bundle.basic"
] | [] | null | 660 | 661 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
local_triv_at_apply (p : Z.total_space) :
((Z.local_triv_at p.1) p) = ⟨p.1, p.2⟩ :=
fiber_bundle_core.local_triv_at_apply Z p | local_triv_at_apply (p : Z.total_space) :
((Z.local_triv_at p.1) p) = ⟨p.1, p.2⟩ | fiber_bundle_core.local_triv_at_apply Z p | lemma | vector_bundle_core.local_triv_at_apply | topology.vector_bundle | src/topology/vector_bundle/basic.lean | [
"analysis.normed_space.bounded_linear_maps",
"topology.fiber_bundle.basic"
] | [
"fiber_bundle_core.local_triv_at_apply"
] | null | 663 | 665 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
local_triv_at_apply_mk (b : B) (a : F) :
((Z.local_triv_at b) ⟨b, a⟩) = ⟨b, a⟩ :=
Z.local_triv_at_apply _ | local_triv_at_apply_mk (b : B) (a : F) :
((Z.local_triv_at b) ⟨b, a⟩) = ⟨b, a⟩ | Z.local_triv_at_apply _ | lemma | vector_bundle_core.local_triv_at_apply_mk | topology.vector_bundle | src/topology/vector_bundle/basic.lean | [
"analysis.normed_space.bounded_linear_maps",
"topology.fiber_bundle.basic"
] | [] | null | 667 | 669 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
mem_local_triv_at_base_set :
b ∈ (Z.local_triv_at b).base_set :=
fiber_bundle_core.mem_local_triv_at_base_set Z b | mem_local_triv_at_base_set :
b ∈ (Z.local_triv_at b).base_set | fiber_bundle_core.mem_local_triv_at_base_set Z b | lemma | vector_bundle_core.mem_local_triv_at_base_set | topology.vector_bundle | src/topology/vector_bundle/basic.lean | [
"analysis.normed_space.bounded_linear_maps",
"topology.fiber_bundle.basic"
] | [
"fiber_bundle_core.mem_local_triv_at_base_set"
] | null | 671 | 673 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
fiber_bundle : fiber_bundle F Z.fiber := Z.to_fiber_bundle_core.fiber_bundle | fiber_bundle : fiber_bundle F Z.fiber | Z.to_fiber_bundle_core.fiber_bundle | instance | vector_bundle_core.fiber_bundle | topology.vector_bundle | src/topology/vector_bundle/basic.lean | [
"analysis.normed_space.bounded_linear_maps",
"topology.fiber_bundle.basic"
] | [
"fiber_bundle"
] | null | 675 | 675 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
vector_bundle : vector_bundle R F Z.fiber :=
{ trivialization_linear' := begin
rintros _ ⟨i, rfl⟩,
apply local_triv.is_linear,
end,
continuous_on_coord_change' := begin
rintros _ _ ⟨i, rfl⟩ ⟨i', rfl⟩,
refine (Z.continuous_on_coord_change i i').congr (λ b hb, _),
ext v,
exact Z.local_triv_coo... | vector_bundle : vector_bundle R F Z.fiber | { trivialization_linear' := begin
rintros _ ⟨i, rfl⟩,
apply local_triv.is_linear,
end,
continuous_on_coord_change' := begin
rintros _ _ ⟨i, rfl⟩ ⟨i', rfl⟩,
refine (Z.continuous_on_coord_change i i').congr (λ b hb, _),
ext v,
exact Z.local_triv_coord_change_eq i i' hb v,
end } | instance | vector_bundle_core.vector_bundle | topology.vector_bundle | src/topology/vector_bundle/basic.lean | [
"analysis.normed_space.bounded_linear_maps",
"topology.fiber_bundle.basic"
] | [
"vector_bundle"
] | null | 677 | 687 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
continuous_proj : continuous Z.proj :=
fiber_bundle_core.continuous_proj Z | continuous_proj : continuous Z.proj | fiber_bundle_core.continuous_proj Z | lemma | vector_bundle_core.continuous_proj | topology.vector_bundle | src/topology/vector_bundle/basic.lean | [
"analysis.normed_space.bounded_linear_maps",
"topology.fiber_bundle.basic"
] | [
"continuous",
"fiber_bundle_core.continuous_proj"
] | The projection on the base of a vector bundle created from core is continuous | 690 | 691 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
is_open_map_proj : is_open_map Z.proj :=
fiber_bundle_core.is_open_map_proj Z | is_open_map_proj : is_open_map Z.proj | fiber_bundle_core.is_open_map_proj Z | lemma | vector_bundle_core.is_open_map_proj | topology.vector_bundle | src/topology/vector_bundle/basic.lean | [
"analysis.normed_space.bounded_linear_maps",
"topology.fiber_bundle.basic"
] | [
"fiber_bundle_core.is_open_map_proj",
"is_open_map"
] | The projection on the base of a vector bundle created from core is an open map | 694 | 695 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
local_triv_continuous_linear_map_at {b : B} (hb : b ∈ Z.base_set i) :
(Z.local_triv i).continuous_linear_map_at R b = Z.coord_change (Z.index_at b) i b :=
begin
ext1 v,
rw [(Z.local_triv i).continuous_linear_map_at_apply R, (Z.local_triv i).coe_linear_map_at_of_mem],
exacts [rfl, hb]
end | local_triv_continuous_linear_map_at {b : B} (hb : b ∈ Z.base_set i) :
(Z.local_triv i).continuous_linear_map_at R b = Z.coord_change (Z.index_at b) i b | begin
ext1 v,
rw [(Z.local_triv i).continuous_linear_map_at_apply R, (Z.local_triv i).coe_linear_map_at_of_mem],
exacts [rfl, hb]
end | lemma | vector_bundle_core.local_triv_continuous_linear_map_at | topology.vector_bundle | src/topology/vector_bundle/basic.lean | [
"analysis.normed_space.bounded_linear_maps",
"topology.fiber_bundle.basic"
] | [] | null | 699 | 705 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
trivialization_at_continuous_linear_map_at {b₀ b : B}
(hb : b ∈ (trivialization_at F Z.fiber b₀).base_set) :
(trivialization_at F Z.fiber b₀).continuous_linear_map_at R b =
Z.coord_change (Z.index_at b) (Z.index_at b₀) b :=
Z.local_triv_continuous_linear_map_at hb | trivialization_at_continuous_linear_map_at {b₀ b : B}
(hb : b ∈ (trivialization_at F Z.fiber b₀).base_set) :
(trivialization_at F Z.fiber b₀).continuous_linear_map_at R b =
Z.coord_change (Z.index_at b) (Z.index_at b₀) b | Z.local_triv_continuous_linear_map_at hb | lemma | vector_bundle_core.trivialization_at_continuous_linear_map_at | topology.vector_bundle | src/topology/vector_bundle/basic.lean | [
"analysis.normed_space.bounded_linear_maps",
"topology.fiber_bundle.basic"
] | [] | null | 707 | 711 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
local_triv_symmL {b : B} (hb : b ∈ Z.base_set i) :
(Z.local_triv i).symmL R b = Z.coord_change i (Z.index_at b) b :=
by { ext1 v, rw [(Z.local_triv i).symmL_apply R, (Z.local_triv i).symm_apply], exacts [rfl, hb] } | local_triv_symmL {b : B} (hb : b ∈ Z.base_set i) :
(Z.local_triv i).symmL R b = Z.coord_change i (Z.index_at b) b | by { ext1 v, rw [(Z.local_triv i).symmL_apply R, (Z.local_triv i).symm_apply], exacts [rfl, hb] } | lemma | vector_bundle_core.local_triv_symmL | topology.vector_bundle | src/topology/vector_bundle/basic.lean | [
"analysis.normed_space.bounded_linear_maps",
"topology.fiber_bundle.basic"
] | [] | null | 713 | 715 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
trivialization_at_symmL {b₀ b : B}
(hb : b ∈ (trivialization_at F Z.fiber b₀).base_set) :
(trivialization_at F Z.fiber b₀).symmL R b = Z.coord_change (Z.index_at b₀) (Z.index_at b) b :=
Z.local_triv_symmL hb | trivialization_at_symmL {b₀ b : B}
(hb : b ∈ (trivialization_at F Z.fiber b₀).base_set) :
(trivialization_at F Z.fiber b₀).symmL R b = Z.coord_change (Z.index_at b₀) (Z.index_at b) b | Z.local_triv_symmL hb | lemma | vector_bundle_core.trivialization_at_symmL | topology.vector_bundle | src/topology/vector_bundle/basic.lean | [
"analysis.normed_space.bounded_linear_maps",
"topology.fiber_bundle.basic"
] | [] | null | 717 | 720 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
trivialization_at_coord_change_eq {b₀ b₁ b : B}
(hb : b ∈ (trivialization_at F Z.fiber b₀).base_set ∩ (trivialization_at F Z.fiber b₁).base_set)
(v : F) :
(trivialization_at F Z.fiber b₀).coord_changeL R (trivialization_at F Z.fiber b₁) b v =
Z.coord_change (Z.index_at b₀) (Z.index_at b₁) b v :=
Z.local_triv_co... | trivialization_at_coord_change_eq {b₀ b₁ b : B}
(hb : b ∈ (trivialization_at F Z.fiber b₀).base_set ∩ (trivialization_at F Z.fiber b₁).base_set)
(v : F) :
(trivialization_at F Z.fiber b₀).coord_changeL R (trivialization_at F Z.fiber b₁) b v =
Z.coord_change (Z.index_at b₀) (Z.index_at b₁) b v | Z.local_triv_coord_change_eq _ _ hb v | lemma | vector_bundle_core.trivialization_at_coord_change_eq | topology.vector_bundle | src/topology/vector_bundle/basic.lean | [
"analysis.normed_space.bounded_linear_maps",
"topology.fiber_bundle.basic"
] | [] | null | 722 | 727 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
vector_prebundle :=
(pretrivialization_atlas : set (pretrivialization F (π F E)))
(pretrivialization_linear' : ∀ (e : pretrivialization F (π F E)) (he : e ∈ pretrivialization_atlas),
e.is_linear R)
(pretrivialization_at : B → pretrivialization F (π F E))
(mem_base_pretrivialization_at : ∀ x : B, x ∈ (pretrivializatio... | vector_prebundle | (pretrivialization_atlas : set (pretrivialization F (π F E)))
(pretrivialization_linear' : ∀ (e : pretrivialization F (π F E)) (he : e ∈ pretrivialization_atlas),
e.is_linear R)
(pretrivialization_at : B → pretrivialization F (π F E))
(mem_base_pretrivialization_at : ∀ x : B, x ∈ (pretrivialization_at x).base_set)
(p... | structure | vector_prebundle | topology.vector_bundle | src/topology/vector_bundle/basic.lean | [
"analysis.normed_space.bounded_linear_maps",
"topology.fiber_bundle.basic"
] | [
"continuous_on",
"inducing",
"pretrivialization"
] | This structure permits to define a vector bundle when trivializations are given as local
equivalences but there is not yet a topology on the total space or the fibers.
The total space is hence given a topology in such a way that there is a fiber bundle structure for
which the local equivalences are also local homeomorp... | 752 | 764 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
coord_change (a : vector_prebundle R F E)
{e e' : pretrivialization F (π F E)} (he : e ∈ a.pretrivialization_atlas)
(he' : e' ∈ a.pretrivialization_atlas) (b : B) : F →L[R] F :=
classical.some (a.exists_coord_change e he e' he') b | coord_change (a : vector_prebundle R F E)
{e e' : pretrivialization F (π F E)} (he : e ∈ a.pretrivialization_atlas)
(he' : e' ∈ a.pretrivialization_atlas) (b : B) : F →L[R] F | classical.some (a.exists_coord_change e he e' he') b | def | vector_prebundle.coord_change | topology.vector_bundle | src/topology/vector_bundle/basic.lean | [
"analysis.normed_space.bounded_linear_maps",
"topology.fiber_bundle.basic"
] | [
"pretrivialization",
"vector_prebundle"
] | A randomly chosen coordinate change on a `vector_prebundle`, given by
the field `exists_coord_change`. | 772 | 775 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
continuous_on_coord_change (a : vector_prebundle R F E)
{e e' : pretrivialization F (π F E)} (he : e ∈ a.pretrivialization_atlas)
(he' : e' ∈ a.pretrivialization_atlas) :
continuous_on (a.coord_change he he') (e.base_set ∩ e'.base_set) :=
(classical.some_spec (a.exists_coord_change e he e' he')).1 | continuous_on_coord_change (a : vector_prebundle R F E)
{e e' : pretrivialization F (π F E)} (he : e ∈ a.pretrivialization_atlas)
(he' : e' ∈ a.pretrivialization_atlas) :
continuous_on (a.coord_change he he') (e.base_set ∩ e'.base_set) | (classical.some_spec (a.exists_coord_change e he e' he')).1 | lemma | vector_prebundle.continuous_on_coord_change | topology.vector_bundle | src/topology/vector_bundle/basic.lean | [
"analysis.normed_space.bounded_linear_maps",
"topology.fiber_bundle.basic"
] | [
"continuous_on",
"continuous_on_coord_change",
"pretrivialization",
"vector_prebundle"
] | null | 777 | 781 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
coord_change_apply (a : vector_prebundle R F E)
{e e' : pretrivialization F (π F E)} (he : e ∈ a.pretrivialization_atlas)
(he' : e' ∈ a.pretrivialization_atlas) {b : B} (hb : b ∈ e.base_set ∩ e'.base_set) (v : F) :
a.coord_change he he' b v = (e' ⟨b, e.symm b v⟩).2 :=
(classical.some_spec (a.exists_coord_change e... | coord_change_apply (a : vector_prebundle R F E)
{e e' : pretrivialization F (π F E)} (he : e ∈ a.pretrivialization_atlas)
(he' : e' ∈ a.pretrivialization_atlas) {b : B} (hb : b ∈ e.base_set ∩ e'.base_set) (v : F) :
a.coord_change he he' b v = (e' ⟨b, e.symm b v⟩).2 | (classical.some_spec (a.exists_coord_change e he e' he')).2 b hb v | lemma | vector_prebundle.coord_change_apply | topology.vector_bundle | src/topology/vector_bundle/basic.lean | [
"analysis.normed_space.bounded_linear_maps",
"topology.fiber_bundle.basic"
] | [
"pretrivialization",
"vector_prebundle"
] | null | 783 | 787 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
mk_coord_change (a : vector_prebundle R F E)
{e e' : pretrivialization F (π F E)} (he : e ∈ a.pretrivialization_atlas)
(he' : e' ∈ a.pretrivialization_atlas) {b : B} (hb : b ∈ e.base_set ∩ e'.base_set) (v : F) :
(b, a.coord_change he he' b v) = e' ⟨b, e.symm b v⟩ :=
begin
ext,
{ rw [e.mk_symm hb.1 v, e'.coe_f... | mk_coord_change (a : vector_prebundle R F E)
{e e' : pretrivialization F (π F E)} (he : e ∈ a.pretrivialization_atlas)
(he' : e' ∈ a.pretrivialization_atlas) {b : B} (hb : b ∈ e.base_set ∩ e'.base_set) (v : F) :
(b, a.coord_change he he' b v) = e' ⟨b, e.symm b v⟩ | begin
ext,
{ rw [e.mk_symm hb.1 v, e'.coe_fst', e.proj_symm_apply' hb.1],
rw [e.proj_symm_apply' hb.1], exact hb.2 },
{ exact a.coord_change_apply he he' hb v }
end | lemma | vector_prebundle.mk_coord_change | topology.vector_bundle | src/topology/vector_bundle/basic.lean | [
"analysis.normed_space.bounded_linear_maps",
"topology.fiber_bundle.basic"
] | [
"pretrivialization",
"vector_prebundle"
] | null | 789 | 798 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
to_fiber_prebundle (a : vector_prebundle R F E) :
fiber_prebundle F E :=
{ continuous_triv_change := begin
intros e he e' he',
have := is_bounded_bilinear_map_apply.continuous.comp_continuous_on
((a.continuous_on_coord_change he' he).prod_map continuous_on_id),
have H : e'.to_local_equiv.target ∩ e'... | to_fiber_prebundle (a : vector_prebundle R F E) :
fiber_prebundle F E | { continuous_triv_change := begin
intros e he e' he',
have := is_bounded_bilinear_map_apply.continuous.comp_continuous_on
((a.continuous_on_coord_change he' he).prod_map continuous_on_id),
have H : e'.to_local_equiv.target ∩ e'.to_local_equiv.symm ⁻¹'
e.to_local_equiv.source =(e'.base_set ∩ e.ba... | def | vector_prebundle.to_fiber_prebundle | topology.vector_bundle | src/topology/vector_bundle/basic.lean | [
"analysis.normed_space.bounded_linear_maps",
"topology.fiber_bundle.basic"
] | [
"and.congr_right_iff",
"continuous_on_id",
"fiber_prebundle",
"prod_map",
"vector_prebundle"
] | Natural identification of `vector_prebundle` as a `fiber_prebundle`. | 801 | 820 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
total_space_topology (a : vector_prebundle R F E) :
topological_space (total_space F E) :=
a.to_fiber_prebundle.total_space_topology | total_space_topology (a : vector_prebundle R F E) :
topological_space (total_space F E) | a.to_fiber_prebundle.total_space_topology | def | vector_prebundle.total_space_topology | topology.vector_bundle | src/topology/vector_bundle/basic.lean | [
"analysis.normed_space.bounded_linear_maps",
"topology.fiber_bundle.basic"
] | [
"topological_space",
"vector_prebundle"
] | Topology on the total space that will make the prebundle into a bundle. | 823 | 825 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
trivialization_of_mem_pretrivialization_atlas (a : vector_prebundle R F E)
{e : pretrivialization F (π F E)} (he : e ∈ a.pretrivialization_atlas) :
@trivialization B F _ _ _ a.total_space_topology (π F E) :=
a.to_fiber_prebundle.trivialization_of_mem_pretrivialization_atlas he | trivialization_of_mem_pretrivialization_atlas (a : vector_prebundle R F E)
{e : pretrivialization F (π F E)} (he : e ∈ a.pretrivialization_atlas) :
@trivialization B F _ _ _ a.total_space_topology (π F E) | a.to_fiber_prebundle.trivialization_of_mem_pretrivialization_atlas he | def | vector_prebundle.trivialization_of_mem_pretrivialization_atlas | topology.vector_bundle | src/topology/vector_bundle/basic.lean | [
"analysis.normed_space.bounded_linear_maps",
"topology.fiber_bundle.basic"
] | [
"pretrivialization",
"trivialization",
"vector_prebundle"
] | Promotion from a `trivialization` in the `pretrivialization_atlas` of a
`vector_prebundle` to a `trivialization`. | 829 | 832 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
linear_of_mem_pretrivialization_atlas (a : vector_prebundle R F E)
{e : pretrivialization F (π F E)} (he : e ∈ a.pretrivialization_atlas) :
@trivialization.is_linear R B F _ _ _ _ a.total_space_topology _ _ _ _
(trivialization_of_mem_pretrivialization_atlas a he) :=
{ linear := (a.pretrivialization_linear' e he... | linear_of_mem_pretrivialization_atlas (a : vector_prebundle R F E)
{e : pretrivialization F (π F E)} (he : e ∈ a.pretrivialization_atlas) :
@trivialization.is_linear R B F _ _ _ _ a.total_space_topology _ _ _ _
(trivialization_of_mem_pretrivialization_atlas a he) | { linear := (a.pretrivialization_linear' e he).linear } | lemma | vector_prebundle.linear_of_mem_pretrivialization_atlas | topology.vector_bundle | src/topology/vector_bundle/basic.lean | [
"analysis.normed_space.bounded_linear_maps",
"topology.fiber_bundle.basic"
] | [
"pretrivialization",
"trivialization.is_linear",
"vector_prebundle"
] | null | 834 | 838 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
mem_trivialization_at_source (b : B) (x : E b) :
total_space.mk b x ∈ (a.pretrivialization_at b).source :=
a.to_fiber_prebundle.mem_trivialization_at_source b x | mem_trivialization_at_source (b : B) (x : E b) :
total_space.mk b x ∈ (a.pretrivialization_at b).source | a.to_fiber_prebundle.mem_trivialization_at_source b x | lemma | vector_prebundle.mem_trivialization_at_source | topology.vector_bundle | src/topology/vector_bundle/basic.lean | [
"analysis.normed_space.bounded_linear_maps",
"topology.fiber_bundle.basic"
] | [] | null | 842 | 844 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
total_space_mk_preimage_source (b : B) :
(total_space.mk b) ⁻¹' (a.pretrivialization_at b).source = univ :=
a.to_fiber_prebundle.total_space_mk_preimage_source b | total_space_mk_preimage_source (b : B) :
(total_space.mk b) ⁻¹' (a.pretrivialization_at b).source = univ | a.to_fiber_prebundle.total_space_mk_preimage_source b | lemma | vector_prebundle.total_space_mk_preimage_source | topology.vector_bundle | src/topology/vector_bundle/basic.lean | [
"analysis.normed_space.bounded_linear_maps",
"topology.fiber_bundle.basic"
] | [] | null | 846 | 848 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
continuous_total_space_mk (b : B) :
@continuous _ _ _ a.total_space_topology (total_space.mk b) :=
a.to_fiber_prebundle.continuous_total_space_mk b | continuous_total_space_mk (b : B) :
@continuous _ _ _ a.total_space_topology (total_space.mk b) | a.to_fiber_prebundle.continuous_total_space_mk b | lemma | vector_prebundle.continuous_total_space_mk | topology.vector_bundle | src/topology/vector_bundle/basic.lean | [
"analysis.normed_space.bounded_linear_maps",
"topology.fiber_bundle.basic"
] | [
"continuous"
] | null | 850 | 852 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
to_fiber_bundle : @fiber_bundle B F _ _ _ a.total_space_topology _ :=
a.to_fiber_prebundle.to_fiber_bundle | to_fiber_bundle : @fiber_bundle B F _ _ _ a.total_space_topology _ | a.to_fiber_prebundle.to_fiber_bundle | def | vector_prebundle.to_fiber_bundle | topology.vector_bundle | src/topology/vector_bundle/basic.lean | [
"analysis.normed_space.bounded_linear_maps",
"topology.fiber_bundle.basic"
] | [
"fiber_bundle"
] | Make a `fiber_bundle` from a `vector_prebundle`; auxiliary construction for
`vector_prebundle.vector_bundle`. | 856 | 857 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
to_vector_bundle :
@vector_bundle R _ F E _ _ _ _ _ _ a.total_space_topology _ a.to_fiber_bundle :=
{ trivialization_linear' := begin
rintros _ ⟨e, he, rfl⟩,
apply linear_of_mem_pretrivialization_atlas,
end,
continuous_on_coord_change' := begin
rintros _ _ ⟨e, he, rfl⟩ ⟨e', he', rfl⟩,
refine (a.co... | to_vector_bundle :
@vector_bundle R _ F E _ _ _ _ _ _ a.total_space_topology _ a.to_fiber_bundle | { trivialization_linear' := begin
rintros _ ⟨e, he, rfl⟩,
apply linear_of_mem_pretrivialization_atlas,
end,
continuous_on_coord_change' := begin
rintros _ _ ⟨e, he, rfl⟩ ⟨e', he', rfl⟩,
refine (a.continuous_on_coord_change he he').congr _,
intros b hb,
ext v,
rw [a.coord_change_apply he ... | lemma | vector_prebundle.to_vector_bundle | topology.vector_bundle | src/topology/vector_bundle/basic.lean | [
"analysis.normed_space.bounded_linear_maps",
"topology.fiber_bundle.basic"
] | [
"continuous_linear_equiv.coe_coe",
"trivialization.coord_changeL_apply",
"vector_bundle"
] | Make a `vector_bundle` from a `vector_prebundle`. Concretely this means
that, given a `vector_prebundle` structure for a sigma-type `E` -- which consists of a
number of "pretrivializations" identifying parts of `E` with product spaces `U × F` -- one
establishes that for the topology constructed on the sigma-type using... | 865 | 879 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
in_coordinates (x₀ x : B) (y₀ y : B') (ϕ : E x →SL[σ] E' y) : F →SL[σ] F' :=
((trivialization_at F' E' y₀).continuous_linear_map_at 𝕜₂ y).comp $ ϕ.comp $
(trivialization_at F E x₀).symmL 𝕜₁ x | in_coordinates (x₀ x : B) (y₀ y : B') (ϕ : E x →SL[σ] E' y) : F →SL[σ] F' | ((trivialization_at F' E' y₀).continuous_linear_map_at 𝕜₂ y).comp $ ϕ.comp $
(trivialization_at F E x₀).symmL 𝕜₁ x | def | continuous_linear_map.in_coordinates | topology.vector_bundle | src/topology/vector_bundle/basic.lean | [
"analysis.normed_space.bounded_linear_maps",
"topology.fiber_bundle.basic"
] | [] | When `ϕ` is a continuous (semi)linear map between the fibers `E x` and `E' y` of two vector
bundles `E` and `E'`, `continuous_linear_map.in_coordinates F E F' E' x₀ x y₀ y ϕ` is a coordinate
change of this continuous linear map w.r.t. the chart around `x₀` and the chart around `y₀`.
It is defined by composing `ϕ` with... | 912 | 914 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
in_coordinates_eq (x₀ x : B) (y₀ y : B') (ϕ : E x →SL[σ] E' y)
(hx : x ∈ (trivialization_at F E x₀).base_set)
(hy : y ∈ (trivialization_at F' E' y₀).base_set) :
in_coordinates F E F' E' x₀ x y₀ y ϕ =
((trivialization_at F' E' y₀).continuous_linear_equiv_at 𝕜₂ y hy : E' y →L[𝕜₂] F').comp (ϕ.comp $
(((trivial... | in_coordinates_eq (x₀ x : B) (y₀ y : B') (ϕ : E x →SL[σ] E' y)
(hx : x ∈ (trivialization_at F E x₀).base_set)
(hy : y ∈ (trivialization_at F' E' y₀).base_set) :
in_coordinates F E F' E' x₀ x y₀ y ϕ =
((trivialization_at F' E' y₀).continuous_linear_equiv_at 𝕜₂ y hy : E' y →L[𝕜₂] F').comp (ϕ.comp $
(((trivial... | begin
ext,
simp_rw [in_coordinates, continuous_linear_map.coe_comp', continuous_linear_equiv.coe_coe,
trivialization.coe_continuous_linear_equiv_at_eq,
trivialization.symm_continuous_linear_equiv_at_eq]
end | lemma | continuous_linear_map.in_coordinates_eq | topology.vector_bundle | src/topology/vector_bundle/basic.lean | [
"analysis.normed_space.bounded_linear_maps",
"topology.fiber_bundle.basic"
] | [
"continuous_linear_equiv.coe_coe",
"continuous_linear_map.coe_comp'",
"trivialization.coe_continuous_linear_equiv_at_eq",
"trivialization.symm_continuous_linear_equiv_at_eq"
] | rewrite `in_coordinates` using continuous linear equivalences. | 919 | 930 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
vector_bundle_core.in_coordinates_eq {ι ι'} (Z : vector_bundle_core 𝕜₁ B F ι)
(Z' : vector_bundle_core 𝕜₂ B' F' ι')
{x₀ x : B} {y₀ y : B'} (ϕ : F →SL[σ] F')
(hx : x ∈ Z.base_set (Z.index_at x₀))
(hy : y ∈ Z'.base_set (Z'.index_at y₀)) :
in_coordinates F Z.fiber F' Z'.fiber x₀ x y₀ y ϕ =
(Z'.coord_chan... | vector_bundle_core.in_coordinates_eq {ι ι'} (Z : vector_bundle_core 𝕜₁ B F ι)
(Z' : vector_bundle_core 𝕜₂ B' F' ι')
{x₀ x : B} {y₀ y : B'} (ϕ : F →SL[σ] F')
(hx : x ∈ Z.base_set (Z.index_at x₀))
(hy : y ∈ Z'.base_set (Z'.index_at y₀)) :
in_coordinates F Z.fiber F' Z'.fiber x₀ x y₀ y ϕ =
(Z'.coord_chan... | by simp_rw [in_coordinates, Z'.trivialization_at_continuous_linear_map_at hy,
Z.trivialization_at_symmL hx] | lemma | continuous_linear_map.vector_bundle_core.in_coordinates_eq | topology.vector_bundle | src/topology/vector_bundle/basic.lean | [
"analysis.normed_space.bounded_linear_maps",
"topology.fiber_bundle.basic"
] | [
"vector_bundle_core"
] | rewrite `in_coordinates` in a `vector_bundle_core`. | 933 | 942 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
trivialization.is_linear : (trivialization B F).is_linear 𝕜 :=
{ linear := λ x hx, ⟨λ y z, rfl, λ c y, rfl⟩ } | trivialization.is_linear : (trivialization B F).is_linear 𝕜 | { linear := λ x hx, ⟨λ y z, rfl, λ c y, rfl⟩ } | instance | bundle.trivial.trivialization.is_linear | topology.vector_bundle | src/topology/vector_bundle/constructions.lean | [
"topology.fiber_bundle.constructions",
"topology.vector_bundle.basic"
] | [
"trivialization",
"trivialization.is_linear"
] | null | 42 | 43 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
trivialization.coord_changeL (b : B) :
(trivialization B F).coord_changeL 𝕜 (trivialization B F) b = continuous_linear_equiv.refl 𝕜 F :=
begin
ext v,
rw [trivialization.coord_changeL_apply'],
exacts [rfl, ⟨mem_univ _, mem_univ _⟩]
end | trivialization.coord_changeL (b : B) :
(trivialization B F).coord_changeL 𝕜 (trivialization B F) b = continuous_linear_equiv.refl 𝕜 F | begin
ext v,
rw [trivialization.coord_changeL_apply'],
exacts [rfl, ⟨mem_univ _, mem_univ _⟩]
end | lemma | bundle.trivial.trivialization.coord_changeL | topology.vector_bundle | src/topology/vector_bundle/constructions.lean | [
"topology.fiber_bundle.constructions",
"topology.vector_bundle.basic"
] | [
"continuous_linear_equiv.refl",
"trivialization",
"trivialization.coord_changeL",
"trivialization.coord_changeL_apply'"
] | null | 47 | 53 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
vector_bundle : vector_bundle 𝕜 F (bundle.trivial B F) :=
{ trivialization_linear' := begin
introsI e he,
rw eq_trivialization B F e,
apply_instance
end,
continuous_on_coord_change' := begin
introsI e e' he he',
unfreezingI { obtain rfl := eq_trivialization B F e },
unfreezingI { obtain rfl... | vector_bundle : vector_bundle 𝕜 F (bundle.trivial B F) | { trivialization_linear' := begin
introsI e he,
rw eq_trivialization B F e,
apply_instance
end,
continuous_on_coord_change' := begin
introsI e e' he he',
unfreezingI { obtain rfl := eq_trivialization B F e },
unfreezingI { obtain rfl := eq_trivialization B F e' },
simp_rw trivialization.... | instance | bundle.trivial.vector_bundle | topology.vector_bundle | src/topology/vector_bundle/constructions.lean | [
"topology.fiber_bundle.constructions",
"topology.vector_bundle.basic"
] | [
"bundle.trivial",
"trivialization.coord_changeL",
"vector_bundle"
] | null | 57 | 69 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
prod.is_linear [e₁.is_linear 𝕜] [e₂.is_linear 𝕜] : (e₁.prod e₂).is_linear 𝕜 :=
{ linear := λ x ⟨h₁, h₂⟩, (((e₁.linear 𝕜 h₁).mk' _).prod_map ((e₂.linear 𝕜 h₂).mk' _)).is_linear } | prod.is_linear [e₁.is_linear 𝕜] [e₂.is_linear 𝕜] : (e₁.prod e₂).is_linear 𝕜 | { linear := λ x ⟨h₁, h₂⟩, (((e₁.linear 𝕜 h₁).mk' _).prod_map ((e₂.linear 𝕜 h₂).mk' _)).is_linear } | instance | trivialization.prod.is_linear | topology.vector_bundle | src/topology/vector_bundle/constructions.lean | [
"topology.fiber_bundle.constructions",
"topology.vector_bundle.basic"
] | [
"mk'",
"prod_map"
] | null | 88 | 89 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
coord_changeL_prod [e₁.is_linear 𝕜] [e₁'.is_linear 𝕜] [e₂.is_linear 𝕜] [e₂'.is_linear 𝕜] ⦃b⦄
(hb : b ∈ ((e₁.prod e₂).base_set ∩ (e₁'.prod e₂').base_set)) :
((e₁.prod e₂).coord_changeL 𝕜 (e₁'.prod e₂') b : F₁ × F₂ →L[𝕜] F₁ × F₂) =
(e₁.coord_changeL 𝕜 e₁' b : F₁ →L[𝕜] F₁).prod_map (e₂.coord_changeL 𝕜 e₂' b... | coord_changeL_prod [e₁.is_linear 𝕜] [e₁'.is_linear 𝕜] [e₂.is_linear 𝕜] [e₂'.is_linear 𝕜] ⦃b⦄
(hb : b ∈ ((e₁.prod e₂).base_set ∩ (e₁'.prod e₂').base_set)) :
((e₁.prod e₂).coord_changeL 𝕜 (e₁'.prod e₂') b : F₁ × F₂ →L[𝕜] F₁ × F₂) =
(e₁.coord_changeL 𝕜 e₁' b : F₁ →L[𝕜] F₁).prod_map (e₂.coord_changeL 𝕜 e₂' b... | begin
rw [continuous_linear_map.ext_iff, continuous_linear_map.coe_prod_map'],
rintro ⟨v₁, v₂⟩,
show (e₁.prod e₂).coord_changeL 𝕜 (e₁'.prod e₂') b (v₁, v₂) =
(e₁.coord_changeL 𝕜 e₁' b v₁, e₂.coord_changeL 𝕜 e₂' b v₂),
rw [e₁.coord_changeL_apply e₁', e₂.coord_changeL_apply e₂', (e₁.prod e₂).coord_changeL_... | lemma | trivialization.coord_changeL_prod | topology.vector_bundle | src/topology/vector_bundle/constructions.lean | [
"topology.fiber_bundle.constructions",
"topology.vector_bundle.basic"
] | [
"continuous_linear_map.coe_prod_map'",
"continuous_linear_map.ext_iff",
"prod_map"
] | null | 91 | 103 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
prod_apply [e₁.is_linear 𝕜] [e₂.is_linear 𝕜] {x : B} (hx₁ : x ∈ e₁.base_set)
(hx₂ : x ∈ e₂.base_set) (v₁ : E₁ x) (v₂ : E₂ x) :
prod e₁ e₂ ⟨x, (v₁, v₂)⟩
= ⟨x, e₁.continuous_linear_equiv_at 𝕜 x hx₁ v₁, e₂.continuous_linear_equiv_at 𝕜 x hx₂ v₂⟩ :=
rfl | prod_apply [e₁.is_linear 𝕜] [e₂.is_linear 𝕜] {x : B} (hx₁ : x ∈ e₁.base_set)
(hx₂ : x ∈ e₂.base_set) (v₁ : E₁ x) (v₂ : E₂ x) :
prod e₁ e₂ ⟨x, (v₁, v₂)⟩
= ⟨x, e₁.continuous_linear_equiv_at 𝕜 x hx₁ v₁, e₂.continuous_linear_equiv_at 𝕜 x hx₂ v₂⟩ | rfl | lemma | trivialization.prod_apply | topology.vector_bundle | src/topology/vector_bundle/constructions.lean | [
"topology.fiber_bundle.constructions",
"topology.vector_bundle.basic"
] | [] | null | 108 | 112 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
vector_bundle.prod [vector_bundle 𝕜 F₁ E₁] [vector_bundle 𝕜 F₂ E₂] :
vector_bundle 𝕜 (F₁ × F₂) (E₁ ×ᵇ E₂) :=
{ trivialization_linear' := begin
rintros _ ⟨e₁, e₂, he₁, he₂, rfl⟩, resetI,
apply_instance
end,
continuous_on_coord_change' := begin
rintros _ _ ⟨e₁, e₂, he₁, he₂, rfl⟩ ⟨e₁', e₂', he₁', he... | vector_bundle.prod [vector_bundle 𝕜 F₁ E₁] [vector_bundle 𝕜 F₂ E₂] :
vector_bundle 𝕜 (F₁ × F₂) (E₁ ×ᵇ E₂) | { trivialization_linear' := begin
rintros _ ⟨e₁, e₂, he₁, he₂, rfl⟩, resetI,
apply_instance
end,
continuous_on_coord_change' := begin
rintros _ _ ⟨e₁, e₂, he₁, he₂, rfl⟩ ⟨e₁', e₂', he₁', he₂', rfl⟩, resetI,
refine (((continuous_on_coord_change 𝕜 e₁ e₁').mono _).prod_mapL 𝕜
((continuous_on_co... | instance | vector_bundle.prod | topology.vector_bundle | src/topology/vector_bundle/constructions.lean | [
"topology.fiber_bundle.constructions",
"topology.vector_bundle.basic"
] | [
"continuous_linear_map.ext_iff",
"continuous_on_coord_change",
"vector_bundle"
] | The product of two vector bundles is a vector bundle. | 124 | 145 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
trivialization.continuous_linear_equiv_at_prod {e₁ : trivialization F₁ (π F₁ E₁)}
{e₂ : trivialization F₂ (π F₂ E₂)} [e₁.is_linear 𝕜] [e₂.is_linear 𝕜] {x : B}
(hx₁ : x ∈ e₁.base_set) (hx₂ : x ∈ e₂.base_set) :
(e₁.prod e₂).continuous_linear_equiv_at 𝕜 x ⟨hx₁, hx₂⟩
= (e₁.continuous_linear_equiv_at 𝕜 x hx₁).pr... | trivialization.continuous_linear_equiv_at_prod {e₁ : trivialization F₁ (π F₁ E₁)}
{e₂ : trivialization F₂ (π F₂ E₂)} [e₁.is_linear 𝕜] [e₂.is_linear 𝕜] {x : B}
(hx₁ : x ∈ e₁.base_set) (hx₂ : x ∈ e₂.base_set) :
(e₁.prod e₂).continuous_linear_equiv_at 𝕜 x ⟨hx₁, hx₂⟩
= (e₁.continuous_linear_equiv_at 𝕜 x hx₁).pr... | begin
ext1,
funext v,
obtain ⟨v₁, v₂⟩ := v,
rw [(e₁.prod e₂).continuous_linear_equiv_at_apply 𝕜, trivialization.prod],
exact (congr_arg prod.snd (prod_apply 𝕜 hx₁ hx₂ v₁ v₂) : _)
end | lemma | trivialization.continuous_linear_equiv_at_prod | topology.vector_bundle | src/topology/vector_bundle/constructions.lean | [
"topology.fiber_bundle.constructions",
"topology.vector_bundle.basic"
] | [
"trivialization",
"trivialization.prod"
] | null | 149 | 160 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
[∀ (x : B), add_comm_monoid (E x)] : ∀ (x : B'), add_comm_monoid ((f *ᵖ E) x) :=
by delta_instance bundle.pullback | [∀ (x : B), add_comm_monoid (E x)] : ∀ (x : B'), add_comm_monoid ((f *ᵖ E) x) | by delta_instance bundle.pullback | instance | topology.vector_bundle | src/topology/vector_bundle/constructions.lean | [
"topology.fiber_bundle.constructions",
"topology.vector_bundle.basic"
] | [
"add_comm_monoid",
"bundle.pullback"
] | null | 169 | 170 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 | |
[semiring R] [∀ (x : B), add_comm_monoid (E x)] [∀ x, module R (E x)] :
∀ (x : B'), module R ((f *ᵖ E) x) :=
by delta_instance bundle.pullback | [semiring R] [∀ (x : B), add_comm_monoid (E x)] [∀ x, module R (E x)] :
∀ (x : B'), module R ((f *ᵖ E) x) | by delta_instance bundle.pullback | instance | topology.vector_bundle | src/topology/vector_bundle/constructions.lean | [
"topology.fiber_bundle.constructions",
"topology.vector_bundle.basic"
] | [
"add_comm_monoid",
"bundle.pullback",
"module",
"semiring"
] | null | 171 | 173 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 | |
trivialization.pullback_linear (e : trivialization F (π F E)) [e.is_linear 𝕜] (f : K) :
(@trivialization.pullback _ _ _ B' _ _ _ _ _ _ _ e f).is_linear 𝕜 :=
{ linear := λ x h, e.linear 𝕜 h } | trivialization.pullback_linear (e : trivialization F (π F E)) [e.is_linear 𝕜] (f : K) :
(@trivialization.pullback _ _ _ B' _ _ _ _ _ _ _ e f).is_linear 𝕜 | { linear := λ x h, e.linear 𝕜 h } | instance | trivialization.pullback_linear | topology.vector_bundle | src/topology/vector_bundle/constructions.lean | [
"topology.fiber_bundle.constructions",
"topology.vector_bundle.basic"
] | [
"trivialization",
"trivialization.pullback"
] | null | 180 | 182 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
vector_bundle.pullback [∀ x, topological_space (E x)]
[fiber_bundle F E] [vector_bundle 𝕜 F E] (f : K) : vector_bundle 𝕜 F ((f : B' → B) *ᵖ E) :=
{ trivialization_linear' := begin
rintro _ ⟨e, he, rfl⟩, resetI,
apply_instance,
end,
continuous_on_coord_change' := begin
rintro _ _ ⟨e, he, rfl⟩ ⟨e', he... | vector_bundle.pullback [∀ x, topological_space (E x)]
[fiber_bundle F E] [vector_bundle 𝕜 F E] (f : K) : vector_bundle 𝕜 F ((f : B' → B) *ᵖ E) | { trivialization_linear' := begin
rintro _ ⟨e, he, rfl⟩, resetI,
apply_instance,
end,
continuous_on_coord_change' := begin
rintro _ _ ⟨e, he, rfl⟩ ⟨e', he', rfl⟩, resetI,
refine ((continuous_on_coord_change 𝕜 e e').comp (map_continuous f).continuous_on
(λ b hb, hb)).congr _,
rintro b (hb ... | instance | vector_bundle.pullback | topology.vector_bundle | src/topology/vector_bundle/constructions.lean | [
"topology.fiber_bundle.constructions",
"topology.vector_bundle.basic"
] | [
"continuous_on",
"continuous_on_coord_change",
"fiber_bundle",
"topological_space",
"vector_bundle"
] | null | 184 | 198 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
bundle.continuous_linear_map [∀ x, topological_space (E₁ x)]
[∀ x, topological_space (E₂ x)] : Π x : B, Type* :=
λ x, E₁ x →SL[σ] E₂ x | bundle.continuous_linear_map [∀ x, topological_space (E₁ x)]
[∀ x, topological_space (E₂ x)] : Π x : B, Type* | λ x, E₁ x →SL[σ] E₂ x | def | bundle.continuous_linear_map | topology.vector_bundle | src/topology/vector_bundle/hom.lean | [
"topology.vector_bundle.basic",
"analysis.normed_space.operator_norm"
] | [
"topological_space"
] | A reducible type synonym for the bundle of continuous (semi)linear maps. For some reason, it
helps with instance search.
Porting note: after the port is done, we may want to remove this definition. | 63 | 66 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
bundle.continuous_linear_map.module [∀ x, topological_space (E₁ x)]
[∀ x, topological_space (E₂ x)] [∀ x, topological_add_group (E₂ x)]
[∀ x, has_continuous_const_smul 𝕜₂ (E₂ x)] :
∀ x, module 𝕜₂ (bundle.continuous_linear_map σ E₁ E₂ x) :=
λ _, infer_instance | bundle.continuous_linear_map.module [∀ x, topological_space (E₁ x)]
[∀ x, topological_space (E₂ x)] [∀ x, topological_add_group (E₂ x)]
[∀ x, has_continuous_const_smul 𝕜₂ (E₂ x)] :
∀ x, module 𝕜₂ (bundle.continuous_linear_map σ E₁ E₂ x) | λ _, infer_instance | instance | bundle.continuous_linear_map.module | topology.vector_bundle | src/topology/vector_bundle/hom.lean | [
"topology.vector_bundle.basic",
"analysis.normed_space.operator_norm"
] | [
"bundle.continuous_linear_map",
"has_continuous_const_smul",
"module",
"topological_add_group",
"topological_space"
] | null | 69 | 73 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
continuous_linear_map_coord_change
[e₁.is_linear 𝕜₁] [e₁'.is_linear 𝕜₁] [e₂.is_linear 𝕜₂] [e₂'.is_linear 𝕜₂] (b : B) :
(F₁ →SL[σ] F₂) →L[𝕜₂] F₁ →SL[σ] F₂ :=
((e₁'.coord_changeL 𝕜₁ e₁ b).symm.arrow_congrSL (e₂.coord_changeL 𝕜₂ e₂' b) :
(F₁ →SL[σ] F₂) ≃L[𝕜₂] F₁ →SL[σ] F₂) | continuous_linear_map_coord_change
[e₁.is_linear 𝕜₁] [e₁'.is_linear 𝕜₁] [e₂.is_linear 𝕜₂] [e₂'.is_linear 𝕜₂] (b : B) :
(F₁ →SL[σ] F₂) →L[𝕜₂] F₁ →SL[σ] F₂ | ((e₁'.coord_changeL 𝕜₁ e₁ b).symm.arrow_congrSL (e₂.coord_changeL 𝕜₂ e₂' b) :
(F₁ →SL[σ] F₂) ≃L[𝕜₂] F₁ →SL[σ] F₂) | def | pretrivialization.continuous_linear_map_coord_change | topology.vector_bundle | src/topology/vector_bundle/hom.lean | [
"topology.vector_bundle.basic",
"analysis.normed_space.operator_norm"
] | [] | Assume `eᵢ` and `eᵢ'` are trivializations of the bundles `Eᵢ` over base `B` with fiber `Fᵢ`
(`i ∈ {1,2}`), then `continuous_linear_map_coord_change σ e₁ e₁' e₂ e₂'` is the coordinate change
function between the two induced (pre)trivializations
`pretrivialization.continuous_linear_map σ e₁ e₂` and
`pretrivialization.con... | 87 | 91 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
continuous_on_continuous_linear_map_coord_change
[vector_bundle 𝕜₁ F₁ E₁] [vector_bundle 𝕜₂ F₂ E₂]
[mem_trivialization_atlas e₁] [mem_trivialization_atlas e₁']
[mem_trivialization_atlas e₂] [mem_trivialization_atlas e₂'] :
continuous_on (continuous_linear_map_coord_change σ e₁ e₁' e₂ e₂')
((e₁.base_set ∩ ... | continuous_on_continuous_linear_map_coord_change
[vector_bundle 𝕜₁ F₁ E₁] [vector_bundle 𝕜₂ F₂ E₂]
[mem_trivialization_atlas e₁] [mem_trivialization_atlas e₁']
[mem_trivialization_atlas e₂] [mem_trivialization_atlas e₂'] :
continuous_on (continuous_linear_map_coord_change σ e₁ e₁' e₂ e₂')
((e₁.base_set ∩ ... | begin
have h₁ := (compSL F₁ F₂ F₂ σ (ring_hom.id 𝕜₂)).continuous,
have h₂ := (continuous_linear_map.flip (compSL F₁ F₁ F₂ (ring_hom.id 𝕜₁) σ)).continuous,
have h₃ := (continuous_on_coord_change 𝕜₁ e₁' e₁),
have h₄ := (continuous_on_coord_change 𝕜₂ e₂ e₂'),
refine ((h₁.comp_continuous_on (h₄.mono _)).clm_c... | lemma | pretrivialization.continuous_on_continuous_linear_map_coord_change | topology.vector_bundle | src/topology/vector_bundle/hom.lean | [
"topology.vector_bundle.basic",
"analysis.normed_space.operator_norm"
] | [
"continuous",
"continuous_linear_equiv.coe_coe",
"continuous_linear_equiv.symm_symm",
"continuous_linear_map.flip",
"continuous_on",
"continuous_on_coord_change",
"mem_trivialization_atlas",
"ring_hom.id",
"vector_bundle"
] | null | 100 | 118 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
continuous_linear_map :
pretrivialization (F₁ →SL[σ] F₂) (π (F₁ →SL[σ] F₂) (bundle.continuous_linear_map σ E₁ E₂)) :=
{ to_fun := λ p, ⟨p.1, continuous_linear_map.comp (e₂.continuous_linear_map_at 𝕜₂ p.1)
(p.2.comp (e₁.symmL 𝕜₁ p.1 : F₁ →L[𝕜₁] E₁ p.1) : F₁ →SL[σ] E₂ p.1)⟩,
inv_fun := λ p, ⟨p.1, continuous_li... | continuous_linear_map :
pretrivialization (F₁ →SL[σ] F₂) (π (F₁ →SL[σ] F₂) (bundle.continuous_linear_map σ E₁ E₂)) | { to_fun := λ p, ⟨p.1, continuous_linear_map.comp (e₂.continuous_linear_map_at 𝕜₂ p.1)
(p.2.comp (e₁.symmL 𝕜₁ p.1 : F₁ →L[𝕜₁] E₁ p.1) : F₁ →SL[σ] E₂ p.1)⟩,
inv_fun := λ p, ⟨p.1, continuous_linear_map.comp (e₂.symmL 𝕜₂ p.1)
(p.2.comp (e₁.continuous_linear_map_at 𝕜₁ p.1 : E₁ p.1 →L[𝕜₁] F₁) : E₁ p.1 →SL[σ]... | def | pretrivialization.continuous_linear_map | topology.vector_bundle | src/topology/vector_bundle/hom.lean | [
"topology.vector_bundle.basic",
"analysis.normed_space.operator_norm"
] | [
"bundle.continuous_linear_map",
"continuous_linear_map",
"continuous_linear_map.comp",
"heq_iff_eq",
"inv_fun",
"is_open_univ",
"pretrivialization",
"prod.mk.inj_iff",
"set.mem_univ",
"sigma.mk.inj_iff",
"trivialization.continuous_linear_map_at_symmL",
"trivialization.symmL_continuous_linear_m... | Given trivializations `e₁`, `e₂` for vector bundles `E₁`, `E₂` over a base `B`,
`pretrivialization.continuous_linear_map σ e₁ e₂` is the induced pretrivialization for the
continuous `σ`-semilinear maps from `E₁` to `E₂`. That is, the map which will later become a
trivialization, after the bundle of continuous semilinea... | 130 | 157 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
continuous_linear_map.is_linear
[Π x, has_continuous_add (E₂ x)] [Π x, has_continuous_smul 𝕜₂ (E₂ x)] :
(pretrivialization.continuous_linear_map σ e₁ e₂).is_linear 𝕜₂ :=
{ linear := λ x h,
{ map_add := λ L L',
show (e₂.continuous_linear_map_at 𝕜₂ x).comp ((L + L').comp (e₁.symmL 𝕜₁ x)) = _,
begin
... | continuous_linear_map.is_linear
[Π x, has_continuous_add (E₂ x)] [Π x, has_continuous_smul 𝕜₂ (E₂ x)] :
(pretrivialization.continuous_linear_map σ e₁ e₂).is_linear 𝕜₂ | { linear := λ x h,
{ map_add := λ L L',
show (e₂.continuous_linear_map_at 𝕜₂ x).comp ((L + L').comp (e₁.symmL 𝕜₁ x)) = _,
begin
simp_rw [add_comp, comp_add],
refl
end,
map_smul := λ c L,
show (e₂.continuous_linear_map_at 𝕜₂ x).comp ((c • L).comp (e₁.symmL 𝕜₁ x)) = _,
begin
... | instance | pretrivialization.continuous_linear_map.is_linear | topology.vector_bundle | src/topology/vector_bundle/hom.lean | [
"topology.vector_bundle.basic",
"analysis.normed_space.operator_norm"
] | [
"has_continuous_add",
"has_continuous_smul",
"pretrivialization.continuous_linear_map",
"ring_hom.id_apply"
] | null | 162 | 177 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
continuous_linear_map_apply
(p : total_space (F₁ →SL[σ] F₂) (λ x, E₁ x →SL[σ] E₂ x)) :
(continuous_linear_map σ e₁ e₂) p =
⟨p.1, continuous_linear_map.comp (e₂.continuous_linear_map_at 𝕜₂ p.1)
(p.2.comp (e₁.symmL 𝕜₁ p.1 : F₁ →L[𝕜₁] E₁ p.1) : F₁ →SL[σ] E₂ p.1)⟩ :=
rfl | continuous_linear_map_apply
(p : total_space (F₁ →SL[σ] F₂) (λ x, E₁ x →SL[σ] E₂ x)) :
(continuous_linear_map σ e₁ e₂) p =
⟨p.1, continuous_linear_map.comp (e₂.continuous_linear_map_at 𝕜₂ p.1)
(p.2.comp (e₁.symmL 𝕜₁ p.1 : F₁ →L[𝕜₁] E₁ p.1) : F₁ →SL[σ] E₂ p.1)⟩ | rfl | lemma | pretrivialization.continuous_linear_map_apply | topology.vector_bundle | src/topology/vector_bundle/hom.lean | [
"topology.vector_bundle.basic",
"analysis.normed_space.operator_norm"
] | [
"continuous_linear_map",
"continuous_linear_map.comp"
] | null | 181 | 186 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
continuous_linear_map_symm_apply (p : B × (F₁ →SL[σ] F₂)) :
(continuous_linear_map σ e₁ e₂).to_local_equiv.symm p =
⟨p.1, continuous_linear_map.comp (e₂.symmL 𝕜₂ p.1)
(p.2.comp (e₁.continuous_linear_map_at 𝕜₁ p.1 : E₁ p.1 →L[𝕜₁] F₁) : E₁ p.1 →SL[σ] F₂)⟩ :=
rfl | continuous_linear_map_symm_apply (p : B × (F₁ →SL[σ] F₂)) :
(continuous_linear_map σ e₁ e₂).to_local_equiv.symm p =
⟨p.1, continuous_linear_map.comp (e₂.symmL 𝕜₂ p.1)
(p.2.comp (e₁.continuous_linear_map_at 𝕜₁ p.1 : E₁ p.1 →L[𝕜₁] F₁) : E₁ p.1 →SL[σ] F₂)⟩ | rfl | lemma | pretrivialization.continuous_linear_map_symm_apply | topology.vector_bundle | src/topology/vector_bundle/hom.lean | [
"topology.vector_bundle.basic",
"analysis.normed_space.operator_norm"
] | [
"continuous_linear_map",
"continuous_linear_map.comp"
] | null | 188 | 192 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
continuous_linear_map_symm_apply' {b : B} (hb : b ∈ e₁.base_set ∩ e₂.base_set)
(L : F₁ →SL[σ] F₂) :
(continuous_linear_map σ e₁ e₂).symm b L =
(e₂.symmL 𝕜₂ b).comp (L.comp $ e₁.continuous_linear_map_at 𝕜₁ b) :=
begin
rw [symm_apply], refl, exact hb
end | continuous_linear_map_symm_apply' {b : B} (hb : b ∈ e₁.base_set ∩ e₂.base_set)
(L : F₁ →SL[σ] F₂) :
(continuous_linear_map σ e₁ e₂).symm b L =
(e₂.symmL 𝕜₂ b).comp (L.comp $ e₁.continuous_linear_map_at 𝕜₁ b) | begin
rw [symm_apply], refl, exact hb
end | lemma | pretrivialization.continuous_linear_map_symm_apply' | topology.vector_bundle | src/topology/vector_bundle/hom.lean | [
"topology.vector_bundle.basic",
"analysis.normed_space.operator_norm"
] | [
"continuous_linear_map"
] | null | 196 | 202 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
continuous_linear_map_coord_change_apply (b : B)
(hb : b ∈ (e₁.base_set ∩ e₂.base_set) ∩ (e₁'.base_set ∩ e₂'.base_set)) (L : F₁ →SL[σ] F₂) :
continuous_linear_map_coord_change σ e₁ e₁' e₂ e₂' b L =
(continuous_linear_map σ e₁' e₂' ⟨b, ((continuous_linear_map σ e₁ e₂).symm b L)⟩).2 :=
begin
ext v,
simp_rw [con... | continuous_linear_map_coord_change_apply (b : B)
(hb : b ∈ (e₁.base_set ∩ e₂.base_set) ∩ (e₁'.base_set ∩ e₂'.base_set)) (L : F₁ →SL[σ] F₂) :
continuous_linear_map_coord_change σ e₁ e₁' e₂ e₂' b L =
(continuous_linear_map σ e₁' e₂' ⟨b, ((continuous_linear_map σ e₁ e₂).symm b L)⟩).2 | begin
ext v,
simp_rw [continuous_linear_map_coord_change, continuous_linear_equiv.coe_coe,
continuous_linear_equiv.arrow_congrSL_apply,
continuous_linear_map_apply, continuous_linear_map_symm_apply' σ e₁ e₂ hb.1,
comp_apply, continuous_linear_equiv.coe_coe, continuous_linear_equiv.symm_symm,
trivial... | lemma | pretrivialization.continuous_linear_map_coord_change_apply | topology.vector_bundle | src/topology/vector_bundle/hom.lean | [
"topology.vector_bundle.basic",
"analysis.normed_space.operator_norm"
] | [
"continuous_linear_equiv.coe_coe",
"continuous_linear_equiv.symm_symm",
"continuous_linear_map"
] | null | 204 | 218 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
_root_.bundle.continuous_linear_map.vector_prebundle :
vector_prebundle 𝕜₂ (F₁ →SL[σ] F₂) (bundle.continuous_linear_map σ E₁ E₂) :=
{ pretrivialization_atlas :=
{e | ∃ (e₁ : trivialization F₁ (π F₁ E₁)) (e₂ : trivialization F₂ (π F₂ E₂))
[mem_trivialization_atlas e₁] [mem_trivialization_atlas e₂], by exactI... | _root_.bundle.continuous_linear_map.vector_prebundle :
vector_prebundle 𝕜₂ (F₁ →SL[σ] F₂) (bundle.continuous_linear_map σ E₁ E₂) | { pretrivialization_atlas :=
{e | ∃ (e₁ : trivialization F₁ (π F₁ E₁)) (e₂ : trivialization F₂ (π F₂ E₂))
[mem_trivialization_atlas e₁] [mem_trivialization_atlas e₂], by exactI
e = pretrivialization.continuous_linear_map σ e₁ e₂},
pretrivialization_linear' := begin
rintro _ ⟨e₁, he₁, e₂, he₂, rfl⟩,
... | def | bundle.continuous_linear_map.vector_prebundle | topology.vector_bundle | src/topology/vector_bundle/hom.lean | [
"topology.vector_bundle.basic",
"analysis.normed_space.operator_norm"
] | [
"bundle.continuous_linear_map",
"inducing",
"mem_trivialization_atlas",
"pretrivialization.continuous_linear_map",
"pretrivialization.continuous_linear_map_apply",
"trivialization",
"trivialization.linear_map_at_def_of_mem",
"vector_prebundle"
] | The continuous `σ`-semilinear maps between two topological vector bundles form a
`vector_prebundle` (this is an auxiliary construction for the
`vector_bundle` instance, in which the pretrivializations are collated but no topology
on the total space is yet provided). | 234 | 271 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
bundle.continuous_linear_map.topological_space_total_space :
topological_space (total_space (F₁ →SL[σ] F₂) (bundle.continuous_linear_map σ E₁ E₂)) :=
(bundle.continuous_linear_map.vector_prebundle
σ F₁ E₁ F₂ E₂).total_space_topology | bundle.continuous_linear_map.topological_space_total_space :
topological_space (total_space (F₁ →SL[σ] F₂) (bundle.continuous_linear_map σ E₁ E₂)) | (bundle.continuous_linear_map.vector_prebundle
σ F₁ E₁ F₂ E₂).total_space_topology | instance | bundle.continuous_linear_map.topological_space_total_space | topology.vector_bundle | src/topology/vector_bundle/hom.lean | [
"topology.vector_bundle.basic",
"analysis.normed_space.operator_norm"
] | [
"bundle.continuous_linear_map",
"bundle.continuous_linear_map.vector_prebundle",
"topological_space"
] | Topology on the total space of the continuous `σ`-semilinear_maps between two "normable" vector
bundles over the same base. | 275 | 278 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
_root_.bundle.continuous_linear_map.fiber_bundle :
fiber_bundle (F₁ →SL[σ] F₂) (λ x, E₁ x →SL[σ] E₂ x) :=
(bundle.continuous_linear_map.vector_prebundle
σ F₁ E₁ F₂ E₂).to_fiber_bundle | _root_.bundle.continuous_linear_map.fiber_bundle :
fiber_bundle (F₁ →SL[σ] F₂) (λ x, E₁ x →SL[σ] E₂ x) | (bundle.continuous_linear_map.vector_prebundle
σ F₁ E₁ F₂ E₂).to_fiber_bundle | instance | bundle.continuous_linear_map.fiber_bundle | topology.vector_bundle | src/topology/vector_bundle/hom.lean | [
"topology.vector_bundle.basic",
"analysis.normed_space.operator_norm"
] | [
"bundle.continuous_linear_map.vector_prebundle",
"fiber_bundle"
] | The continuous `σ`-semilinear_maps between two vector bundles form a fiber bundle. | 281 | 284 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
_root_.bundle.continuous_linear_map.vector_bundle :
vector_bundle 𝕜₂ (F₁ →SL[σ] F₂) (bundle.continuous_linear_map σ E₁ E₂) :=
(bundle.continuous_linear_map.vector_prebundle
σ F₁ E₁ F₂ E₂).to_vector_bundle | _root_.bundle.continuous_linear_map.vector_bundle :
vector_bundle 𝕜₂ (F₁ →SL[σ] F₂) (bundle.continuous_linear_map σ E₁ E₂) | (bundle.continuous_linear_map.vector_prebundle
σ F₁ E₁ F₂ E₂).to_vector_bundle | instance | bundle.continuous_linear_map.vector_bundle | topology.vector_bundle | src/topology/vector_bundle/hom.lean | [
"topology.vector_bundle.basic",
"analysis.normed_space.operator_norm"
] | [
"bundle.continuous_linear_map",
"bundle.continuous_linear_map.vector_prebundle",
"vector_bundle"
] | The continuous `σ`-semilinear_maps between two vector bundles form a vector bundle. | 287 | 290 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
trivialization.continuous_linear_map :
trivialization (F₁ →SL[σ] F₂) (π (F₁ →SL[σ] F₂) (bundle.continuous_linear_map σ E₁ E₂)) :=
vector_prebundle.trivialization_of_mem_pretrivialization_atlas _ ⟨e₁, e₂, he₁, he₂, rfl⟩ | trivialization.continuous_linear_map :
trivialization (F₁ →SL[σ] F₂) (π (F₁ →SL[σ] F₂) (bundle.continuous_linear_map σ E₁ E₂)) | vector_prebundle.trivialization_of_mem_pretrivialization_atlas _ ⟨e₁, e₂, he₁, he₂, rfl⟩ | def | trivialization.continuous_linear_map | topology.vector_bundle | src/topology/vector_bundle/hom.lean | [
"topology.vector_bundle.basic",
"analysis.normed_space.operator_norm"
] | [
"bundle.continuous_linear_map",
"trivialization",
"vector_prebundle.trivialization_of_mem_pretrivialization_atlas"
] | Given trivializations `e₁`, `e₂` in the atlas for vector bundles `E₁`, `E₂` over a base `B`,
the induced trivialization for the continuous `σ`-semilinear maps from `E₁` to `E₂`,
whose base set is `e₁.base_set ∩ e₂.base_set`. | 300 | 302 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
_root_.bundle.continuous_linear_map.mem_trivialization_atlas :
mem_trivialization_atlas (e₁.continuous_linear_map σ e₂ :
trivialization (F₁ →SL[σ] F₂) (π (F₁ →SL[σ] F₂) (bundle.continuous_linear_map σ E₁ E₂))) :=
{ out := ⟨_, ⟨e₁, e₂, by apply_instance, by apply_instance, rfl⟩, rfl⟩ } | _root_.bundle.continuous_linear_map.mem_trivialization_atlas :
mem_trivialization_atlas (e₁.continuous_linear_map σ e₂ :
trivialization (F₁ →SL[σ] F₂) (π (F₁ →SL[σ] F₂) (bundle.continuous_linear_map σ E₁ E₂))) | { out := ⟨_, ⟨e₁, e₂, by apply_instance, by apply_instance, rfl⟩, rfl⟩ } | instance | bundle.continuous_linear_map.mem_trivialization_atlas | topology.vector_bundle | src/topology/vector_bundle/hom.lean | [
"topology.vector_bundle.basic",
"analysis.normed_space.operator_norm"
] | [
"bundle.continuous_linear_map",
"mem_trivialization_atlas",
"trivialization"
] | null | 304 | 307 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
trivialization.base_set_continuous_linear_map :
(e₁.continuous_linear_map σ e₂).base_set = e₁.base_set ∩ e₂.base_set :=
rfl | trivialization.base_set_continuous_linear_map :
(e₁.continuous_linear_map σ e₂).base_set = e₁.base_set ∩ e₂.base_set | rfl | lemma | trivialization.base_set_continuous_linear_map | topology.vector_bundle | src/topology/vector_bundle/hom.lean | [
"topology.vector_bundle.basic",
"analysis.normed_space.operator_norm"
] | [] | null | 311 | 313 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
trivialization.continuous_linear_map_apply
(p : total_space (F₁ →SL[σ] F₂) (bundle.continuous_linear_map σ E₁ E₂)) :
e₁.continuous_linear_map σ e₂ p =
⟨p.1, (e₂.continuous_linear_map_at 𝕜₂ p.1 : _ →L[𝕜₂] _).comp
(p.2.comp (e₁.symmL 𝕜₁ p.1 : F₁ →L[𝕜₁] E₁ p.1) : F₁ →SL[σ] E₂ p.1)⟩ :=
rfl | trivialization.continuous_linear_map_apply
(p : total_space (F₁ →SL[σ] F₂) (bundle.continuous_linear_map σ E₁ E₂)) :
e₁.continuous_linear_map σ e₂ p =
⟨p.1, (e₂.continuous_linear_map_at 𝕜₂ p.1 : _ →L[𝕜₂] _).comp
(p.2.comp (e₁.symmL 𝕜₁ p.1 : F₁ →L[𝕜₁] E₁ p.1) : F₁ →SL[σ] E₂ p.1)⟩ | rfl | lemma | trivialization.continuous_linear_map_apply | topology.vector_bundle | src/topology/vector_bundle/hom.lean | [
"topology.vector_bundle.basic",
"analysis.normed_space.operator_norm"
] | [
"bundle.continuous_linear_map"
] | null | 315 | 320 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
hom_trivialization_at_apply (x₀ : B)
(x : total_space (F₁ →SL[σ] F₂) (bundle.continuous_linear_map σ E₁ E₂)) :
trivialization_at (F₁ →SL[σ] F₂) (λ x, E₁ x →SL[σ] E₂ x) x₀ x =
⟨x.1, in_coordinates F₁ E₁ F₂ E₂ x₀ x.1 x₀ x.1 x.2⟩ :=
rfl | hom_trivialization_at_apply (x₀ : B)
(x : total_space (F₁ →SL[σ] F₂) (bundle.continuous_linear_map σ E₁ E₂)) :
trivialization_at (F₁ →SL[σ] F₂) (λ x, E₁ x →SL[σ] E₂ x) x₀ x =
⟨x.1, in_coordinates F₁ E₁ F₂ E₂ x₀ x.1 x₀ x.1 x.2⟩ | rfl | lemma | hom_trivialization_at_apply | topology.vector_bundle | src/topology/vector_bundle/hom.lean | [
"topology.vector_bundle.basic",
"analysis.normed_space.operator_norm"
] | [
"bundle.continuous_linear_map"
] | null | 324 | 328 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
hom_trivialization_at_source (x₀ : B) :
(trivialization_at (F₁ →SL[σ] F₂) (bundle.continuous_linear_map σ E₁ E₂) x₀).source =
π (F₁ →SL[σ] F₂) (bundle.continuous_linear_map σ E₁ E₂) ⁻¹'
((trivialization_at F₁ E₁ x₀).base_set ∩ (trivialization_at F₂ E₂ x₀).base_set) :=
rfl | hom_trivialization_at_source (x₀ : B) :
(trivialization_at (F₁ →SL[σ] F₂) (bundle.continuous_linear_map σ E₁ E₂) x₀).source =
π (F₁ →SL[σ] F₂) (bundle.continuous_linear_map σ E₁ E₂) ⁻¹'
((trivialization_at F₁ E₁ x₀).base_set ∩ (trivialization_at F₂ E₂ x₀).base_set) | rfl | lemma | hom_trivialization_at_source | topology.vector_bundle | src/topology/vector_bundle/hom.lean | [
"topology.vector_bundle.basic",
"analysis.normed_space.operator_norm"
] | [
"bundle.continuous_linear_map"
] | null | 330 | 335 | true | https://github.com/leanprover-community/mathlib | 65a1391a0106c9204fe45bc73a039f056558cb83 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.