[Next][Prev] [Right] [Left] [Up] [Index] [Root]
Subsections
Given a finite p-group G, return the characteristic subgroup
of G generated by the elements x^(p^i), x in G, where
i is a positive integer.
Center(G) : GrpAb -> GrpAb
The centre of the group G.
A chief series for the group G. The series is returned as a sequence
of subgroups of G.
The derived length of the group G.
The derived series of the group G. The series is returned as a
sequence of subgroups.
DerivedGroup(G) : GrpAb -> GrpAb
The derived subgroup of the group G.
An elementary abelian series is a chain of normal subgroups with
the property that the quotient of each pair of successive terms
in the series is elementary abelian. Thus, it refines the derived
series. The elementary abelian series for the group G is returned
as a sequence of subgroups.
The Fitting subgroup of the group G.
The Frattini subgroup of the group G.
Hypercenter(G) : GrpAb -> GrpAb
The hypercentre of the group G, i.e. the stationary term in the
upper central series for G.
The nilpotency class of the group G. If G is not nilpotent, then
-1 is returned.
Given a finite p-group G, return the characteristic subgroup of G
generated by the elements of order dividing p^i, where i is a
positive integer.
Given a group G and a subgroup H of G, return a sequence
of subgroups commencing with G and terminating with H, such that
each subgroup is normal in the previous one. If H is not subnormal
in G, the empty sequence is returned.
The upper central series of G. The series is returned as a sequence
of subgroups.
The maximal subgroups of the finite group G returned as a sequence
of subgroups.
The subgroups of the finite group G returned as a sequence of records.
The record fields are subgroup, storing the actual group;
order, storing the group order; and length, storing the
length of the conjugacy class, which is always 1 for abelian groups.
Sub: [RngIntElt] Default: []
If parameter Sub is set, only subgroups with invariants equal to
the given sequence are found. The given sequence should contain positive
integers, such that each divides the following.
Quot: [RngIntElt] Default: []
If parameter Quot is set, only subgroups such that the quotient
group has invariants equal to the given sequence are found.
The given sequence should contain positive
integers, such that each divides the following.
We look at subgroups of an abelian group of order 12.
> G := AbelianGroup([2,6]);
> s := Subgroups(G); #s;
10
> s[7];
rec<recformat<order, length, subgroup,
presentation> | order := 3, length := 1, subgroup
:= Abelian Group isomorphic to Z/3
Defined on 1 generator in supergroup G:
.1 = 2 * G.2
Relations:
3 *.1 = 0>
> [x`order:x in s];
[ 12, 6, 4, 2, 6, 6, 3, 2, 2, 1 ]
Now we find the elementary abelian subgroup of order 4.
> s22 := Subgroups(G:Sub := [2,2]); #s22;
1
> s22;
Conjugacy classes of subgroups
------------------------------
[1] Order 4 Length 1
Abelian Group isomorphic to Z/2 + Z/2
Defined on 2 generators in supergroup G:
.1 = G.1
.2 = 3*G.2
Relations:
2*.1 = 0
2 *.2 = 0
There is more than one subgroup of index 2 in G.
> q2 := Subgroups(G:Quot := [2]); #q2;
3
> q2[3]`subgroup;
Abelian Group isomorphic to Z/6
Defined on 1 generator in supergroup G:
.1 = G.1 + G.2
Relations:
6 *.1 = 0
[Next][Prev] [Right] [Left] [Up] [Index] [Root]