Why Is My Matrix Not Diagonalizing Correctly?

  • Thread starter Thread starter NavalChicken
  • Start date Start date
  • Tags Tags
    Matrix
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
4 replies · 3K views
NavalChicken
Messages
17
Reaction score
0

Homework Statement


This is part of a larger problem of finding [tex]e^A[/tex], where [tex] <br /> <br /> A = \left[ \begin{array}{ccc} 0 & 0 & -2 \\ 1 & 2 & 1 \\ 1 & 0 & 3 \end{array} \right]<br /> [/tex]


Homework Equations


-


The Attempt at a Solution




I generally have no problems with diagonalising a matrix, however, in this case I just can't seem to get it to work. I've got the eigenvectors to be [tex](-1, 0, 1)^T, (0, 1, 0)^T, (-2, 1, 1)^T[/tex]

Once carried through the steps of finding [tex]P, A, P^{-2}[/tex] and finding the diagonal, I come out with

[tex]D = \left[ \begin{array}{ccc} 2 & 0 & 0 \\ 0 & 2 & 2 \\ 0 & 0 & 1 \end{array} \right][/tex]

I've checked it on wolframalpha and on maple and both confirm that my inverse is correct and following through the multiplication both come out with the same result. Chances are I've just made a silly mistake somewhere. Can someone help me spot it?

Thankyou
 
Physics news on Phys.org
Sorry, I did mean [tex]P^{-1}[/tex]

Which I had as:

[tex] <br /> \left[ \begin{array}{ccc} 1 & 0 & 2 \\ 1 & 1 & 1 \\ -1 & 0 & -1 \end{array} \right][/tex]
 
Looks right.

With P:
[tex]\left[ \begin{array}{ccc} -1 & 0 & -2 \\ 0 & 1 & 1 \\ 1 & 0 & -1 \end{array} \right] [/tex]

I get P^(-1)AP=diag(2,2,1). I do notice that if I do PAP^(-1) I get your off diagonal result D. That's not the right order.
 
Last edited:
Oh, yes, it was down to wrong order. Very silly!

Thanks for clearing that up