GroupTheory
CharacterTable
construct the character table of a finite group
Calling Sequence
Parameters
Description
Methods
Examples
Compatibility
CharacterTable( G )
G
-
finite group
The CharacterTable( G ) command computes the (ordinary) character table of the finite group G, which must be either a permutation group or a Cayley table group.
The CharacterTable command uses an implementation of the Burnside-Dixon-Schneider algorithm to compute the character table.
Character tables are printed using a Matrix so their display is sensitive to the value of the rtablesize interface option. (See the Examples section.)
Character tables support the following methods, in which ct denotes a character table returned by the CharacterTable command.
ClassNumber( ct )
returns the class number of the group for which this is a character table
ConjugateRank( ct )
returns the conjugate rank of the group for which this is a character table
ClassNames( ct )
returns the (ordered) list of conjugacy class names
ClassRepresentatives( ct )
returns the (ordered) list of conjugacy class representatives
CharacterDegrees( ct )
returns a sorted list of pairs [d,m] of the degrees d of the irreducible characters and their respective multiplicities m
Exponent( ct )
returns the exponent of the group
GetMatrix( ct )
returns the matrix of character values
PowerMap( ct, p )
returns the pth power map
Display( ct, opts )
prints the character table in a more readable format
The ClassNumber( ct ) command returns the class number of the underlying group of the character table ct, which is the number of conjugacy classes of the group. In the case when the group is Abelian, this is simply the order of the group but, for non-Abelian groups, the number of conjugacy classes is less than the order of the group.
The ConjugateRank( ct ) command returns the conjugate rank of the underlying group of the character table ct. This is the number of distinct non-trivial class lengths (those other than 1).
The ClassNames( ct ) command returns an ordered list of the names given to the conjugacy classes. These have the form of an integer, indicating the order of the class representative (and hence, of all of its members) followed by one or more letters used to distinguish classes whose elements have the same order. For example, the class names "4a" and "4b" distinguish two distinct conjugacy classes of elements of order 4.
The ClassRepresentatives( ct ) command returns an Array containing the (ordered) class representatives for the conjugacy classes of the underlying group of the character table ct.
The CharacterDegrees( ct ) command returns a sorted list of pairs [d, m] of the degrees d of the irreducible characters and their respective multiplicities m.
The Exponent( ct ) command returns the exponent of the underlying group, using data stored in the character table.
The GetMatrix( ct ) command returns the character values of the character table ct in a Matrix.
For a prime number p, the PowerMap( ct, p ) command returns the pth power map of the character table ct. This is an Array a with k elements, where k is the class number of the underlying group of ct, such that the class of the pth power of an element of the ith class is in the class a[ i ], for i = 1 .. k.
The Display( ct, opts ) command prints the character table in a nicer format, and optionally allows you to include additional information, such as the Frobenius-Schur indicator values of the characters (using the showindicator option) and power maps (using the showpowermaps option) for the prime divisors of the group order.
with⁡GroupTheory:
G≔Symm⁡3
G≔S3
ct≔CharacterTable⁡G
ct≔
Display⁡ct
C
1a
2a
3a
|C|
1
3
2
χ__1
χ__2
−1
χ__3
0
ClassNumber⁡ct
ConjugateRank⁡ct
ClassNames⁡ct
1a,2a,3a
ct≔CharacterTable⁡CyclicGroup⁡4
4a
4b
I
−I
χ__4
Display⁡CharacterTable⁡Alt⁡4,showindicator
3b
4
ν2
−12−I⁢32
−12+I⁢32
Display⁡CharacterTable⁡Alt⁡4,showpowermaps
C2
C3
Display⁡CharacterTable⁡PSL⁡2,7
7a
7b
21
56
42
24
−−147−−127+−117−1
−127+−147−−117
6
χ__5
7
χ__6
8
ct≔CharacterTable⁡DihedralGroup⁡12:
The following command indicates that the dihedral group of degree 12 has four linear characters (of degree 1) and 5 irreducible characters of degree 2.
CharacterDegrees⁡ct
1,4,2,5
pmap≔PowerMap⁡ct,2
pmap≔1,1,1,1,5,2,5,7,7
cc≔ConjugacyClasses⁡ct:
g≔Representative⁡cc7
g≔1,3,5,7,9,112,4,6,8,10,12
evalb⁡g2incc5
true
It may be necessary to set the value of the rtablesize interface variable to see the character values for larger character tables.
ct≔CharacterTable⁡ElementaryGroup⁡2,5
interface⁡rtablesize=35:
ct
The GroupTheory[CharacterTable] command was introduced in Maple 2017.
For more information on Maple 2017 changes, see Updates in Maple 2017.
See Also
GroupTheory[AlternatingGroup]
GroupTheory[ConjugacyClasses]
GroupTheory[CyclicGroup]
GroupTheory[Exponent]
GroupTheory[PSL]
GroupTheory[SymmetricGroup]
interface
Download Help Document