First time here? Check out the FAQ!

Ask Your Question
0

permutation matrix to permutation groups element

asked 4 years ago

Ycs gravatar image

Hello:

How to convert a permutation matrix into a permutation groups element ?

Thanks!

Preview: (hide)

1 Answer

Sort by » oldest newest most voted
0

answered 4 years ago

rburing gravatar image

You just have to find the position of 1 in each column:

sage: M = matrix([[1, 0, 0],[0, 0, 1],[0, 1, 0]])
sage: sigma = Permutation([list(v).index(1)+1 for v in M.columns()])
sage: sigma
[1, 3, 2]
sage: sigma.to_matrix() == M
True
Preview: (hide)
link

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: 4 years ago

Seen: 332 times

Last updated: Jun 22 '20