GroupTheory
PerfectGroup
retrieve a group from the database of perfect groups
NumPerfectGroups
return the number of perfect groups of a given order
AllPerfectGroups
retrieve all perfect groups of a given order
Calling Sequence
Parameters
Description
Examples
References
Compatibility
PerfectGroup( n, d )
PerfectGroup( [ n, d ] )
PerfectGroup( n, d, f )
PerfectGroup( [ n, d ], f )
NumPerfectGroups( n )
AllPerfectGroups( r )
AllPerfectGroups( r, f, o )
n
-
a positive integer
d
f
optional equation: form = "fpgroup" or form = "permgroup" (the default)
r
: {posint, posint .. posint} : a degree or range of degrees
o
optional equation: output = "iterator" or output = "list" (the default)
The perfect groups library contains all the perfect groups of order less than or equal to 1000000, except the groups of the orders 61440, 86016, 122880, 172032, 245760, 344064, 368640, 491520, 688128, 737280 and 983040. The groups are sorted by their orders and they are listed up to isomorphism; that is, for each of the available orders, a complete and irredundant list of isomorphism type representatives of groups is given. These groups are available as permutation groups and as finitely presented groups.
The PerfectGroup( n, d ) command returns the d-th perfect group of order n in the perfect groups library. The value of n must be at most 1000000 and not among those exceptions listed above. The value of d must be less than or equal to the number of perfect groups of order n. You can also use the syntax PerfectGroup( [ n, d ] ), which is equivalent to PerfectGroup( n, d ).
By default, PerfectGroup( n, d ) returns a permutation group. By passing the option form = "fpgroup", Maple will instead return the d-th perfect group of order n as a finitely presented group.
The NumPerfectGroups( n ) command returns the number of perfect groups of order n, where n is a valid order. If n is less than or equal to 1000000 and not among the listed exceptions, then 0 is returned; otherwise, an exception is raised.
The AllPerfectGroups( n ) command by default returns a list of all the perfect groups of order n, where n is a valid order, or a range of orders. You can request that an iterator be returned by specifying the option output = "iterator". The form = "fpgroup" or form = "permgroup" option is also available for the AllPerfectGroups command with the same meaning as for the PerfectGroup command.
Use the SearchPerfectGroups command to search for perfect groups in the database satisfying combinations of supported properties which have been pre-computed.
with⁡GroupTheory:
NumPerfectGroups⁡60
1
PerfectGroup⁡60,1
1,24,5,2,3,4
PerfectGroup⁡60,1,form=permgroup
PerfectGroup⁡60,1,form=fpgroup
⁢a1,a2⁢∣⁢a12,a23,a1⁢a2⁢a1⁢a2⁢a1⁢a2⁢a1⁢a2⁢a1⁢a2⁢
L≔AllPerfectGroups⁡1920,form=permgroup:
andmap⁡IsPerfect,L
true
L≔AllPerfectGroups⁡60..170
L≔1,24,5,2,3,4,1,2,5,34,7,6,89,13,11,1410,15,12,1617,19,18,2021,24,23,22,1,4,23,5,67,9,108,11,1213,16,1714,15,1819,21,2220,23,24,1,52,34,67,89,1110,1213,1415,1617,1819,2021,2322,24,1,24,5,2,3,45,6,7
map⁡GroupOrder,L
60,120,168
it≔AllPerfectGroups⁡20160,output=iterator
it≔⟨Perfect Groups Iterator: 20160/1 .. 20160/5⟩
forid,GinitdoifnotIsSimple⁡Gthenprint⁡idendifenddo
20160,1
20160,2
20160,3
Derek F. Holt and W. Plesken, Perfect Groups, Oxford Math. Monographs, Oxford University Press, 1989.
The GroupTheory[PerfectGroup], GroupTheory[NumPerfectGroups] and GroupTheory[AllPerfectGroups] commands were introduced in Maple 18.
For more information on Maple 18 changes, see Updates in Maple 18.
See Also
GroupTheory[DerivedSubgroup]
GroupTheory[IsPerfect]
GroupTheory[SearchPerfectGroups]
Download Help Document