Ask Your Question
1

Permutation similar matrices

asked 2017-02-15 19:18:48 +0200

Deepak Sarma gravatar image

How to generate the class of all permutation similar matrices of a given square matrix?

edit retag flag offensive close merge delete

Comments

If the answer below worked for you, you can click the checkmark to its left to accept the answer.

fidbc gravatar imagefidbc ( 2017-02-20 20:38:38 +0200 )edit

1 Answer

Sort by » oldest newest most voted
3

answered 2017-02-16 09:37:43 +0200

Sébastien gravatar image
sage: M = random_matrix(ZZ,3,3)
sage: M
[-2  0 -6]
[ 0  1  3]
[ 0  3  1]
sage: P = [matrix(p) for p in Permutations(3)]
sage: similar = [p*M*~p for p in P]
sage: similar
[
[-2  0 -6]  [-2 -6  0]  [ 1  0  3]  [ 1  0  3]  [ 1  3  0]  [ 1  3  0]
[ 0  1  3]  [ 0  1  3]  [ 0 -2 -6]  [-6 -2  0]  [ 3  1  0]  [ 3  1  0]
[ 0  3  1], [ 0  3  1], [ 3  0  1], [ 3  0  1], [ 0 -6 -2], [-6  0 -2]
]
edit flag offensive delete link more

Your Answer

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

Add Answer

Question Tools

Stats

Asked: 2017-02-15 19:18:48 +0200

Seen: 1,000 times

Last updated: Feb 16 '17