Additive Functors #
THIS FILE IS SYNCHRONIZED WITH MATHLIB4. Any changes to this file require a corresponding PR to mathlib4.
A functor between two preadditive categories is called additive provided that the induced map on hom types is a morphism of abelian groups.
An additive functor between preadditive categories creates and preserves biproducts.
Conversely, if F : C ⥤ D is a functor between preadditive categories, where C has binary
biproducts, and if F preserves binary biproducts, then F is additive.
We also define the category of bundled additive functors.
Implementation details #
functor.additive is a Prop-valued class, defined by saying that for every two objects X and
Y, the map F.map : (X ⟶ Y) → (F.obj X ⟶ F.obj Y) is a morphism of abelian groups.
A functor F is additive provided F.map is an additive homomorphism.
Instances of this typeclass
- category_theory.functor.id.additive
- category_theory.functor.comp.additive
- category_theory.functor.induced_functor_additive
- category_theory.functor.full_subcategory_inclusion_additive
- category_theory.equivalence.inverse_additive
- category_theory.AdditiveFunctor.forget.functor.additive
- category_theory.AdditiveFunctor.field_1.functor.additive
- Module.forget₂_AddCommGroup_additive
F.map_add_hom is an additive homomorphism whose underlying function is F.map.
Equations
- F.map_add_hom = add_monoid_hom.mk' (λ (f : X ⟶ Y), F.map f) _
Equations
- F.preserves_finite_biproducts_of_additive = {preserves := λ (J : Type) (_x : fintype J), {preserves := λ (f : J → C), {preserves := λ (b : category_theory.limits.bicone f) (hb : b.is_bilimit), category_theory.limits.is_bilimit_of_total (F.map_bicone b) _}}}
Bundled additive functors.
Equations
- (C ⥤+ D) = category_theory.full_subcategory (λ (F : C ⥤ D), F.additive)
Instances for category_theory.AdditiveFunctor
An additive functor is in particular a functor.
Equations
- category_theory.AdditiveFunctor.forget C D = category_theory.full_subcategory_inclusion (λ (F : C ⥤ D), F.additive)
Instances for category_theory.AdditiveFunctor.forget
Turn an additive functor into an object of the category AdditiveFunctor C D.
Equations
- category_theory.AdditiveFunctor.of F = {obj := F, property := _}
Turn a left exact functor into an additive functor.
Equations
Instances for category_theory.AdditiveFunctor.of_left_exact
Turn a right exact functor into an additive functor.
Equations
Instances for category_theory.AdditiveFunctor.of_right_exact
Turn an exact functor into an additive functor.