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

Online Help

Home : Support : Online Help : GroupTheory/tutorials/WorkingWithSymbolicGroups

Working with Symbolic Groups

 

Maple's GroupTheory package features the ability to construct symbolic groups, which are used to represent groups that may otherwise currently have no other computer implementation.

Typically, a symbolic group is used to represent a group that is too large to represent concretely, or that depend upon one or more unspecified numeric parameters.

Examples of the former situation include the larger of the sporadic finite simple groups. For the latter situation, there are symbolic group representations for many families of groups, such as symmetric or dihedral groups, depending on an (integer) parameter which you can specify symbolically.

with( GroupTheory ):

For instance, the Monster simple group  has order equal to 

But, importantly,  cannot be represented as a permutation group on fewer than  points and the smallest dimension of a faithful linear representation over any field is . Thus, computing with elements of  is difficult, and requires bespoke techniques.

In Maple,  is represented as a symbolic group.

G := Monster();

(1)

Maple "knows" various facts about .

GroupOrder( G );

(2)

IsSimple( G );

(3)

MinPermRepDegree( G );

(4)

For some groups, a concrete implementation as, for instance, a permutation group is available only for small values of a parameter upon which the group depends. For instance, the group  is available as a permutation group only for values of  not exceeding . For larger values of , a symbolic group is returned.

G := Suzuki2B2( 2048 );

(5)

While Maple knows certain facts about symbolic groups, it is not possible to perform operations that inherently require access to group elements.

GroupOrder( G );

(6)

RandomElement( G );

Error, (in GroupTheory:-RandomElement) cannot compute random elements of a symbolic group

An example of a group that can be defined by a symbolic parameter is a dihedral group.

G := DihedralGroup( n );

(7)

Notice that the degree parameter  is an unassigned symbol with no numeric value. Nevertheless, Maple can deduce various facts about such groups.

IsFinite( G );

(8)

IsSoluble( G );

(9)

With insufficient information about the parameter, Maple is unable to deduce anything in this case:

IsNilpotent( G );

(10)

However, you can supply additional information using the assume facility and, in this situation, when enough information is available, Maple can determine an outcome.

IsNilpotent( DihedralGroup( 2^(3*k + 1) ) ) assuming k :: posint;

(11)

IsNilpotent( DihedralGroup( 3 * 2^(3*k + 1) ) ) assuming k :: posint;

(12)

Symbolic groups may depend upon more than one parameter and, depending upon the group in question, one or more parameters may be specified symbolically. For example, you can construct a symbolic group representing the projective special linear group  as follows.

G := PSL( n, q );

(13)

The type of information that Maple knows about a symbolic group varies from one group to another.

GroupOrder( G );

(14)

G := PSU( 3, q );

(15)

GroupOrder( G );

(16)

Maple may have only partial information for some operations.

ClassNumber( PSL( 5, q ) );

(17)

ClassNumber( PSL( n, q ) );

Error, (in GroupTheory:-ClassNumber) cannot compute the class number for PSL(n,q)

In certain cases, a piecewise result may be returned for certain operations on a symbolic group.

ClassNumber( DihedralGroup( n ) );

(18)

Since a symbolic expression is normally returned for invariants that can be computed for groups depending upon one or more symbolic parameters, you can use Maple's symbolic facilities to further manipulate the results.

c := ClassNumber( DirectProduct( QuaternionGroup( 4 ), DihedralGroup( 2*k + 1 ) ) );

(19)

simplify( c ) assuming k :: posint;

(20)

In the event that a concrete implementation (such as a permutation group) is available for specific numeric values of a parameter, you can use the two-argument form of eval to instantiate the parameter. For example,

G := PSp( 4, q );

(21)

G2 := eval( G, q = 2 );

(22)

type( G2, 'PermutationGroup' );

(23)

ord := GroupOrder( G );

(24)

GroupOrder( G2 );

(25)

eval( ord, q = 2 );

(26)

For symbolic groups that depend upon more than one symbolic parameter, you can evaluate the symbolic group at just one, or at several of the parameters. If one or more parameters remain uninstantiated, then the result is another symbolic group, depending upon fewer parameters.

eval( PGU( n, q ), n = 2 );

(27)

eval( PGU( n, q ), q = 3 );

(28)

eval( PGU( n, q ), [n = 2, q = 3] );

(29)

See Also

GroupTheory

 


Download Help Document