mathlib documentation

algebra.hom.non_unital_alg

Morphisms of non-unital algebras #

This file defines morphisms between two types, each of which carries:

The multiplications are not assumed to be associative or unital, or even to be compatible with the scalar actions. In a typical application, the operations will satisfy compatibility conditions making them into algebras (albeit possibly non-associative and/or non-unital) but such conditions are not required to make this definition.

This notion of morphism should be useful for any category of non-unital algebras. The motivating application at the time it was introduced was to be able to state the adjunction property for magma algebras. These are non-unital, non-associative algebras obtained by applying the group-algebra construction except where we take a type carrying just has_mul instead of group.

For a plausible future application, one could take the non-unital algebra of compactly-supported functions on a non-compact topological space. A proper map between a pair of such spaces (contravariantly) induces a morphism between their algebras of compactly-supported functions which will be a non_unital_alg_hom.

TODO: add non_unital_alg_equiv when needed.

Main definitions #

Tags #

non-unital, algebra, morphism

@[nolint]
structure non_unital_alg_hom (R : Type u) (A : Type v) (B : Type w) [monoid R] [non_unital_non_assoc_semiring A] [distrib_mul_action R A] [non_unital_non_assoc_semiring B] [distrib_mul_action R B] :
Type (max v w)

A morphism respecting addition, multiplication, and scalar multiplication. When these arise from algebra structures, this is the same as a not-necessarily-unital morphism of algebras.

@[simp]
@[ext]
theorem non_unital_alg_hom.ext {R : Type u} {A : Type v} {B : Type w} [monoid R] [non_unital_non_assoc_semiring A] [distrib_mul_action R A] [non_unital_non_assoc_semiring B] [distrib_mul_action R B] {f g : A →ₙₐ[R] B} (h : ∀ (x : A), f x = g x) :
f = g
theorem non_unital_alg_hom.ext_iff {R : Type u} {A : Type v} {B : Type w} [monoid R] [non_unital_non_assoc_semiring A] [distrib_mul_action R A] [non_unital_non_assoc_semiring B] [distrib_mul_action R B] {f g : A →ₙₐ[R] B} :
f = g ∀ (x : A), f x = g x
theorem non_unital_alg_hom.congr_fun {R : Type u} {A : Type v} {B : Type w} [monoid R] [non_unital_non_assoc_semiring A] [distrib_mul_action R A] [non_unital_non_assoc_semiring B] [distrib_mul_action R B] {f g : A →ₙₐ[R] B} (h : f = g) (x : A) :
f x = g x
@[simp]
theorem non_unital_alg_hom.coe_mk {R : Type u} {A : Type v} {B : Type w} [monoid R] [non_unital_non_assoc_semiring A] [distrib_mul_action R A] [non_unital_non_assoc_semiring B] [distrib_mul_action R B] (f : A → B) (h₁ : ∀ (m : R) (x : A), f (m x) = m f x) (h₂ : f 0 = 0) (h₃ : ∀ (x y : A), f (x + y) = f x + f y) (h₄ : ∀ (x y : A), f (x * y) = (f x) * f y) :
{to_fun := f, map_smul' := h₁, map_zero' := h₂, map_add' := h₃, map_mul' := h₄} = f
@[simp]
theorem non_unital_alg_hom.mk_coe {R : Type u} {A : Type v} {B : Type w} [monoid R] [non_unital_non_assoc_semiring A] [distrib_mul_action R A] [non_unital_non_assoc_semiring B] [distrib_mul_action R B] (f : A →ₙₐ[R] B) (h₁ : ∀ (m : R) (x : A), f (m x) = m f x) (h₂ : f 0 = 0) (h₃ : ∀ (x y : A), f (x + y) = f x + f y) (h₄ : ∀ (x y : A), f (x * y) = (f x) * f y) :
{to_fun := f, map_smul' := h₁, map_zero' := h₂, map_add' := h₃, map_mul' := h₄} = f
@[simp, norm_cast]
@[simp, norm_cast]
theorem non_unital_alg_hom.to_mul_hom_injective {R : Type u} {A : Type v} {B : Type w} [monoid R] [non_unital_non_assoc_semiring A] [distrib_mul_action R A] [non_unital_non_assoc_semiring B] [distrib_mul_action R B] {f g : A →ₙₐ[R] B} (h : f = g) :
f = g
@[norm_cast]
theorem non_unital_alg_hom.coe_distrib_mul_action_hom_mk {R : Type u} {A : Type v} {B : Type w} [monoid R] [non_unital_non_assoc_semiring A] [distrib_mul_action R A] [non_unital_non_assoc_semiring B] [distrib_mul_action R B] (f : A →ₙₐ[R] B) (h₁ : ∀ (m : R) (x : A), f (m x) = m f x) (h₂ : f 0 = 0) (h₃ : ∀ (x y : A), f (x + y) = f x + f y) (h₄ : ∀ (x y : A), f (x * y) = (f x) * f y) :
{to_fun := f, map_smul' := h₁, map_zero' := h₂, map_add' := h₃, map_mul' := h₄} = {to_fun := f, map_smul' := h₁, map_zero' := h₂, map_add' := h₃}
@[norm_cast]
theorem non_unital_alg_hom.coe_mul_hom_mk {R : Type u} {A : Type v} {B : Type w} [monoid R] [non_unital_non_assoc_semiring A] [distrib_mul_action R A] [non_unital_non_assoc_semiring B] [distrib_mul_action R B] (f : A →ₙₐ[R] B) (h₁ : ∀ (m : R) (x : A), f (m x) = m f x) (h₂ : f 0 = 0) (h₃ : ∀ (x y : A), f (x + y) = f x + f y) (h₄ : ∀ (x y : A), f (x * y) = (f x) * f y) :
{to_fun := f, map_smul' := h₁, map_zero' := h₂, map_add' := h₃, map_mul' := h₄} = {to_fun := f, map_mul' := h₄}
@[simp]
theorem non_unital_alg_hom.map_smul {R : Type u} {A : Type v} {B : Type w} [monoid R] [non_unital_non_assoc_semiring A] [distrib_mul_action R A] [non_unital_non_assoc_semiring B] [distrib_mul_action R B] (f : A →ₙₐ[R] B) (c : R) (x : A) :
f (c x) = c f x
@[simp]
theorem non_unital_alg_hom.map_add {R : Type u} {A : Type v} {B : Type w} [monoid R] [non_unital_non_assoc_semiring A] [distrib_mul_action R A] [non_unital_non_assoc_semiring B] [distrib_mul_action R B] (f : A →ₙₐ[R] B) (x y : A) :
f (x + y) = f x + f y
@[simp]
theorem non_unital_alg_hom.map_mul {R : Type u} {A : Type v} {B : Type w} [monoid R] [non_unital_non_assoc_semiring A] [distrib_mul_action R A] [non_unital_non_assoc_semiring B] [distrib_mul_action R B] (f : A →ₙₐ[R] B) (x y : A) :
f (x * y) = (f x) * f y
@[simp]
theorem non_unital_alg_hom.map_zero {R : Type u} {A : Type v} {B : Type w} [monoid R] [non_unital_non_assoc_semiring A] [distrib_mul_action R A] [non_unital_non_assoc_semiring B] [distrib_mul_action R B] (f : A →ₙₐ[R] B) :
f 0 = 0
@[protected, instance]
Equations
@[protected, instance]
Equations
@[simp]
@[simp]
theorem non_unital_alg_hom.coe_one {R : Type u} {A : Type v} [monoid R] [non_unital_non_assoc_semiring A] [distrib_mul_action R A] :
theorem non_unital_alg_hom.zero_apply {R : Type u} {A : Type v} {B : Type w} [monoid R] [non_unital_non_assoc_semiring A] [distrib_mul_action R A] [non_unital_non_assoc_semiring B] [distrib_mul_action R B] (a : A) :
0 a = 0
theorem non_unital_alg_hom.one_apply {R : Type u} {A : Type v} [monoid R] [non_unital_non_assoc_semiring A] [distrib_mul_action R A] (a : A) :
1 a = a
@[protected, instance]
Equations

The composition of morphisms is a morphism.

Equations
@[simp, norm_cast]
theorem non_unital_alg_hom.coe_comp {R : Type u} {A : Type v} {B : Type w} {C : Type w₁} [monoid R] [non_unital_non_assoc_semiring A] [distrib_mul_action R A] [non_unital_non_assoc_semiring B] [distrib_mul_action R B] [non_unital_non_assoc_semiring C] [distrib_mul_action R C] (f : B →ₙₐ[R] C) (g : A →ₙₐ[R] B) :
(f.comp g) = f g
theorem non_unital_alg_hom.comp_apply {R : Type u} {A : Type v} {B : Type w} {C : Type w₁} [monoid R] [non_unital_non_assoc_semiring A] [distrib_mul_action R A] [non_unital_non_assoc_semiring B] [distrib_mul_action R B] [non_unital_non_assoc_semiring C] [distrib_mul_action R C] (f : B →ₙₐ[R] C) (g : A →ₙₐ[R] B) (x : A) :
(f.comp g) x = f (g x)
def non_unital_alg_hom.inverse {R : Type u} {A : Type v} {B : Type w} [monoid R] [non_unital_non_assoc_semiring A] [distrib_mul_action R A] [non_unital_non_assoc_semiring B] [distrib_mul_action R B] (f : A →ₙₐ[R] B) (g : B → A) (h₁ : function.left_inverse g f) (h₂ : function.right_inverse g f) :

The inverse of a bijective morphism is a morphism.

Equations
@[simp]
theorem non_unital_alg_hom.coe_inverse {R : Type u} {A : Type v} {B : Type w} [monoid R] [non_unital_non_assoc_semiring A] [distrib_mul_action R A] [non_unital_non_assoc_semiring B] [distrib_mul_action R B] (f : A →ₙₐ[R] B) (g : B → A) (h₁ : function.left_inverse g f) (h₂ : function.right_inverse g f) :
(f.inverse g h₁ h₂) = g
def alg_hom.to_non_unital_alg_hom {R : Type u} {A : Type v} {B : Type w} [comm_semiring R] [semiring A] [semiring B] [algebra R A] [algebra R B] (f : A →ₐ[R] B) :

A unital morphism of algebras is a non_unital_alg_hom.

Equations
@[protected, instance]
def alg_hom.non_unital_alg_hom.has_coe {R : Type u} {A : Type v} {B : Type w} [comm_semiring R] [semiring A] [semiring B] [algebra R A] [algebra R B] :
Equations
@[simp]
theorem alg_hom.to_non_unital_alg_hom_eq_coe {R : Type u} {A : Type v} {B : Type w} [comm_semiring R] [semiring A] [semiring B] [algebra R A] [algebra R B] (f : A →ₐ[R] B) :
@[simp, norm_cast]
theorem alg_hom.coe_to_non_unital_alg_hom {R : Type u} {A : Type v} {B : Type w} [comm_semiring R] [semiring A] [semiring B] [algebra R A] [algebra R B] (f : A →ₐ[R] B) :