Documentation

Mathlib.GroupTheory.Abelianization

The abelianization of a group #

This file defines the commutator and the abelianization of a group. It furthermore prepares for the result that the abelianization is left adjoint to the forgetful functor from abelian groups to groups, which can be found in Algebra/Category/Group/Adjunctions.

Main definitions #

def commutator (G : Type u) [Group G] :

The commutator subgroup of a group G is the normal subgroup generated by the commutators [p,q]=p*q*p⁻¹*q⁻¹.

Equations
def Abelianization (G : Type u) [Group G] :

The abelianization of G is the quotient of G by its commutator subgroup.

Equations

of is the canonical projection from G to its abelianization.

Equations
@[simp]
theorem Abelianization.mk_eq_of {G : Type u} [Group G] (a : G) :
@[simp]

If f : G → A is a group homomorphism to an abelian group, then lift f is the unique map from the abelianization of a G to A that factors through f.

Equations
  • One or more equations did not get rendered due to their size.
@[simp]
theorem Abelianization.lift.of {G : Type u} [Group G] {A : Type v} [CommGroup A] (f : G →* A) (x : G) :
theorem Abelianization.lift.unique {G : Type u} [Group G] {A : Type v} [CommGroup A] (f : G →* A) (φ : Abelianization G →* A) (hφ : ∀ (x : G), φ (Abelianization.of x) = f x) {x : Abelianization G} :
φ x = (lift f) x
theorem Abelianization.hom_ext {G : Type u} [Group G] {A : Type v} [Monoid A] (φ ψ : Abelianization G →* A) (h : φ.comp of = ψ.comp of) :
φ = ψ

See note [partially-applied ext lemmas].

@[simp]
theorem Abelianization.lift_of_comp {G : Type u} [Group G] {H : Type v} [Group H] (f : G →* H) :
lift (of.comp f) = map f

Use map as the preferred simp normal form.

@[simp]
theorem Abelianization.map_of {G : Type u} [Group G] {H : Type v} [Group H] (f : G →* H) (x : G) :
(map f) (of x) = of (f x)
@[simp]
theorem Abelianization.map_comp {G : Type u} [Group G] {H : Type v} [Group H] (f : G →* H) {I : Type w} [Group I] (g : H →* I) :
(map g).comp (map f) = map (g.comp f)
@[simp]
theorem Abelianization.map_map_apply {G : Type u} [Group G] {H : Type v} [Group H] (f : G →* H) {I : Type w} [Group I] {g : H →* I} {x : Abelianization G} :
(map g) ((map f) x) = (map (g.comp f)) x

Equivalent groups have equivalent abelianizations

Equations
@[simp]
theorem abelianizationCongr_of {G : Type u} [Group G] {H : Type v} [Group H] (e : G ≃* H) (x : G) :
@[simp]
theorem abelianizationCongr_trans {G : Type u} [Group G] {H : Type v} [Group H] {I : Type v} [Group I] (e : G ≃* H) (e₂ : H ≃* I) :

An Abelian group is equivalent to its own abelianization.

Equations
@[simp]
theorem Abelianization.equivOfComm_apply {H : Type u_1} [CommGroup H] (a : H) :

Representatives (g₁, g₂) : G × G of commutators ⁅g₁, g₂⁆ ∈ G.

Equations

Subgroup generated by representatives g₁ g₂ : G of commutators ⁅g₁, g₂⁆ ∈ G.

Equations