mathlib3
5c856c39 - feat(topology/vector_bundle): definition of topological vector bundle (#4658)

Commit
4 years ago
feat(topology/vector_bundle): definition of topological vector bundle (#4658) # Topological vector bundles In this file we define topological vector bundles. Let `B` be the base space. In our formalism, a topological vector bundle is by definition the type `bundle.total_space E` where `E : B → Type*` is a function associating to `x : B` the fiber over `x`. This type `bundle.total_space E` is just a type synonym for `Ī£ (x : B), E x`, with the interest that one can put another topology than on `Ī£ (x : B), E x` which has the disjoint union topology. To have a topological vector bundle structure on `bundle.total_space E`, one should addtionally have the following data: * `F` should be a topological vector space over a field `š•œ`; * There should be a topology on `bundle.total_space E`, for which the projection to `E` is a topological fiber bundle with fiber `F` (in particular, each fiber `E x` is homeomorphic to `F`); * For each `x`, the fiber `E x` should be a topological vector space over `š•œ`, and the injection from `E x` to `bundle.total_space F E` should be an embedding; * The most important condition: around each point, there should be a bundle trivialization which is a continuous linear equiv in the fibers. If all these conditions are satisfied, we register the typeclass `topological_vector_bundle š•œ F E`. We emphasize that the data is provided by other classes, and that the `topological_vector_bundle` class is `Prop`-valued. The point of this formalism is that it is unbundled in the sense that the total space of the bundle is a type with a topology, with which one can work or put further structure, and still one can perform operations on topological vector bundles (which are yet to be formalized). For instance, assume that `E₁ : B → Type*` and `Eā‚‚ : B → Type*` define two topological vector bundles over `š•œ` with fiber models `F₁` and `Fā‚‚` which are normed spaces. Then one can construct the vector bundle of continuous linear maps from `E₁ x` to `Eā‚‚ x` with fiber `E x := (E₁ x →L[š•œ] Eā‚‚ x)` (and with the topology inherited from the norm-topology on `F₁ →L[š•œ] Fā‚‚`, without the need to define the strong topology on continuous linear maps between general topological vector spaces). Let `vector_bundle_continuous_linear_map š•œ F₁ E₁ Fā‚‚ Eā‚‚ (x : B)` be a type synonym for `E₁ x →L[š•œ] Eā‚‚ x`. Then one can endow `bundle.total_space (vector_bundle_continuous_linear_map š•œ F₁ E₁ Fā‚‚ Eā‚‚)` with a topology and a topological vector bundle structure. Similar constructions can be done for tensor products of topological vector bundles, exterior algebras, and so on, where the topology can be defined using a norm on the fiber model if this helps. Coauthored-by: Sebastien Gouezel <sebastien.gouezel@univ-rennes1.fr>
Author
Parents
Loading