Continuous bundled maps #
THIS FILE IS SYNCHRONIZED WITH MATHLIB4. Any changes to this file require a corresponding PR to mathlib4.
In this file we define the type continuous_map of continuous bundled maps.
We use the fun_like design, so each type of morphisms has a companion typeclass which is meant to
be satisfied by itself and all stricter types.
- to_fun : α → β
- continuous_to_fun : continuous self.to_fun . "continuity'"
The type of continuous maps from α to β.
When possible, instead of parametrizing results over (f : C(α, β)),
you should parametrize over {F : Type*} [continuous_map_class F α β] (f : F).
When you extend this structure, make sure to extend continuous_map_class.
Instances for continuous_map
- continuous_map.has_sizeof_inst
- continuous_map.has_coe_t
- continuous_map.continuous_map_class
- continuous_map.has_coe_to_fun
- continuous_map.inhabited
- continuous_map.nontrivial
- homeomorph.continuous_map.has_coe
- nnreal.continuous_map.can_lift
- continuous_map.compact_open
- continuous_map.t2_space
- path.continuous_map.has_coe
- coe : F → Π (a : α), (λ (_x : α), β) a
- coe_injective' : function.injective continuous_map_class.coe
- map_continuous : ∀ (f : F), continuous ⇑f
continuous_map_class F α β states that F is a type of continuous maps.
You should extend this class when you extend continuous_map.
Instances of this typeclass
Instances of other typeclasses for continuous_map_class
- continuous_map_class.has_sizeof_inst
Equations
- continuous_map.has_coe_t = {coe := λ (f : F), {to_fun := ⇑f, continuous_to_fun := _}}
Continuous maps #
Equations
- continuous_map.continuous_map_class = {coe := continuous_map.to_fun _inst_2, coe_injective' := _, map_continuous := _}
Helper instance for when there's too many metavariables to apply fun_like.has_coe_to_fun
directly.
Copy of a continuous_map with a new to_fun equal to the old one. Useful to fix definitional
equalities.
Equations
- f.copy f' h = {to_fun := f', continuous_to_fun := _}
Deprecated. Use map_continuous instead.
Deprecated. Use map_continuous_at instead.
Deprecated. Use fun_like.congr_fun instead.
Deprecated. Use fun_like.congr_arg instead.
The continuous functions from α to β are the same as the plain functions when α is discrete.
The identity as a continuous map.
Equations
- continuous_map.id α = {to_fun := id α, continuous_to_fun := _}
The constant map as a continuous map.
Equations
- continuous_map.const α b = {to_fun := function.const α b, continuous_to_fun := _}
Equations
The composition of continuous maps, as a continuous map.
Instances for continuous_map.comp
Given two continuous maps f and g, this is the continuous map x ↦ (f x, g x).
Given two continuous maps f and g, this is the continuous map (x, y) ↦ (f x, g y).
Abbreviation for product of continuous maps, which is continuous
Equations
- continuous_map.pi f = {to_fun := λ (a : A) (i : I), ⇑(f i) a, continuous_to_fun := _}
The restriction of a continuous function α → β to a subset s of α.
Equations
- continuous_map.restrict s f = {to_fun := ⇑f ∘ coe, continuous_to_fun := _}
The restriction of a continuous map to the preimage of a set.
Equations
- f.restrict_preimage s = {to_fun := s.restrict_preimage ⇑f, continuous_to_fun := _}
A family φ i of continuous maps C(S i, β), where the domains S i contain a neighbourhood
of each point in α and the functions φ i agree pairwise on intersections, can be glued to
construct a continuous map in C(α, β).
Equations
- continuous_map.lift_cover S φ hφ hS = {to_fun := set.lift_cover S (λ (i : ι), ⇑(φ i)) hφ _, continuous_to_fun := _}
A family F s of continuous maps C(s, β), where (1) the domains s are taken from a set A
of sets in α which contain a neighbourhood of each point in α and (2) the functions F s agree
pairwise on intersections, can be glued to construct a continuous map in C(α, β).
The forward direction of a homeomorphism, as a bundled continuous map.
Equations
- e.to_continuous_map = {to_fun := ⇑e, continuous_to_fun := _}
homeomorph.to_continuous_map as a coercion.
Equations
Left inverse to a continuous map from a homeomorphism, mirroring equiv.symm_comp_self.
Right inverse to a continuous map from a homeomorphism, mirroring equiv.self_comp_symm.