Inverse Matrix

Describing an Inverse Matrix

  • The inverse of a matrix AA is a matrix that results in the identity matrix when multiplied by AA
  • Mathematically, the inverse matrix A1A^{-1} is the matrix that satisfies the following equation:
AA1=IAA^{-1} = I
  • In other words, an inverse matrix can be thought of the matrix that plays the transformation matrix in reverse
  • An inverse matrix is a transformation matrix in itself

Example of an Inverse Matrix

  • Let's say our transformation matrix AA represents a 90°90\degree clockwise rotation of a vector space:
A=[0110]A = \begin{bmatrix} 0 & 1 \cr -1 & 0 \end{bmatrix}
  • Then, our inverse matrix would look like the following:
A1=[0110]A^{-1} = \begin{bmatrix} 0 & -1 \cr 1 & 0 \end{bmatrix}
  • Therefore, A1A^{-1} represents a 90°90\degree counterclockwise rotation of a vector space

Another Example of an Inverse Matrix

  • Let's say our transformation matrix AA represents a rightward shear of a vector space:
A=[1101]A = \begin{bmatrix} 1 & 1 \cr 0 & 1 \end{bmatrix}
  • Then, our inverse matrix would look like the following:
A1=[1101]A^{-1} = \begin{bmatrix} 1 & -1 \cr 0 & 1 \end{bmatrix}
  • Therefore, A1A^{-1} represents a leftward shear of a vector space

System of Linear Equations

  • A system of linear equations is a collection of one or more linear equations involving the same set of variables
  • In linear algebra, we are typically representing a system of linear equations as a linear transformation Ax=bAx = b
  • We can use this system of linear equations Ax=bAx = b for two purposes:

    1. Solving for our vector b from the original vector space

      • We typically want to solve for bb if we want to see what some vector from a transformed vector space looks like in our original vector space
      • To do this, we need the following:

        • Vector xx from the transformed space
        • Transformation matrix AA so that we can map vectors from the transformed vector space back to our original vector space
      • Once we have these variables, we can solve for b by just plugging in our AA and xx into the formula (i.e. multiplying AA and xx together)
    2. Solving for our initial vector x

      • We typically want to solve for xx if we want to see what some vector from our original vector space looks like in a transformed vector space
      • To do this, we need the following:

        • Vector bb from our original vector space
        • The inverse of the transformation matrix A1A^{-1} so that we can map vectors from our original vector space to the transformed vector space
      • Once we have these variables, the equation Ax=bAx = b becomes x=bA1x = bA^{-1} by multiplying each side by A1A^{-1}
      • Then, we can solve for xx by just plugging in our A1A^{-1} and bb into the formula (i.e. multiplying A1A^{-1} and bb together)

Solving for the Inverse Matrix

  • Suppose we define a square matrix AA as the following:
A=[abcd]A = \begin{bmatrix} a & b \cr c & d \end{bmatrix}
  • The inverse of a square matrix AA can be defined as the following:
A1=1det(A)[dbca]A^{-1} = \frac{1}{det(A)}\begin{bmatrix} d & -b \cr -c & a \end{bmatrix}
  • There won't be an inverse of a matrix if the determinant of that matrix is 0

References

Previous
Next

Determinants

Dot Product