read character table

asked 2023-09-25 02:19:14 +0200

ayodan gravatar image

We can get the character table for a finite group using the .character_table() method. As an example:

G = SymmetricGroup(3)
G.character_table()

Returns

[ 1 -1  1]
[ 2  0 -1]
[ 1  1  1]

which are the signed, two-dimensional and trivial irreps, respectively (see wiki page on character tables, unfortunately can't post links yet). The columns are identity, (12) and (123) conjugacy classes. As another example, for the case of G = CyclicPermutationGroup(3), the character table returns

[         1          1          1]
[         1      zeta3 -zeta3 - 1]
[         1 -zeta3 - 1      zeta3]

where the columns are identity, (123) and (132) group elements. Assuming this information is generally unknown, how can I determine which columns correspond to which conjugacy classes/group elements solely based on the sagemath functionality?

edit retag flag offensive close merge delete

Comments

I think the columns are in the order given by G.conjugacy_classses(). See also G.conjugacy_classes_representatives(), which is mentioned in the documentation for character_table.

John Palmieri gravatar imageJohn Palmieri ( 2023-09-25 02:57:45 +0200 )edit

Ok thanks!

ayodan gravatar imageayodan ( 2023-09-25 23:37:22 +0200 )edit

It should be more clearly documented, though.

John Palmieri gravatar imageJohn Palmieri ( 2023-09-26 02:01:02 +0200 )edit