Homomorphisms of R-algebras #
This file defines bundled homomorphisms of R-algebras.
Main definitions #
AlgHom R A B: the type ofR-algebra morphisms fromAtoB.Algebra.ofId R A : R →ₐ[R] A: the canonical map fromRtoA, as anAlgHom.
Notations #
A →ₐ[R] B:R-algebra homomorphism fromAtoB.
- toFun : A → B
- map_one' : OneHom.toFun (↑↑↑s) 1 = 1
- map_mul' : ∀ (x y : A), OneHom.toFun (↑↑↑s) (x * y) = OneHom.toFun (↑↑↑s) x * OneHom.toFun (↑↑↑s) y
- map_zero' : OneHom.toFun (↑↑↑s) 0 = 0
- map_add' : ∀ (x y : A), OneHom.toFun (↑↑↑s) (x + y) = OneHom.toFun (↑↑↑s) x + OneHom.toFun (↑↑↑s) y
- commutes' : ∀ (r : R), OneHom.toFun (↑↑↑s) (↑(algebraMap R A) r) = ↑(algebraMap R B) r
Defining the homomorphism in the category R-Alg.
Instances For
Defining the homomorphism in the category R-Alg.
Equations
- «term_→ₐ_» = Lean.ParserDescr.trailingNode `term_→ₐ_ 25 26 (Lean.ParserDescr.binary `andthen (Lean.ParserDescr.symbol " →ₐ ") (Lean.ParserDescr.cat `term 25))
Instances For
Defining the homomorphism in the category R-Alg.
Equations
- One or more equations did not get rendered due to their size.
Instances For
- coe : F → A → B
- coe_injective' : Function.Injective FunLike.coe
- map_one : ∀ (f : F), ↑f 1 = 1
- map_zero : ∀ (f : F), ↑f 0 = 0
- commutes : ∀ (f : F) (r : R), ↑f (↑(algebraMap R A) r) = ↑(algebraMap R B) r
AlgHomClass F R A B asserts F is a type of bundled algebra homomorphisms
from A to B.
Instances
Equations
- AlgHomClass.linearMapClass = let src := inst; SemilinearMapClass.mk (_ : ∀ (f : F) (r : R) (x : A), ↑f (r • x) = r • ↑f x)
Turn an element of a type F satisfying AlgHomClass F α β into an actual
AlgHom. This is declared as the default coercion from F to α →+* β.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- AlgHom.algHomClass = AlgHomClass.mk (_ : ∀ (f : A →ₐ[R] B) (r : R), OneHom.toFun (↑↑↑f) (↑(algebraMap R A) r) = ↑(algebraMap R B) r)
See Note [custom simps projection]
Equations
- AlgHom.Simps.apply f = ↑f
Instances For
If a RingHom is R-linear, then it is an AlgHom.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Composition of algebra homeomorphisms.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Promote a LinearMap to an AlgHom by supplying proofs about the behavior on 1 and *.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Reinterpret a RingHom as a ℚ-algebra homomorphism. This actually yields an equivalence,
see RingHom.equivRatAlgHom.
Equations
- One or more equations did not get rendered due to their size.
Instances For
AlgebraMap as an AlgHom.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Each element of the monoid defines an algebra homomorphism.
This is a stronger version of MulSemiringAction.toRingHom and
DistribMulAction.toLinearMap.
Equations
- One or more equations did not get rendered due to their size.