Documentation

Mathlib.GroupTheory.SpecificGroups.Alternating

Alternating Groups #

The alternating group on a finite type α is the subgroup of the permutation group Perm α consisting of the even permutations.

Main definitions #

Main results #

Tags #

alternating group permutation

TODO #

The alternating group on a finite type, realized as a subgroup of Equiv.Perm. For $A_n$, use alternatingGroup (Fin n).

Equations
Instances For
    instance fta (α : Type u_1) [Fintype α] [DecidableEq α] :
    Equations
    @[simp]
    theorem Equiv.Perm.mem_alternatingGroup {α : Type u_1} [Fintype α] [DecidableEq α] {f : Equiv.Perm α} :
    f alternatingGroup α Equiv.Perm.sign f = 1
    Equations
    • =
    theorem alternatingGroup.isConj_of {α : Type u_1} [Fintype α] [DecidableEq α] {σ : (alternatingGroup α)} {τ : (alternatingGroup α)} (hc : IsConj σ τ) (hσ : (Equiv.Perm.support σ).card + 2 Fintype.card α) :
    IsConj σ τ
    theorem alternatingGroup.isThreeCycle_isConj {α : Type u_1} [Fintype α] [DecidableEq α] (h5 : 5 Fintype.card α) {σ : (alternatingGroup α)} {τ : (alternatingGroup α)} (hσ : Equiv.Perm.IsThreeCycle σ) (hτ : Equiv.Perm.IsThreeCycle τ) :
    IsConj σ τ
    theorem Equiv.Perm.IsThreeCycle.alternating_normalClosure {α : Type u_1} [Fintype α] [DecidableEq α] (h5 : 5 Fintype.card α) {f : Equiv.Perm α} (hf : Equiv.Perm.IsThreeCycle f) :
    Subgroup.normalClosure {{ val := f, property := }} =

    A key lemma to prove $A_5$ is simple. Shows that any normal subgroup of an alternating group on at least 5 elements is the entire alternating group if it contains a 3-cycle.

    Part of proving $A_5$ is simple. Shows that the square of any element of $A_5$ with a 3-cycle in its cycle decomposition is a 3-cycle, so the normal closure of the original element must be $A_5$.

    The normal closure of the 5-cycle finRotate 5 within $A_5$ is the whole group. This will be used to show that the normal closure of any 5-cycle within $A_5$ is the whole group.

    The normal closure of $(04)(13)$ within $A_5$ is the whole group. This will be used to show that the normal closure of any permutation of cycle type $(2,2)$ is the whole group.

    Shows that any non-identity element of $A_5$ whose cycle decomposition consists only of swaps is conjugate to $(04)(13)$. This is used to show that the normal closure of such a permutation in $A_5$ is $A_5$.

    Shows that $A_5$ is simple by taking an arbitrary non-identity element and showing by casework on its cycle type that its normal closure is all of $A_5$.

    Equations