Fiveable

📈College Algebra Unit 11 Review

QR code for College Algebra practice questions

11.7 Solving Systems with Inverses

11.7 Solving Systems with Inverses

Written by the Fiveable Content Team • Last updated August 2025
Written by the Fiveable Content Team • Last updated August 2025
📈College Algebra
Unit & Topic Study Guides

Matrix Inverses and Solving Systems

Calculation of Matrix Inverses

A matrix inverse lets you "undo" matrix multiplication, similar to how dividing undoes multiplying with regular numbers. If you can find the inverse of a coefficient matrix, solving a system of equations becomes straightforward.

Inverse of a 2×2 Matrix

Given a 2×2 matrix A=[abcd]A = \begin{bmatrix} a & b \\ c & d \end{bmatrix}, its inverse is:

A1=1adbc[dbca]A^{-1} = \frac{1}{ad - bc} \begin{bmatrix} d & -b \\ -c & a \end{bmatrix}

The expression adbcad - bc is the determinant of the matrix, written det(A)\det(A). The inverse only exists when det(A)0\det(A) \neq 0. If the determinant equals zero, the matrix is called singular and has no inverse.

For example, if A=[3152]A = \begin{bmatrix} 3 & 1 \\ 5 & 2 \end{bmatrix}, then det(A)=(3)(2)(1)(5)=1\det(A) = (3)(2) - (1)(5) = 1, and:

A1=11[2153]=[2153]A^{-1} = \frac{1}{1} \begin{bmatrix} 2 & -1 \\ -5 & 3 \end{bmatrix} = \begin{bmatrix} 2 & -1 \\ -5 & 3 \end{bmatrix}

Inverse by Augmentation (for any size matrix)

For matrices larger than 2×2, use row reduction on an augmented matrix:

  1. Set up the augmented matrix [AI][A \mid I], placing the identity matrix II next to AA
  2. Perform row operations (row swapping, multiplying a row by a nonzero scalar, adding a multiple of one row to another) to transform the left side into the identity matrix
  3. Once the left side is II, the right side is A1A^{-1}

If at any point you get a row of all zeros on the left side, the matrix is singular and has no inverse.

Calculation of matrix inverses, 3.6b. Examples – Inverses of Matrices | Finite Math

Matrix Inverses for Linear Systems

Any system of linear equations can be written as a single matrix equation:

Ax=bA\vec{x} = \vec{b}

  • AA is the coefficient matrix (the numbers in front of each variable)
  • x\vec{x} is the variable vector (the unknowns you're solving for)
  • b\vec{b} is the constant vector (the numbers on the right side of each equation)

Solving with the inverse:

If AA is invertible, multiply both sides on the left by A1A^{-1}:

A1Ax=A1bA^{-1}A\vec{x} = A^{-1}\vec{b}

Since A1A=IA^{-1}A = I and Ix=xI\vec{x} = \vec{x}, this simplifies to:

x=A1b\vec{x} = A^{-1}\vec{b}

That's the entire solution. You find the inverse once, then multiply it by the constant vector.

When does this work?

  • If det(A)0\det(A) \neq 0, the system has exactly one unique solution
  • If det(A)=0\det(A) = 0, you can't use this method. The system is either inconsistent (no solution) or dependent (infinitely many solutions). You'd need a different approach, like row reduction, to figure out which case you're in.
Calculation of matrix inverses, 3.6b. Examples – Inverses of Matrices | Finite Math

Interpretation of Matrix Solutions

Translating a word problem into a matrix equation follows a consistent process:

  1. Identify the unknowns and assign them as variables (x,y,z,x, y, z, \ldots)
  2. Write a system of linear equations from the relationships described in the problem
  3. Build the coefficient matrix AA, variable vector x\vec{x}, and constant vector b\vec{b}
  4. Find A1A^{-1} and compute x=A1b\vec{x} = A^{-1}\vec{b}
  5. Interpret each component of the solution vector in context (e.g., x=5x = 5 might mean "5 units of Product A")

The inverse method is especially useful when you need to solve the same system structure with different constant vectors. Since A1A^{-1} stays the same, you just multiply by each new b\vec{b}. This comes up in applications like analyzing circuits with different voltage sources or modeling economic scenarios with changing inputs.

Matrix Operations and Linear Algebra

The inverse method builds on core matrix operations you've already learned: addition, scalar multiplication, and matrix multiplication. A few things to keep straight:

  • Matrix multiplication is not commutative: ABBAAB \neq BA in general. That's why you must multiply by A1A^{-1} on the left side of both sides of the equation.
  • The identity matrix II acts like the number 1: AI=IA=AAI = IA = A for any square matrix AA.
  • Only square matrices (same number of rows and columns) can have inverses, and only when their determinant is nonzero.

These properties are the foundation for everything in this section, so make sure they feel solid before moving on.