mathlib documentation

algebra.category.Group.colimits

The category of additive commutative groups has all colimits. #

This file uses a "pre-automated" approach, just as for Mon/colimits.lean. It is a very uniform approach, that conceivably could be synthesised directly by a tactic that analyses the shape of add_comm_group and monoid_hom.

TODO: In fact, in AddCommGroup there is a much nicer model of colimits as quotients of finitely supported functions, and we really should implement this as well (or instead).

We build the colimit of a diagram in AddCommGroup by constructing the free group on the disjoint union of all the abelian groups in the diagram, then taking the quotient by the abelian group laws within each abelian group, and the identifications given by the morphisms in the diagram.

An inductive type representing all group expressions (without relations) on a collection of types indexed by the objects of J.

Instances for AddCommGroup.colimits.prequotient

The relation on prequotient saying when two expressions are equal because of the abelian group laws, or because one element is mapped to another by a morphism in the diagram.

@[instance]

The setoid corresponding to group expressions modulo abelian group relations and identifications.

Equations
@[protected, instance]
Equations
@[simp]
theorem AddCommGroup.colimits.quot_add {J : Type v} [category_theory.small_category J] (F : J AddCommGroup) (x y : AddCommGroup.colimits.prequotient F) :
quot.mk setoid.r (x.add y) = quot.mk setoid.r x + quot.mk setoid.r y

The bundled abelian group giving the colimit of a diagram.

Equations

The function from a given abelian group in the diagram to the colimit abelian group.

Equations

The group homomorphism from a given abelian group in the diagram to the colimit abelian group.

Equations

The function from the colimit abelian group to the cone point of any other cocone.

Equations

The group homomorphism from the colimit abelian group to the cone point of any other cocone.

Equations