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.
 
Prove $$\int\limits_0^{\sqrt2/4}\frac{1}{\sqrt{x-x^2}}\arcsin\sqrt{\frac{(x-1)\left(x-1+x\sqrt{9-16x}\right)}{1-2x}} \, \mathrm dx = \frac{\pi^2}{8}.$$ Let $$I = \int\limits_0^{\sqrt 2 / 4}\frac{1}{\sqrt{x-x^2}}\arcsin\sqrt{\frac{(x-1)\left(x-1+x\sqrt{9-16x}\right)}{1-2x}} \, \mathrm dx. \tag{1}$$ The representation integral of ##\arcsin## is $$\arcsin u = \int\limits_{0}^{1} \frac{\mathrm dt}{\sqrt{1-t^2}}, \qquad 0 \leqslant u \leqslant 1.$$ Plugging identity above into ##(1)## with ##u...
Back
Top