|
| 1 | +/- |
| 2 | +Copyright (c) 2022 Floris van Doorn. All rights reserved. |
| 3 | +Released under Apache 2.0 license as described in the file LICENSE. |
| 4 | +Authors: Floris van Doorn |
| 5 | +-/ |
| 6 | +import geometry.manifold.vector_bundle.basic |
| 7 | +import topology.vector_bundle.hom |
| 8 | + |
| 9 | +/-! # Homs of smooth vector bundles over the same base space |
| 10 | +
|
| 11 | +Here we show that `bundle.continuous_linear_map` is a smooth vector bundle. |
| 12 | +
|
| 13 | +Note that we only do this for bundles of linear maps, not for bundles of arbitrary semilinear maps. |
| 14 | +To do it for semilinear maps, we would need to generalize `continuous_linear_map.cont_mdiff` |
| 15 | +(and `continuous_linear_map.cont_diff`) to semilinear maps. |
| 16 | +-/ |
| 17 | + |
| 18 | +noncomputable theory |
| 19 | + |
| 20 | +open bundle set local_homeomorph continuous_linear_map pretrivialization |
| 21 | +open_locale manifold bundle |
| 22 | + |
| 23 | +variables {𝕜 B F F₁ F₂ M M₁ M₂ : Type*} |
| 24 | + {E : B → Type*} {E₁ : B → Type*} {E₂ : B → Type*} |
| 25 | + [nontrivially_normed_field 𝕜] |
| 26 | + [∀ x, add_comm_monoid (E x)] [∀ x, module 𝕜 (E x)] |
| 27 | + [normed_add_comm_group F] [normed_space 𝕜 F] |
| 28 | + [topological_space (total_space E)] [∀ x, topological_space (E x)] |
| 29 | + [∀ x, add_comm_monoid (E₁ x)] [∀ x, module 𝕜 (E₁ x)] |
| 30 | + [normed_add_comm_group F₁] [normed_space 𝕜 F₁] |
| 31 | + [topological_space (total_space E₁)] [∀ x, topological_space (E₁ x)] |
| 32 | + [∀ x, add_comm_monoid (E₂ x)] [∀ x, module 𝕜 (E₂ x)] |
| 33 | + [normed_add_comm_group F₂] [normed_space 𝕜 F₂] |
| 34 | + [topological_space (total_space E₂)] [∀ x, topological_space (E₂ x)] |
| 35 | + |
| 36 | + {EB : Type*} [normed_add_comm_group EB] [normed_space 𝕜 EB] |
| 37 | + {HB : Type*} [topological_space HB] (IB : model_with_corners 𝕜 EB HB) |
| 38 | + [topological_space B] [charted_space HB B] |
| 39 | + {EM : Type*} [normed_add_comm_group EM] [normed_space 𝕜 EM] |
| 40 | + {HM : Type*} [topological_space HM] {IM : model_with_corners 𝕜 EM HM} |
| 41 | + [topological_space M] [charted_space HM M] [Is : smooth_manifold_with_corners IM M] |
| 42 | + {n : ℕ∞} |
| 43 | + [fiber_bundle F₁ E₁] [vector_bundle 𝕜 F₁ E₁] |
| 44 | + [fiber_bundle F₂ E₂] [vector_bundle 𝕜 F₂ E₂] |
| 45 | + {e₁ e₁' : trivialization F₁ (π E₁)} {e₂ e₂' : trivialization F₂ (π E₂)} |
| 46 | + |
| 47 | +local notation `LE₁E₂` := total_space (bundle.continuous_linear_map (ring_hom.id 𝕜) F₁ E₁ F₂ E₂) |
| 48 | + |
| 49 | +/- This proof is slow, especially the `simp only` and the elaboration of `h₂`. -/ |
| 50 | +lemma smooth_on_continuous_linear_map_coord_change |
| 51 | + [smooth_manifold_with_corners IB B] |
| 52 | + [smooth_vector_bundle F₁ E₁ IB] [smooth_vector_bundle F₂ E₂ IB] |
| 53 | + [mem_trivialization_atlas e₁] [mem_trivialization_atlas e₁'] |
| 54 | + [mem_trivialization_atlas e₂] [mem_trivialization_atlas e₂'] : |
| 55 | + smooth_on IB 𝓘(𝕜, ((F₁ →L[𝕜] F₂) →L[𝕜] (F₁ →L[𝕜] F₂))) |
| 56 | + (continuous_linear_map_coord_change (ring_hom.id 𝕜) e₁ e₁' e₂ e₂') |
| 57 | + ((e₁.base_set ∩ e₂.base_set) ∩ (e₁'.base_set ∩ e₂'.base_set)) := |
| 58 | +begin |
| 59 | + let L₁ := compL 𝕜 F₁ F₂ F₂, |
| 60 | + have h₁ : smooth _ _ _ := L₁.cont_mdiff, |
| 61 | + have h₂ : smooth _ _ _ := (continuous_linear_map.flip (compL 𝕜 F₁ F₁ F₂)).cont_mdiff, |
| 62 | + have h₃ : smooth_on IB _ _ _ := smooth_on_coord_change e₁' e₁, |
| 63 | + have h₄ : smooth_on IB _ _ _ := smooth_on_coord_change e₂ e₂', |
| 64 | + refine ((h₁.comp_smooth_on (h₄.mono _)).clm_comp (h₂.comp_smooth_on (h₃.mono _))).congr _, |
| 65 | + { mfld_set_tac }, |
| 66 | + { mfld_set_tac }, |
| 67 | + { intros b hb, ext L v, |
| 68 | + simp only [continuous_linear_map_coord_change, continuous_linear_equiv.coe_coe, |
| 69 | + continuous_linear_equiv.arrow_congrSL_apply, comp_apply, function.comp, compL_apply, |
| 70 | + flip_apply, continuous_linear_equiv.symm_symm] }, |
| 71 | +end |
| 72 | + |
| 73 | +variables [∀ x, has_continuous_add (E₂ x)] [∀ x, has_continuous_smul 𝕜 (E₂ x)] |
| 74 | + |
| 75 | +lemma hom_chart (y₀ y : LE₁E₂) : |
| 76 | + chart_at (model_prod HB (F₁ →L[𝕜] F₂)) y₀ y = |
| 77 | + (chart_at HB y₀.1 y.1, in_coordinates F₁ E₁ F₂ E₂ y₀.1 y.1 y₀.1 y.1 y.2) := |
| 78 | +by simp_rw [fiber_bundle.charted_space_chart_at, trans_apply, local_homeomorph.prod_apply, |
| 79 | + trivialization.coe_coe, local_homeomorph.refl_apply, function.id_def, hom_trivialization_at_apply] |
| 80 | + |
| 81 | +variables {IB} |
| 82 | + |
| 83 | +lemma cont_mdiff_at_hom_bundle (f : M → LE₁E₂) {x₀ : M} {n : ℕ∞} : |
| 84 | + cont_mdiff_at IM (IB.prod 𝓘(𝕜, F₁ →L[𝕜] F₂)) n f x₀ ↔ |
| 85 | + cont_mdiff_at IM IB n (λ x, (f x).1) x₀ ∧ |
| 86 | + cont_mdiff_at IM 𝓘(𝕜, F₁ →L[𝕜] F₂) n |
| 87 | + (λ x, in_coordinates F₁ E₁ F₂ E₂ (f x₀).1 (f x).1 (f x₀).1 (f x).1 (f x).2) x₀ := |
| 88 | +by apply cont_mdiff_at_total_space |
| 89 | + |
| 90 | +lemma smooth_at_hom_bundle (f : M → LE₁E₂) {x₀ : M} : |
| 91 | + smooth_at IM (IB.prod 𝓘(𝕜, F₁ →L[𝕜] F₂)) f x₀ ↔ |
| 92 | + smooth_at IM IB (λ x, (f x).1) x₀ ∧ |
| 93 | + smooth_at IM 𝓘(𝕜, F₁ →L[𝕜] F₂) |
| 94 | + (λ x, in_coordinates F₁ E₁ F₂ E₂ (f x₀).1 (f x).1 (f x₀).1 (f x).1 (f x).2) x₀ := |
| 95 | +cont_mdiff_at_hom_bundle f |
| 96 | + |
| 97 | +variables [smooth_manifold_with_corners IB B] |
| 98 | + [smooth_vector_bundle F₁ E₁ IB] [smooth_vector_bundle F₂ E₂ IB] |
| 99 | + |
| 100 | +instance bundle.continuous_linear_map.vector_prebundle.is_smooth : |
| 101 | + (bundle.continuous_linear_map.vector_prebundle (ring_hom.id 𝕜) F₁ E₁ F₂ E₂).is_smooth IB := |
| 102 | +{ exists_smooth_coord_change := begin |
| 103 | + rintro _ ⟨e₁, e₂, he₁, he₂, rfl⟩ _ ⟨e₁', e₂', he₁', he₂', rfl⟩, |
| 104 | + resetI, |
| 105 | + refine ⟨continuous_linear_map_coord_change (ring_hom.id 𝕜) e₁ e₁' e₂ e₂', |
| 106 | + smooth_on_continuous_linear_map_coord_change IB, |
| 107 | + continuous_linear_map_coord_change_apply (ring_hom.id 𝕜) e₁ e₁' e₂ e₂'⟩ |
| 108 | + end } |
| 109 | + |
| 110 | +/-- Todo: remove this definition. It is probably needed because of the type-class pi bug |
| 111 | +https://leanprover.zulipchat.com/#narrow/stream/116395-maths/topic/vector.20bundles.20--.20typeclass.20inference.20issue |
| 112 | +-/ |
| 113 | +@[reducible] |
| 114 | +def smooth_vector_bundle.continuous_linear_map.aux (x) : |
| 115 | + topological_space (bundle.continuous_linear_map (ring_hom.id 𝕜) F₁ E₁ F₂ E₂ x) := |
| 116 | +by apply_instance |
| 117 | +local attribute [instance, priority 1] smooth_vector_bundle.continuous_linear_map.aux |
| 118 | + |
| 119 | +instance smooth_vector_bundle.continuous_linear_map : |
| 120 | + smooth_vector_bundle (F₁ →L[𝕜] F₂) (bundle.continuous_linear_map (ring_hom.id 𝕜) F₁ E₁ F₂ E₂) |
| 121 | + IB := |
| 122 | +(bundle.continuous_linear_map.vector_prebundle (ring_hom.id 𝕜) F₁ E₁ F₂ E₂).smooth_vector_bundle IB |
0 commit comments