Finding A^5 for Symmetrical Matrix A

  • Thread starter Thread starter Geronimo85
  • Start date Start date
  • Tags Tags
    Matrix
Geronimo85
Messages
20
Reaction score
0
I have a 3x3 symmetrical matrix A:


1, 8^.5, 0
8^.5, 1, 8^.5
0, 8^.5, 1

that I need to find A^5 for. Is there a method aside from brute force multiplication to do so?
 
Physics news on Phys.org
Geronimo85 said:
I have a 3x3 symmetrical matrix A:


1, 8^.5, 0
8^.5, 1, 8^.5
0, 8^.5, 1

that I need to find A^5 for. Is there a method aside from brute force multiplication to do so?

A fact which should be useful is that the product of symmetric matrices is symmetric itself.
 
Ok, how does that help?
 
Geronimo85 said:
Ok, how does that help?

It reduces the number of multiplications you have to do. But it's still a semi-brute multiplication method. Hope someone passes by with a better suggestion perhaps. :-p
 
Since that is a symmetric matrix, it can be "diagonalized". That is there exist an invertible matrix C and a diagonal matrix D such that D= CAC-1. Then A= C-1DC. Then A5= C-1D5C. D is the matrix having the eigenvalues of A (which are easy to find) on its main diagonal, 0s off the diagonal. C is a matrix having the corresponding eigenvectors of A as columns.
 
There are two things I don't understand about this problem. First, when finding the nth root of a number, there should in theory be n solutions. However, the formula produces n+1 roots. Here is how. The first root is simply ##\left(r\right)^{\left(\frac{1}{n}\right)}##. Then you multiply this first root by n additional expressions given by the formula, as you go through k=0,1,...n-1. So you end up with n+1 roots, which cannot be correct. Let me illustrate what I mean. For this...
Back
Top