The Group Theory package includes an extensive collection of routines for constructing, computing with, and visualizing finitely generated groups, including permutation groups, finitely presented groups, Cayley table groups, “black-box” user defined groups, and abstract groups depending on symbolic parameters. Several new commands have been added to the Group Theory package in Maple 2018 for performing new tests and calculating more properties.
New Subgroup Tests
- You can test whether a subgroup of a finite group is subnormal or permutable (quasi-normal) by using the new IsSubnormal and IsPermutable commands. These are generalizations of normal subgroups.
> |
H := Subgroup( { Perm( [[1,2],[3,4]] ) }, G ); |
> |
N := Subgroup( { Perm( [[1,2,3]] ) }, G ); |
Groups of Prime Power Order
- To check whether a finite group is a
-group, for a prime number
, use the new IsPGroup command. The PGroupPrime command can be used to return the prime number
for which a group is a finite
-group.
> |
IsPGroup( DihedralGroup( 4 ) ); |
> |
PGroupPrime( DihedralGroup( 4 ) ); |
> |
IsPGroup( DirectProduct( CyclicGroup( 128 ), QuaternionGroup() ) ); |