First time here? Check out the FAQ!

Ask Your Question
2

Simultaneously diagonalizing matrices exactly

asked 7 years ago

watson_ladd gravatar image

updated 7 years ago

I have a bunch of matrices with integer coefficients that simultaneously commute. I know that there is a basis that simultaneously diagonalizes all of them, and I want to find it exactly so that I can recover all the corresponding eigenvalues as algebraic numbers.

I've tried casting to QQbar and using eigenvectors, but this occasionally tries to divide by zero for no reason I can discern. Any ideas?

Preview: (hide)

Comments

could you write the code?

vdelecroix gravatar imagevdelecroix ( 7 years ago )

Please give us at least two of the many commuting matrices that can be diagonalized (simultaneously).

dan_fulea gravatar imagedan_fulea ( 7 years ago )

Let me join the club of asksage junkies : we need your code to understand your problem and (hopefully) provide a solution.

tmonteil gravatar imagetmonteil ( 7 years ago )

Please provide an example of matrices for the computation you are asking about.

Ready-to-copy-paste examples make it way easier to explore a question, thereby increasing chances of an answer.

slelievre gravatar imageslelievre ( 7 years ago )

1 Answer

Sort by » oldest newest most voted
4

answered 7 years ago

slelievre gravatar image

updated 7 years ago

Getting a simultaneous basis of diagonalization for a list of diagonalizable matrices that pairwise commute is just a matter of getting a diagonalization basis for any one of them!

This can be obtained with jordan_form with the argument transformation=True.

For example, starting from these two matrices a and b:

sage: a = matrix(QQ, [[1, 1, 1], [-2, 3, 2], [0, 1, 2]])
sage: b = matrix(QQ, [[-1, 1, 1], [1, 1, -1], [-3, 1, 3]])

Check that they commute:

sage: a * b
[-3  3  3]
[-1  3  1]
[-5  3  5]
sage: b * a
[-3  3  3]
[-1  3  1]
[-5  3  5]
sage: a * b == b * a
True

If we diagonalize them separately:

sage: da, pa = a.jordan_form(transformation=True)
sage: db, pb = b.jordan_form(transformation=True)

we can notice that the transformation matrices pa and pb have the same columns, permuted:

sage: pa
[ 1  1  0]
[ 1  0  1]
[ 1  1 -1]
sage: pb
[ 0  1  1]
[ 1  1  0]
[-1  1  1]

Obtaining the simultaneous diagonal form is just a matter of reordering the columns of:

sage: da
[3|0|0]
[-+-+-]
[0|2|0]
[-+-+-]
[0|0|1]
sage: db
[2|0|0]
[-+-+-]
[0|1|0]
[-+-+-]
[0|0|0]

For instance, use the transformation matrix pa to get simultaneous diagonalizations:

sage: qa = ~pa
sage: qa * a * pa
[3 0 0]
[0 2 0]
[0 0 1]
sage: qa * b * pa
[1 0 0]
[0 0 0]
[0 0 2]
Preview: (hide)
link

Comments

2

If A has a higher dimensional eigenspace then an eigenvector of A is not necessarily an eigenvector of B. Example: A=[0,1; -1,-1] and B=[1,0; 0,1]. They commute, B is already in diagonal form, and A is not. You need to intersect the eigenspaces of A with those in B and make a basis out of those smaller spaces.

nbruin gravatar imagenbruin ( 7 years ago )

Good point.

slelievre gravatar imageslelievre ( 7 years ago )

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

Seen: 2,571 times

Last updated: Apr 03 '18