Propositional typeclasses on several ring homs #
This file contains three typeclasses used in the definition of (semi)linear maps:
RingHomId σ
, which expresses the fact thatσ₂₃ = id
RingHomCompTriple σ₁₂ σ₂₃ σ₁₃
, which expresses the fact thatσ₂₃.comp σ₁₂ = σ₁₃
RingHomInvPair σ₁₂ σ₂₁
, which states thatσ₁₂
andσ₂₁
are inverses of each otherRingHomSurjective σ
, which states thatσ
is surjective These typeclasses ensure that objects such asσ₂₃.comp σ₁₂
never end up in the type of a semilinear map; instead, the typeclass system directly finds the appropriateRingHom
to use. A typical use-case is conjugate-linear maps, i.e. whenσ = Complex.conj
; this system ensures that composing two conjugate-linear maps is a linear map, and not aconj.comp conj
-linear map.
Instances of these typeclasses mostly involving RingHom.id
are also provided:
RingHomInvPair (RingHom.id R) (RingHom.id R)
[RingHomInvPair σ₁₂ σ₂₁] : RingHomCompTriple σ₁₂ σ₂₁ (RingHom.id R₁)
RingHomCompTriple (RingHom.id R₁) σ₁₂ σ₁₂
RingHomCompTriple σ₁₂ (RingHom.id R₂) σ₁₂
RingHomSurjective (RingHom.id R)
[RingHomInvPair σ₁ σ₂] : RingHomSurjective σ₁
Implementation notes #
For the typeclass
RingHomInvPair σ₁₂ σ₂₁
,σ₂₁
is marked as anoutParam
, as it must typically be found via the typeclass inference system.Likewise, for
RingHomCompTriple σ₁₂ σ₂₃ σ₁₃
,σ₁₃
is marked as anoutParam
, for the same reason.
Tags #
Class that expresses the fact that three ring homomorphisms form a composition triple. This is used to handle composition of semilinear maps.
- comp_eq : σ₂₃.comp σ₁₂ = σ₁₃
The morphisms form a commutative triangle
Instances
The morphisms form a commutative triangle
Class that expresses the fact that two ring homomorphisms are inverses of each other. This is
used to handle symm
for semilinear equivalences.
- comp_eq : RingHom.comp σ' σ = RingHom.id R₁
σ'
is a left inverse ofσ
- comp_eq₂ : σ.comp σ' = RingHom.id R₂
σ'
is a left inverse ofσ'
Instances
σ'
is a left inverse of σ
σ'
is a left inverse of σ'
Equations
- ⋯ = ⋯
Equations
- ⋯ = ⋯
Equations
- ⋯ = ⋯
Construct a RingHomInvPair
from both directions of a ring equiv.
This is not an instance, as for equivalences that are involutions, a better instance
would be RingHomInvPair e e
. Indeed, this declaration is not currently used in mathlib.
Swap the direction of a RingHomInvPair
. This is not an instance as it would loop, and better
instances are often available and may often be preferable to using this one. Indeed, this
declaration is not currently used in mathlib.
Equations
- ⋯ = ⋯
Equations
- ⋯ = ⋯
Class expressing the fact that a RingHom
is surjective. This is needed in the context
of semilinear maps, where some lemmas require this.
- is_surjective : Function.Surjective ⇑σ
The ring homomorphism is surjective
Instances
The ring homomorphism is surjective
Equations
- ⋯ = ⋯
Equations
- ⋯ = ⋯
This cannot be an instance as there is no way to infer σ₁₂
and σ₂₃
.