Order of 2x2 Matrix [[2 3][3 5]]

  • Context: Undergrad 
  • Thread starter Thread starter morningloree
  • Start date Start date
  • Tags Tags
    Matrix
Click For Summary
SUMMARY

The order of the 2x2 matrix [[2 3][3 5]] is defined as the smallest integer k such that raising the matrix A to the power k results in the identity matrix I. In this case, the matrix A does not have a finite order, as its values increase indefinitely with larger k. The discussion emphasizes the need for an efficient algorithm to determine the order in time proportional to the square root of the order, rather than a linear search.

PREREQUISITES
  • Understanding of matrix algebra and properties of matrices
  • Familiarity with the concept of the identity matrix
  • Knowledge of matrix exponentiation
  • Basic algorithm design principles for efficiency
NEXT STEPS
  • Study matrix exponentiation techniques for efficient computation
  • Research algorithms for determining matrix orders
  • Explore the properties of eigenvalues and eigenvectors in relation to matrix powers
  • Learn about the Cayley-Hamilton theorem and its applications in matrix theory
USEFUL FOR

Mathematicians, computer scientists, and students studying linear algebra or algorithm design, particularly those interested in matrix theory and computational efficiency.

morningloree
Messages
1
Reaction score
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!
 
Physics news on Phys.org
I'm not sure about an algorithm for solving this problem in general - but unless I misunderstood the problem then you're solving:

A^k = I

for A = [2,3;3,5] and k some integer? I'm pretty sure that a solution doesn't exist, as the values of the matrix will grow without bound as k goes large.
 

Similar threads

  • · Replies 5 ·
Replies
5
Views
3K
  • · Replies 8 ·
Replies
8
Views
3K
  • · Replies 5 ·
Replies
5
Views
2K
Replies
13
Views
4K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 7 ·
Replies
7
Views
2K
  • · Replies 3 ·
Replies
3
Views
2K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 5 ·
Replies
5
Views
2K
  • · Replies 9 ·
Replies
9
Views
5K