Continuous Monoid Homs #
This file defines the space of continuous homomorphisms between two topological groups.
Main definitions #
ContinuousMonoidHom A B: The continuous homomorphismsA →* B.ContinuousAddMonoidHom A B: The continuous additive homomorphismsA →+ B.
The type of continuous additive monoid homomorphisms from A to B.
- toFun : A → B
- map_zero' : (↑self.toAddMonoidHom).toFun 0 = 0
- map_add' (x y : A) : (↑self.toAddMonoidHom).toFun (x + y) = (↑self.toAddMonoidHom).toFun x + (↑self.toAddMonoidHom).toFun y
- continuous_toFun : Continuous (↑self.toAddMonoidHom).toFun
Instances For
The type of continuous monoid homomorphisms from A to B.
When possible, instead of parametrizing results over (f : ContinuousMonoidHom A B),
you should parametrize
over (F : Type*) [FunLike F A B] [ContinuousMapClass F A B] [MonoidHomClass F A B] (f : F).
When you extend this structure,
make sure to extend ContinuousMapClass and/or MonoidHomClass, if needed.
- toFun : A → B
- map_one' : (↑self.toMonoidHom).toFun 1 = 1
- map_mul' (x y : A) : (↑self.toMonoidHom).toFun (x * y) = (↑self.toMonoidHom).toFun x * (↑self.toMonoidHom).toFun y
- continuous_toFun : Continuous (↑self.toMonoidHom).toFun
Instances For
The type of continuous monoid homomorphisms from A to B.
Instances For
The type of continuous monoid homomorphisms from A to B.
Instances For
Turn an element of a type F satisfying MonoidHomClass F A B and ContinuousMapClass F A B
into a ContinuousMonoidHom. This is declared as the default coercion from F to
(A →ₜ* B).
Instances For
Turn an element of a type F satisfying
AddMonoidHomClass F A B and ContinuousMapClass F A B into a ContinuousAddMonoidHom.
This is declared as the default coercion from F to ContinuousAddMonoidHom A B.
Instances For
Any type satisfying MonoidHomClass and ContinuousMapClass can be cast into
ContinuousMonoidHom via ContinuousMonoidHom.toContinuousMonoidHom.
Any type satisfying AddMonoidHomClass and ContinuousMapClass can be cast into
ContinuousAddMonoidHom via ContinuousAddMonoidHom.toContinuousAddMonoidHom.
Composition of two continuous homomorphisms.
Instances For
Composition of two continuous homomorphisms.
Instances For
Product of two continuous homomorphisms on the same space.
Instances For
Product of two continuous homomorphisms on the same space.
Instances For
Product of two continuous homomorphisms on different spaces.
Instances For
Product of two continuous homomorphisms on different spaces.
Instances For
The trivial continuous homomorphism.
The trivial continuous homomorphism.
The identity continuous homomorphism.
Instances For
The identity continuous homomorphism.
Instances For
The continuous homomorphism given by projection onto the first factor.
Instances For
The continuous homomorphism given by projection onto the first factor.
Instances For
The continuous homomorphism given by projection onto the second factor.
Instances For
The continuous homomorphism given by projection onto the second factor.
Instances For
The continuous homomorphism given by inclusion of the first factor.
Instances For
The continuous homomorphism given by inclusion of the first factor.
Instances For
The continuous homomorphism given by inclusion of the second factor.
Instances For
The continuous homomorphism given by inclusion of the second factor.
Instances For
The continuous homomorphism given by the diagonal embedding.
Instances For
The continuous homomorphism given by the diagonal embedding.
Instances For
The continuous homomorphism given by swapping components.
Instances For
The continuous homomorphism given by swapping components.
Instances For
The continuous homomorphism given by multiplication.
Instances For
The continuous homomorphism given by addition.
Instances For
Coproduct of two continuous homomorphisms to the same space.
Instances For
Coproduct of two continuous homomorphisms to the same space.
Instances For
The continuous homomorphism given by inversion.
Instances For
The continuous homomorphism given by negation.
Instances For
For f : F where F is a class of continuous monoid hom, this yields an element
ContinuousMonoidHom A B.
Instances For
For f : F where F is a class of continuous additive monoid hom, this yields
an element ContinuousAddMonoidHom A B.
Instances For
Continuous MulEquiv #
This section defines the space of continuous isomorphisms between two topological groups.
The structure of two-sided continuous isomorphisms between additive groups. Note that both the map and its inverse have to be continuous.
- toFun : G → H
- invFun : H → G
- continuous_toFun : Continuous self.toFun
- continuous_invFun : Continuous self.invFun
Instances For
The structure of two-sided continuous isomorphisms between groups. Note that both the map and its inverse have to be continuous.
- toFun : G → H
- invFun : H → G
- continuous_toFun : Continuous self.toFun
- continuous_invFun : Continuous self.invFun
Instances For
The structure of two-sided continuous isomorphisms between groups. Note that both the map and its inverse have to be continuous.
Instances For
The structure of two-sided continuous isomorphisms between additive groups. Note that both the map and its inverse have to be continuous.
Instances For
Two continuous multiplicative isomorphisms agree if they are defined by the same underlying function.
Two continuous additive isomorphisms agree if they are defined by the same underlying function.
Makes a continuous multiplicative isomorphism from a homeomorphism which preserves multiplication.
Instances For
Makes a continuous additive isomorphism from a homeomorphism which preserves addition.
Instances For
The identity map is a continuous multiplicative isomorphism.
Instances For
The identity map is a continuous additive isomorphism.
Instances For
The inverse of a ContinuousMulEquiv.
Instances For
The inverse of a ContinuousAddEquiv.
Instances For
See Note [custom simps projection]
Instances For
See Note [custom simps projection]
Instances For
e.symm is a right inverse of e, written as e (e.symm y) = y.
e.symm is a right inverse of e, written as e (e.symm y) = y.
The composition of two ContinuousMulEquiv.
Instances For
The composition of two ContinuousAddEquiv.
Instances For
The MulEquiv between two monoids with a unique element.
Instances For
The AddEquiv between two AddMonoids with a unique element.
Instances For
There is a unique monoid homomorphism between two monoids with a unique element.
There is a unique additive monoid homomorphism between two additive monoids with a unique element.
A MulEquiv that respects open sets is a ContinuousMulEquiv.
Instances For
An AddEquiv that respects open sets is a ContinuousAddEquiv.