How to calculate powers of a 2x2 matrix WITHOUT eigenvectors ?

sid9221
Messages
110
Reaction score
0
How do I determine powers of matrices(2x2) without calculating their eigenvectors and doing the pdp^-1 thing ?

Obviously multiplying over and over is not a solution.
 
Physics news on Phys.org
I'll let someone else try doing that without straight multiplication, but even with straight multiplication, there is a way.

If you want only one power, find its binary representation: b0+b1*2+b2*2^2+...

Then calculate powers of the matrix: M^4 = (M^2)^ 2, M^8 = (M^4)^2, etc.
Then assemble the final result: identity * (multiply by M if b0 is 1) * (multiply by M^2 if b1 is 1) * (multiply by M^4 if b2 is 1) * ...

For power p, instead of p multiplications, one has to do around 2*log(2,p) ones.
 
Thread 'Derivation of equations of stress tensor transformation'
Hello ! I derived equations of stress tensor 2D transformation. Some details: I have plane ABCD in two cases (see top on the pic) and I know tensor components for case 1 only. Only plane ABCD rotate in two cases (top of the picture) but not coordinate system. Coordinate system rotates only on the bottom of picture. I want to obtain expression that connects tensor for case 1 and tensor for case 2. My attempt: Are these equations correct? Is there more easier expression for stress tensor...
Back
Top