- #1
morningloree
- 1
- 0
Hi!
I'm trying to find the order of a 2x2 matrix [[2 3][3 5]] (where the first row, from left to right, is 2 3 and the second row is 3 5). The definition of order that I am using is the least such power that I need to raise this matrix to in order to get the identity matrix. Also, I have to find the order in time proportional to the square root of the order, so I can't just do a linear search. Any help would be much appreciated!
I'm trying to find the order of a 2x2 matrix [[2 3][3 5]] (where the first row, from left to right, is 2 3 and the second row is 3 5). The definition of order that I am using is the least such power that I need to raise this matrix to in order to get the identity matrix. Also, I have to find the order in time proportional to the square root of the order, so I can't just do a linear search. Any help would be much appreciated!