AllPerfectGroups - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


Home : Support : Online Help : Mathematics : Group Theory : AllPerfectGroups

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

Calling Sequence

PerfectGroup( n, d )

PerfectGroup( [ n, d ] )

PerfectGroup( n, d, f )

PerfectGroup( [ n, d ], f )

NumPerfectGroups( n )

AllPerfectGroups( r )

AllPerfectGroups( r, f, o )

Parameters

n

-

a positive integer

d

-

a positive integer

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)

Description

• 

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.

Examples

withGroupTheory:

NumPerfectGroups60

1

(1)

PerfectGroup60,1

1,24,5,2,3,4

(2)

PerfectGroup60,1,form=permgroup

1,24,5,2,3,4

(3)

PerfectGroup60,1,form=fpgroup

a1,a2a12,a23,a1a2a1a2a1a2a1a2a1a2

(4)

LAllPerfectGroups1920,form=permgroup:

andmapIsPerfect,L

true

(5)

LAllPerfectGroups60..170

L1,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

(6)

mapGroupOrder,L

60,120,168

(7)

itAllPerfectGroups20160,output=iterator

it⟨Perfect Groups Iterator: 20160/1 .. 20160/5⟩

(8)

forid,GinitdoifnotIsSimpleGthenprintidendifenddo

20160,1

20160,2

20160,3

(9)

References

  

Derek F. Holt and W. Plesken, Perfect Groups, Oxford Math. Monographs, Oxford University Press, 1989.

Compatibility

• 

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

GroupTheory[DerivedSubgroup]

GroupTheory[IsPerfect]

GroupTheory[SearchPerfectGroups]