GroupTheory
SubgroupLattice
construct the lattice of subgroups of a group
Calling Sequence
Parameters
Description
Examples
Compatibility
SubgroupLattice(G)
convert(L, out)
SubgroupLattice(G, output = out)
G
-
a group data structure
L
the result returned by the SubgroupLattice command
out
one of the keywords list, maximalsubgroups, conjugacyclasses, layers, or graph (possibly with indices described below)
The subgroups of a group form a lattice under inclusion. The SubgroupLattice command computes this lattice and returns a data structure that can be interrogated about some of its properties.
The subgroup lattice displays the group G that was its input, the number of conjugacy classes of subgroups (since the subgroups arise from the computation in conjugacy classes), and the total number of subgroups.
All of the ways to access the information contained in the subgroup lattice L use the convert command as convert⁡L,out, for various values of out. (These are special conversions that are only valid for subgroup lattice data structures, not for general Maple objects.) Alternatively, if you need only one of the types of output, you can bypass using the convert command by using the corresponding output = out option.
convert(L, 'list') : return a list of subgroups
This returns a list of all subgroups. All subgroups have G as their supergroup.
convert(L, 'maximalsubgroups') : return a list of maximal subgroups
This is similar to convert(L, 'list'), but it returns only those subgroups that are maximal subgroups.
convert(L, 'conjugacyclasses') : return a list of subgroups, grouped by conjugacy class
This returns a list of lists of subgroups. The subgroups occur in the same order as above, but they are grouped by conjugacy class.
convert(L, 'layers') : return a list of conjugacy classes, grouped by layer
The lattice of subgroups is organized naturally in a number of layers, with the trivial subgroup at the bottom and G at the top: the layers are characterized by the number of (not necessarily distinct) prime factors in the order of its subgroups. This calling sequence returns a list of lists of lists of subgroups; the subgroups are first grouped into conjugacy classes, and then the conjugacy classes are grouped into layers.
The conjugacy classes occur in the same order as above. Within a layer, the conjugacy classes are sorted by the order of the subgroup: conjugacy classes of smaller subgroups before conjugacy classes of larger subgroups. For conjugacy classes of equally big subgroups, conjugacy classes with more subgroups in them come before smaller conjugacy classes. Remaining ties are broken arbitrarily.
convert(L, 'list[zuppos]'), convert(L, 'list[group, zuppos]'), convert(L, 'layer[zuppos]'), convert(L, 'maximalsubgroups[group]'), etc : return alternative or additional information for each subgroup
The algorithm for generating the subgroup lattice uses special generating sets for the subgroups, consisting of particular representatives for all cyclic subgroups of G of prime power order, or zuppos (the German-language acronym used for such subgroups). These generating sets can be used to test inclusion relations quickly: H1 is a subgroup of H2 if and only if the set of zuppo representatives in H1 is a subset of the set of zuppo representatives in H2.
Using the indexed forms of the conversions above allows you to access this additional information. This can be used with conversions to list, maximalsubgroups, conjugacyclasses, and layers. You can supply the index zuppos to obtain the set of zuppo representatives of H instead of each subgroup H. You can also supply both of the indices group and zuppos to obtain a list of both H itself and the set of zuppo representatives in H. Supplying no indices is equivalent to supplying just the index group.
Grouping of the resulting information is as before:
'list[...]' and 'maximalsubgroups[...]' will return a list where each element is the requested information for a single subgroup;
'conjugacyclasses[...]' will return a list of lists corresponding to conjugacy classes, where each element of a sublist is the requested information for a single subgroup;
'layers[...]' will return a list of lists of lists corresponding to layers, where each element of the sub-sublist is the requested information for a single subgroup.
For instance, convert(L, 'layers[group, zuppos]') will return a list of layers; each layer is represented by a list of conjugacy classes; each conjugacy class is represented by a list of subgroups; and each subgroup is represented by a two-element list of the subgroup data structure itself and its set of zuppo generators.
convert(L, 'graph') : convert to a GraphTheory graph data structure
This converts the subgroup lattice to a graph data structure as used by the GraphTheory package. The vertices are the numbers 1 through n, where n is the number of subgroups of G; the number i corresponds to the ith subgroup occurring in convert(L, 'list'). The vertices are drawn in horizontal layers corresponding to the layer structure described above and there is an edge from each vertex to each of its covering vertices (that is, its immediate parents in the lattice). Furthermore, in each layer, conjugacy classes of subgroups have their vertices closer together than for subgroups that are not conjugate.
convert(L, 'graph[weighted]') : convert to a GraphTheory weighted graph data structure
This results in a data structure very similar to convert(L, 'graph'), but the edge from subgroup H to subgroup K will have as its associated weight the index K : H - that is, the number of cosets of H in K, or the ratio of the group orders of K to H.
convert(L, 'graph[directed]') or convert(L, 'graph[weighted, directed]') : convert to a GraphTheory directed graph data structure
This results in a data structure very similar to convert(L, 'graph'), but the graph is directed. Each arc runs from a smaller subgroup to the bigger subgroup - that is, to a higher layer.
The algorithm used does not find any perfect subgroups of G, other than potentially G itself, its soluble residual, and the trivial group. If the soluble residual of G is of size at least 360, then it may contain other nontrivial perfect subgroups. These will not be found by the algorithm.
with⁡GroupTheory:
Consider a group of order 48.
g1≔SmallGroup⁡48,8
g1≔1,2,8,34,12,22,185,11,21,176,14,7,139,16,31,2010,15,32,1923,36,47,4424,35,48,4325,34,45,4226,33,46,4127,40,29,3828,39,30,37,1,4,7,21,8,22,6,52,11,14,18,3,17,13,129,23,29,45,31,47,27,2510,24,30,46,32,48,28,2615,33,39,43,19,41,37,3516,34,40,44,20,42,38,36,1,6,8,72,13,3,144,5,22,219,27,31,2910,28,32,3011,12,17,1815,37,19,3916,38,20,4023,25,47,4524,26,48,4633,35,41,4334,36,42,44,1,82,34,225,216,79,3110,3211,1712,1813,1415,1916,2023,4724,4825,4526,4627,2928,3033,4134,4235,4336,4437,3938,40,1,9,102,15,163,19,204,23,245,25,266,27,287,29,308,31,3211,33,3412,35,3613,37,3814,39,4017,41,4218,43,4421,45,4622,47,48
sgl1≔SubgroupLattice⁡g1
sgl1≔subgroup lattice18 conjugacy classes36 subgroups
graph1≔convert⁡sgl1,graph
graph1≔Graph 1: an undirected graph with 36 vertices and 83 edge(s)
GraphTheory:-DrawGraph⁡graph1
The bottom layer is only the trivial subgroup. The layer above that (which contains all subgroups of prime order) contains only two subgroups. Since there must be elements of order 2 and of order 3 in a group of order 48 by Sylow's theorems, there is only a single subgroup of order 2 (with a single element of order 2) and a single subgroup of order 3 (with two elements of order 3). These subgroups correspond to groups 2 and 3 in the list below.
subgroups1≔convert⁡sgl1,list:
subgroups12
1,82,34,225,216,79,3110,3211,1712,1813,1415,1916,2023,4724,4825,4526,4627,2928,3033,4134,4235,4336,4437,3938,40
subgroups13
1,10,92,16,153,20,194,24,235,26,256,28,277,30,298,32,3111,34,3312,36,3513,38,3714,40,3917,42,4118,44,4321,46,4522,48,47
From how sgl1 prints, we can already see the number of subgroups and conjugacy classes, but here is how we can obtain them programmatically.
numelems⁡subgroups1
36
conjugacy_classes1≔convert⁡sgl1,conjugacyclasses:
numelems⁡conjugacy_classes1
18
To obtain the maximum amount of information, use the command below.
layers1≔convert⁡sgl1,layersgroup,zuppos:
numelems⁡layers1
6
The following corresponds to the first group in the first conjugacy class in the third layer - subgroup 4 in the diagram above:
sg4≔layers1311
sg4≔1,15,8,192,31,3,94,35,22,435,33,21,416,39,7,3710,16,32,2011,45,17,2512,47,18,2313,27,14,2924,36,48,4426,34,46,4228,40,30,38,1,15,8,192,31,3,94,35,22,435,33,21,416,39,7,3710,16,32,2011,45,17,2512,47,18,2313,27,14,2924,36,48,4426,34,46,4228,40,30,38,1,82,34,225,216,79,3110,3211,1712,1813,1415,1916,2023,4724,4825,4526,4627,2928,3033,4134,4235,4336,4437,3938,40
We see that sg4 is a list of two elements: a group and a set of elements. These elements are the zuppo representatives that were chosen for the lattice construction. We now take all subgroups in the layer above it:
layer4≔map⁡op,layers14:
and find which ones contain all zuppo representatives of sg4:
map⁡i↦i+17,select⁡i↦sg42subsetlayer4i2,seq⁡1..numelems⁡layer4
18,27
These correspond exactly to the neighbors of subgroup 4 in the fourth layer of the diagram above, once we add the offset 17 for the number of subgroups in the lower three layers.
We can get the same type of information for a Cayley table group:
g2≔SmallGroup⁡24,1
g2≔1,2,4,9,6,10,5,37,12,15,22,19,24,17,148,11,16,21,20,23,18,13,1,4,6,52,9,10,37,15,19,178,16,20,1811,21,23,1312,22,24,14,1,62,103,94,57,198,2011,2312,2413,2114,2215,1716,18,1,7,82,11,123,13,144,15,165,17,186,19,209,21,2210,23,24
g2≔Group⁡CayleyTable⁡g2
g2≔ < a Cayley table group with 24 elements >
graph2≔SubgroupLattice⁡g2,output=graphweighted
graph2≔Graph 2: an undirected weighted graph with 10 vertices and 14 edge(s)
GraphTheory:-DrawGraph⁡graph2
For many groups, the maximal subgroups are exactly the ones in the layer just below the topmost one. For the following group, this is not the case.
g3≔SmallGroup⁡24,3
g3≔1,2,34,11,195,12,226,23,147,24,158,13,189,16,2010,17,21,1,4,8,52,9,13,103,14,18,156,21,7,2011,24,12,2316,22,17,19,1,6,8,72,11,13,123,16,18,174,20,5,219,23,10,2414,19,15,22,1,82,133,184,56,79,1011,1214,1516,1719,2220,2123,24
sgl3≔SubgroupLattice⁡g3
sgl3≔subgroup lattice7 conjugacy classes15 subgroups
GraphTheory:-DrawGraph⁡convert⁡sgl3,graph
convert⁡sgl3,maximalsubgroups
1,3,24,19,115,22,126,14,237,15,248,18,139,20,1610,21,17,1,82,133,184,56,79,1011,1214,1516,1719,2220,2123,24,1,22,92,21,143,24,45,18,236,16,117,17,128,19,1013,20,15,1,82,133,184,56,79,1011,1214,1516,1719,2220,2123,24,1,15,112,5,163,10,64,17,137,18,98,14,1219,23,2021,22,24,1,82,133,184,56,79,1011,1214,1516,1719,2220,2123,24,1,17,232,7,193,12,204,14,95,15,106,22,138,16,2411,21,18,1,82,133,184,56,79,1011,1214,1516,1719,2220,2123,24,1,5,8,42,10,13,93,15,18,146,20,7,2111,23,12,2416,19,17,22,1,82,133,184,56,79,1011,1214,1516,1719,2220,2123,24,1,7,8,62,12,13,113,17,18,164,21,5,209,24,10,2314,22,15,19
The alternating group on 6 letters is the smallest group for which the algorithm does not find all subgroups. (Missing are two conjugacy classes of 6 perfect subgroups each, all isomorphic to the alternating group on 5 letters.)
SubgroupLattice⁡AlternatingGroup⁡6
subgroup lattice of A620 conjugacy classes489 subgroups
The GroupTheory[SubgroupLattice] command was introduced in Maple 17.
For more information on Maple 17 changes, see Updates in Maple 17.
See Also
GroupTheory[DrawSubgroupLattice]
GroupTheory[Group]
Download Help Document