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

Online Help

All Products    Maple    MapleSim


GroupTheory

  

Series

  

description of the subgroup series data structure

 

Description

Examples

Description

• 

This document describes the subgroup series data structure, and the operations that can be applied to them.

• 

For information about the (unrelated) power series data structure, see series.

• 

A series of subgroups of a group G is a nested sequence of subgroups of G of either of the forms

G=G1>G2>>Gm

or

1=G1<G2<<Gm

The former is called a descending series while the latter is called an ascending series.  The subgroups

Gk

are called terms of the series, and the integer m is called its length.

• 

Several commands in the GroupTheory package return series data structures representing subgroup series.  You can query the data structure for information about it by using any of the methods described below.  Particular series may support additional operations not described here.  (See the corresponding help for the particular type of series.)

• 

The number of terms in a series S is returned by the numelems command with the series as argument.

• 

If k is a valid index into a series, then the k-th term of the series S is gotten by the expression S[k].

• 

The lowerbound( S ) command returns the least valid index into a series data structure S, and the upperbound( S ) command returns the largest valid index into S.

• 

You can iterate over a series S by using either the seq command, or in a loop as shown below in the examples.

Examples

withGroupTheory&colon;

GDihedralGroup32

GD32

(1)

LLowerCentralSeriesG

LD32D32&comma;D32D32&comma;D32&comma;D32&comma;D32&comma;D32D32&comma;D32&comma;D32&comma;D32&comma;D32&comma;D32

(2)

numelemsL

6

(3)

IdentifySmallGroupL3

8,1

(4)

seqGroupOrderH&comma;H=L

64,16,8,4,2,1

(5)

forHinLdoprintIdentifySmallGroupHenddo&colon;

64,52

16,1

8,1

4,1

2,1

1,1

(6)

memberL4&comma;L

true

(7)

evalbL5inL

true

(8)

See Also

GroupTheory[DerivedSeries]

GroupTheory[LowerCentralSeries]

GroupTheory[UpperCentralSeries]