Matrix Power — Definition, Formula & Examples
A matrix power is the result of multiplying a square matrix by itself a specified number of times. For example, means .
For a square matrix of size and a non-negative integer , the -th power of is defined recursively as (the identity matrix) and for .
Key Formula
Where:
- = A square matrix of size n × n
- = A non-negative integer exponent
How It Works
To compute a matrix power , you perform matrix multiplication times. Start with , then compute , then , and so on. Only square matrices can be raised to a power, because the product requires the number of columns of the first factor to equal the number of rows of the second. By convention, equals the identity matrix , analogous to for scalars.
Worked Example
Problem: Compute A² where A = [[1, 2], [3, 4]].
Set up the multiplication: Multiply A by itself: A² = A · A.
Compute each entry: Apply the row-by-column rule for each position in the resulting matrix.
Answer:
Why It Matters
Matrix powers appear in Markov chains, where gives transition probabilities after steps. They are also central to solving systems of linear recurrences and computing the matrix exponential , which arises in differential equations and control theory.
Common Mistakes
Mistake: Raising each entry of the matrix to the power individually, e.g., squaring each element to get A².
Correction: A matrix power requires full matrix multiplication, not element-wise exponentiation. You must use the row-by-column multiplication rule.
