i need to find the 100th power of the following 3x3 matrix...... 2,0,0 0,0,-1 0,3,0 my question is can interchange row 2 and 3 before calculation. because that will make it diagonal and its easy to calculate the power of a diagonal matrix....
yes - work out which matrix you need to multiply your matrix by in order to swap rows 2 and 3.
then note what happens to that matrix when you square it
i.e. lets call your matrix A, then find a matrix B such that: C = BA and C contains A with rows 2 and 3 swapped
then note what \(B^2\) is equal to
and take advantage of that
do determinants
you mean in this case multiply with 1 0 0, 0 0 1, 0 1 0 right??
yes
so its alright to do that??? ii mean i was thinking it might change the property of original matrix A and so can not be performed
hang on...
I made a mistake up there, what you actually need to do is to find a matrix P such that: P^-1 A P = D where D is a diagonal matrix.
and then make use of: A^n = (P D P^-1)(P D P^-1)(P D P^-1)...
ohhhh..... i know that....and i was trying to avoid that long path
which simplifies to: A^n = P D^n P^-1
because it has a structure very close to diagonal
so i was wondering whether a swqapping (if allowed) would save a huge time
no - because if you use my initial suggestion of: C = BA then you will get: A = B^-1 C so: A^n = (B^-1 C)(B^-1 C)... which doesn't really simplify
Join our real-time social learning platform and learn together with your friends!