Matrix Inverse Calculator

Find the inverse of a square matrix using the augmented matrix [A | I] method. View full row operations and exact fractions.

×

Matrix A

Step-by-Step Row Working

What is a Matrix Inverse?

In matrix algebra, division is not defined directly. Instead, we use the concept of a matrix inverse. The inverse of a matrix A (written as A-1) acts like the reciprocal of a number. Just as multiplying a number by its reciprocal yields 1 (e.g., 5 × 1/5 = 1), multiplying a matrix by its inverse yields the Identity matrix (I).

Only square matrices can have inverses, but not all square matrices do. A matrix that has an inverse is called invertible or non-singular. A matrix that does not have an inverse is called singular.

Finding the Inverse via Gauss-Jordan Elimination

The most robust method for computing the inverse of an n x n matrix by hand is the augmented matrix method. Here is the step-by-step process:

  1. Create an augmented matrix of size n x 2n by placing the original matrix A on the left and the n x n Identity matrix I on the right: [A | I].
  2. Perform Gauss-Jordan elimination on this augmented matrix to reduce the left side to its Reduced Row Echelon Form (RREF).
  3. If the matrix A is invertible, the left side will reduce completely to the Identity matrix I. When this happens, the right side will automatically transform into the inverse matrix A-1: [I | A-1].
  4. If the left side cannot be reduced to the Identity matrix (e.g., if you get a row of all zeros on the left side), the matrix is singular, and no inverse exists.

Algebraic Properties of Inverses

Frequently Asked Questions

How does the matrix inverse relate to RREF?

To find the inverse of a square matrix A, you augment it with the Identity matrix [A | I] and compute the RREF. If A is invertible, the left side reduces to the Identity matrix, leaving the inverse A^-1 on the right side: [I | A^-1].

What is a singular matrix?

A singular matrix is a square matrix that is not invertible. Its determinant is exactly zero, its rank is less than its dimension, and its columns are linearly dependent.

What is the determinant of a matrix?

The determinant is a scalar value that measures the factor by which linear transformations scale volume. A matrix is invertible if and only if its determinant is non-zero. It can be computed exactly using Gaussian elimination.

What is the Identity matrix?

The Identity matrix is a square matrix with 1s on the main diagonal and 0s elsewhere. It acts as the multiplicative identity for matrices.