Matrix Power Calculator

Raise a square matrix to any non-negative integer power by repeated multiplication.

What Is Matrix Power?

The nth power of a square matrix A is the matrix product of A with itself n times:

A^n = A × A × ... × A  (n times)

Only square matrices (same number of rows and columns) can be raised to a power, because each multiplication requires the column count of the first matrix to equal the row count of the second.

Special Cases

Worked Example

Compute A^2 for A = [[1,1],[1,0]] (the Fibonacci matrix):

A = [1,1] A^2 = [1×1+1×1, 1×1+1×0] = [2,1]
[1,0] [1×1+0×1, 1×1+0×0] [1,1]

Remarkably, A^n gives Fibonacci numbers: A^n[0][0] = F(n+1), A^n[0][1] = F(n).

Properties of Matrix Powers

Real-World Applications

Frequently Asked Questions

What does matrix power mean?

A^n = A×A×...×A (n times). Only square matrices can be raised to a power.

What is A^0?

A^0 = I, the identity matrix (1s on diagonal, 0s elsewhere), analogous to x^0 = 1.

How do matrix powers relate to eigenvalues?

If λ is an eigenvalue of A, then λ^n is an eigenvalue of A^n with the same eigenvector. Eigenvalue decomposition makes computing A^n very efficient.

What is the Cayley-Hamilton theorem?

Every square matrix satisfies its own characteristic polynomial. This allows expressing A^n for large n in terms of lower powers of A.