Mathwords logoMathwords

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, A3A^3 means AAAA \cdot A \cdot A.

For a square matrix AA of size n×nn \times n and a non-negative integer kk, the kk-th power of AA is defined recursively as A0=InA^0 = I_n (the identity matrix) and Ak=AAk1A^k = A \cdot A^{k-1} for k1k \geq 1.

Key Formula

Ak=AAAk factorsA^k = \underbrace{A \cdot A \cdot \, \cdots \, \cdot A}_{k \text{ factors}}
Where:
  • AA = A square matrix of size n × n
  • kk = A non-negative integer exponent

How It Works

To compute a matrix power AkA^k, you perform matrix multiplication kk times. Start with A1=AA^1 = A, then compute A2=AAA^2 = A \cdot A, then A3=AA2A^3 = A \cdot A^2, and so on. Only square matrices can be raised to a power, because the product AAA \cdot A requires the number of columns of the first factor to equal the number of rows of the second. By convention, A0A^0 equals the identity matrix II, analogous to x0=1x^0 = 1 for scalars.

Worked Example

Problem: Compute A² where A = [[1, 2], [3, 4]].
Set up the multiplication: Multiply A by itself: A² = A · A.
A2=[1234][1234]A^2 = \begin{bmatrix} 1 & 2 \\ 3 & 4 \end{bmatrix} \cdot \begin{bmatrix} 1 & 2 \\ 3 & 4 \end{bmatrix}
Compute each entry: Apply the row-by-column rule for each position in the resulting matrix.
A2=[1(1)+2(3)1(2)+2(4)3(1)+4(3)3(2)+4(4)]=[7101522]A^2 = \begin{bmatrix} 1(1)+2(3) & 1(2)+2(4) \\ 3(1)+4(3) & 3(2)+4(4) \end{bmatrix} = \begin{bmatrix} 7 & 10 \\ 15 & 22 \end{bmatrix}
Answer: A2=[7101522]A^2 = \begin{bmatrix} 7 & 10 \\ 15 & 22 \end{bmatrix}

Why It Matters

Matrix powers appear in Markov chains, where AkA^k gives transition probabilities after kk steps. They are also central to solving systems of linear recurrences and computing the matrix exponential eAe^A, 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.