mathlib3 documentation

group_theory.abelianization

The abelianization of a group #

THIS FILE IS SYNCHRONIZED WITH MATHLIB4. Any changes to this file require a corresponding PR to mathlib4.

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 #

@[protected, instance]
def commutator.normal (G : Type u) [group G] :
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
Instances for commutator
Instances for commutator
@[protected, instance]
@[protected, instance]
def abelianization (G : Type u) [group G] :

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

Equations
Instances for abelianization
@[protected, instance]
Equations
@[protected, instance]
def abelianization.fintype (G : Type u) [group G] [fintype G] [decidable_pred (λ (_x : G), _x commutator G)] :
Equations
@[protected, instance]

of is the canonical projection from G to its abelianization.

Equations
@[simp]
theorem abelianization.mk_eq_of {G : Type u} [group G] (a : G) :
theorem abelianization.commutator_subset_ker {G : Type u} [group G] {A : Type v} [comm_group A] (f : G →* A) :
def abelianization.lift {G : Type u} [group G] {A : Type v} [comm_group A] :

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
@[simp]
theorem abelianization.lift.of {G : Type u} [group G] {A : Type v} [comm_group A] (f : G →* A) (x : G) :
theorem abelianization.lift.unique {G : Type u} [group G] {A : Type v} [comm_group A] (f : G →* A) (φ : abelianization G →* A) (hφ : (x : G), φ (abelianization.of x) = f x) {x : abelianization G} :
def abelianization.map {G : Type u} [group G] {H : Type v} [group H] (f : G →* H) :

The map operation of the abelianization functor

Equations
@[simp]
theorem abelianization.map_of {G : Type u} [group G] {H : Type v} [group H] (f : G →* H) (x : G) :
@[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) :
@[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} :

Equivalent groups have equivalent abelianizations

Equations
@[simp]
theorem abelianization_congr_of {G : Type u} [group G] {H : Type v} [group H] (e : G ≃* H) (x : G) :
@[simp]
@[simp]
theorem abelianization_congr_trans {G : Type u} [group G] {H : Type v} [group H] (e : G ≃* H) {I : Type v} [group I] (e₂ : H ≃* I) :

An Abelian group is equivalent to its own abelianization.

Equations
def commutator_representatives (G : Type u) [group G] :
set (G × G)

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

Equations
Instances for commutator_representatives

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

Equations
Instances for closure_commutator_representatives