Ask Your Question
0

evaluation of character of symmetric group.

asked 2016-06-14 02:37:37 +0200

this post is marked as community wiki

This post is a wiki. Anyone with karma >750 is welcome to improve it.

I am writing a code in sage where I am using character of Symmetric group. I want to evaluate the character of symmetric group on certain conjugacy classes. While I know the command for defining character as below.\

G = SymmetricGroup(3)\

rho = SymmetricGroupRepresentation([1,1,1])\

chi = rho.to_character();

I want to find chi([2,1]) that is to evaluate chi on the conjugacy class of type (2,1). Any help please ?

edit retag flag offensive close merge delete

1 Answer

Sort by » oldest newest most voted
1

answered 2016-06-14 20:25:44 +0200

FrédéricC gravatar image

Like that:

sage: G = SymmetricGroup(3)
sage: rho = SymmetricGroupRepresentation([1,1,1])
sage: chi = rho.to_character()
sage: chi(G([2,1,3]))
-1

This is explained in the doc.

edit flag offensive delete link more

Comments

slelievre gravatar imageslelievre ( 2018-06-17 07:39:36 +0200 )edit

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

1 follower

Stats

Asked: 2016-06-14 02:37:37 +0200

Seen: 703 times

Last updated: Jun 14 '16