The dihedral group of order 32 is nilpotent; we compute its lower central series.
> D16<a,b> := DihedralGroup(GrpGPC, 16);
> IsNilpotent(D16);
true
> NilpotencyClass(D16);
4
> L := LowerCentralSeries(D16);
The generators of the subgroups in the lower central series expressed as
elements of D16 are:
> for i := 1 to 1+NilpotencyClass(D16) do
> print i, ":", {@ D16!x : x in PCGenerators(L[i]) @};
> end for;
1 : {@ a, b @}
2 : {@ b^2 @}
3 : {@ b^4 @}
4 : {@ b^8 @}
5 : {@ @}
We compute a nilpotent presentation and express the new generators in terms of a and b:
> N<p,q,r,s,t>, f := NilpotentPresentation(D16);
> N;
GrpGPC : N of order 2^5 on 5 PC-generators
PC-Relations:
p^2 = Id(N),
q^2 = r,
r^2 = s,
s^2 = t,
t^2 = Id(N),
q^p = q * r * s * t,
r^p = r * s * t,
s^p = s * t
> {@ x@@f : x in PCGenerators(N) @};
{@ a, b, b^2, b^4, b^8 @}
The infinite dihedral group has an infinite, strictly descending, lower central
series which cannot be computed:
> D := DihedralGroup(GrpGPC, 0);
> HasComputableLCS(D);
false
It is easy to see, that b^(2
i - 1) would be a generator of L
i.
The symmetric group on 3 letters is not nilpotent, but has a lower central
series which becomes stationary and which can be computed:
> F2<a,b> := FreeGroup(2);
> rels := [ a^2 = F2!1, b^3 = F2!1, b^a = b^2 ];
> G<a,b> := quo<GrpGPC : F2 | rels>;
> G;
GrpGPC : G of order 6 = 2 * 3 on 2 PC-generators
PC-Relations:
a^2 = Id(G),
b^3 = Id(G),
b^a = b^2
> IsNilpotent(G);
false
> HasComputableLCS(G);
true
> L := LowerCentralSeries(G);
> for i := 1 to #L do
> print i, ":", {@ G!x : x in PCGenerators(L[i]) @};
> end for;
1 : {@ a, b @}
2 : {@ b @}
The maximal abelian quotient G/Gprime of the group G as GrpAb
(cf. Chapter ABELIAN GROUPS). The natural epimorphism is returned as second
return value.
AQInvariants(G) : GrpGPC -> [ RngIntElt ]
Returns a sequence containing the invariants of the maximal abelian quotient
G/Gprime of the group G. Each infinite cyclic factor of G/Gprime
is represented by zero.
The maximal p-elementary abelian quotient of the group G as GrpAb
(cf. Chapter ABELIAN GROUPS). The natural epimorphism is returned as second
return value.
The maximal free abelian quotient of the group G as GrpAb
(cf. Chapter ABELIAN GROUPS). The natural epimorphism is returned as second
return value.
[Next][Prev] [Right] [Left] [Up] [Index] [Root]