Javascript required
Skip to content Skip to sidebar Skip to footer

Find the Solution to a Matrix With Inverses

Matrix Inversion:
Finding the Inverse of a Matrix
(page 1 of 2)


For matrices, there is no such thing as division. You can add, subtract , and multiply matrices, but you cannot divide them. There is a related concept, though, which is called "inversion". First I'll discuss why inversion is useful, and then I'll show you how to do it .


Think back to when you first learned about how to solve linear equations . If you were given something like " 3 x = 6 ", you would solve by dividing both sides by 3 . Since multiplying by 1/3 i s the same as dividing by 3 , you could also multiply both sides by 1/3 to get the same answer: x = 2 . If you needed to solve something like "(3/2)x = 6" , you could still divide both sides by 3/2, but it was probably easier to multiply both side by 2/3. The reciprocal fraction 2/3 is the inverse of 3/2 because, if you multiply the two fractions, you get 1 , which is, in this context, called "the (multiplicative) identity ": 1 is called the identity because multiplying something by 1 doesn't change its value.

This terminology and these facts are very important for matrices. If you are given a matrix equation like AX = C , where you are given A and C and are told to figure out X , you would like to "divide off" the matrix A . But you can't do division with matrices. On the other hand, what if you could find the inverse of A , something similar to finding the reciprocal fraction above? The inverse of A , written as " A �1 " and pronounced " A inverse", would allow you to cancel off the A from the matrix equation and then solve for X .

    AX = C
    A
    �1 AX = A �1 C

    IX
    = A �1 C

    X = A �1 C

How did " A �1 AX " on the left-hand side of the equation turn into " X "? Think back to the nature of inverses for regular numbers. If you have a number (such as 3/2 ) and its inverse (in this case, 2/3 ) and you multiply them, you get 1 . And 1 is the identity, so called because 1 x = x for any number x . It works the same way for matrices. If you multiply a matrix (such as A ) and its inverse (in this case,
A �1 ), you get the identity matrix I . And the point of the identity matrix is that IX = X for any matrix X (meaning "any matrix of the correct size", of course).

It should be noted that the order in the multiplication above is important and is not at all arbitrary. Recall that, for matrices, multiplication is not commutative. That is, AB is almost never equal to BA . So multiplying the matrix equation "on the left" (to get A �1 AX ) is not at all the same thing as multiplying "on the right" (to get AXA �1 ). And you can not say that the product AXA �1  equals A �1 AX , because you can't switch around the order in the multiplication. Instead, you have to multiply A �1 on the left, putting it right next to the A in the original matrix equation. And since you have to do the same thing to both sides of an equation when you're solving, you must multiply "on the left" on the right-hand side of the equation as well, resulting in A �1 C . You cannot be casual with your placement of the matrices; you must be precise, correct, and consistent. This is the only way to successfully cancel off A and solve the matrix equation.


As you have seen above, inverse matrices can be very useful for solving matrix equations. But, given a matrix, how do you invert it? How do you find the inverse? The technique for inverting matrices is kind of clever. For a given matrix A and its inverse A �1 , we know we have A �1 A = I . We're going to use the identity matrix I  in the process for inverting a matrix.

  • Find the inverse of the following matrix.
    • [[ 1  3  3 ][ 1  4  3 ][ 1  3  4 ]]

    First, I write down the entries the matrix A , but I write them in a double-wide matrix:

      3 � 6 matrix with empy right half

    In the other half of the double-wide, I write the identity matrix:

      [[ 1  3  3  1  0  0 ][ 1  4  3  0  1  0 ][ 1  3  4  0  0  1 ]]

    Now I'll do matrix row operations to convert the left-hand side of the double-wide into the identity. (As always with row operations, there is no one "right" way to do this. What follows are just the steps that happened to occur to me. Your calculations could easily look quite different.)

      matrix row operations

    Now that the left-hand side of the double-wide contains the identity, the right-hand side contains the inverse. That is, the inverse matrix is the following:

      [[ 7  –3  –3 ][ –1  1  0 ][ –1  0  1 ]]

Note that we can confirm that this matrix is the inverse of A by multiplying the two matrices and confirming that we get the identity:   Copyright � Elizabeth Stapel 2003-2011 All Rights Reserved

    matrix multiplication resulting in the identity

Be advised that, in "real life", the inverse is rarely a matrix filled with nice neat whole numbers like this. With any luck, though, especially if you're doing inverses by hand, you'll be given nice ones like this to do.

Top  | 1 | 2|  Return to Index  Next >>

Cite this article as:

Stapel, Elizabeth. "Matrix Inversion: Finding the Inverse of a Matrix." Purplemath. Available from
https://www.purplemath.com/modules/mtrxinvr.htm. Accessed

Find the Solution to a Matrix With Inverses

Source: https://www.purplemath.com/modules/mtrxinvr.htm