Fiveable

๐Ÿ“Honors Pre-Calculus Unit 9 Review

QR code for Honors Pre-Calculus practice questions

9.7 Solving Systems with Inverses

9.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
๐Ÿ“Honors Pre-Calculus
Unit & Topic Study Guides
Pep mascot

Matrix Inverses and Systems of Linear Equations

Pep mascot
more resources to help you study

Calculation of matrix inverses

A matrix inverse, denoted Aโˆ’1A^{-1}, is the matrix that "undoes" what AA does. It satisfies the property Aโ‹…Aโˆ’1=Aโˆ’1โ‹…A=IA \cdot A^{-1} = A^{-1} \cdot A = I, where II is the identity matrix. Not every matrix has an inverse, and knowing when one exists (and how to find it) is the foundation for this entire section.

Finding the inverse of a 2ร—2 matrix A=[abcd]A = \begin{bmatrix}a & b \\ c & d\end{bmatrix}:

  1. Calculate the determinant: detโก(A)=adโˆ’bc\det(A) = ad - bc

  2. Check that detโก(A)โ‰ 0\det(A) \neq 0. If the determinant is zero, the matrix has no inverse and the system either has no solution or infinitely many.

  3. Apply the formula: Aโˆ’1=1adโˆ’bc[dโˆ’bโˆ’ca]A^{-1} = \frac{1}{ad - bc}\begin{bmatrix}d & -b \\ -c & a\end{bmatrix}

The pattern: swap aa and dd along the main diagonal, then flip the signs of bb and cc.

Quick example: For A=[3124]A = \begin{bmatrix}3 & 1 \\ 2 & 4\end{bmatrix}, the determinant is 3(4)โˆ’1(2)=103(4) - 1(2) = 10, so:

Aโˆ’1=110[4โˆ’1โˆ’23]A^{-1} = \frac{1}{10}\begin{bmatrix}4 & -1 \\ -2 & 3\end{bmatrix}

Inverting larger matrices (3ร—3 and beyond):

  1. Set up the augmented matrix [AโˆฃI][A \mid I], placing the identity matrix of the same size next to AA
  2. Use row operations to transform the left side into the identity matrix
  3. Once the left side is II, the right side has become Aโˆ’1A^{-1}

This is the same row reduction process you've used before, just applied to a wider augmented matrix. If at any point the left side can't be reduced to II (you get a row of all zeros), the matrix is not invertible.

Calculation of matrix inverses, Matrices and Matrix Operations | Precalculus

Application of inverse matrices

Any system of linear equations can be written in matrix form as Axโƒ—=bโƒ—A\vec{x} = \vec{b}, where:

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

Solving the system using the inverse:

  1. Find Aโˆ’1A^{-1} (using the methods above)
  2. Multiply both sides on the left by Aโˆ’1A^{-1}: Aโˆ’1Axโƒ—=Aโˆ’1bโƒ—A^{-1}A\vec{x} = A^{-1}\vec{b}
  3. The left side simplifies because Aโˆ’1A=IA^{-1}A = I, and Ixโƒ—=xโƒ—I\vec{x} = \vec{x}
  4. So the solution is: xโƒ—=Aโˆ’1bโƒ—\vec{x} = A^{-1}\vec{b}

This method is especially efficient when you need to solve multiple systems that share the same coefficient matrix AA but have different constant vectors bโƒ—\vec{b}. You compute Aโˆ’1A^{-1} once, then just multiply it by each new bโƒ—\vec{b}. This comes up in problems like varying supply-and-demand scenarios or mixture problems with changing quantities.

Be careful with the order of multiplication. Matrix multiplication is not commutative, so you must multiply Aโˆ’1A^{-1} on the left of both sides. Writing bโƒ—โ‹…Aโˆ’1\vec{b} \cdot A^{-1} instead of Aโˆ’1โ‹…bโƒ—A^{-1} \cdot \vec{b} will give you a wrong answer (or won't even be defined).

Calculation of matrix inverses, 3.5b. Examples โ€“ Augmented Matrices | Finite Math

Interpretation of inverse matrix solutions

Real-world problems modeled by systems of equations require you to connect your numerical answers back to what the variables actually represent.

  • Identify what each variable means. Before solving, be clear about what x1,x2,x3x_1, x_2, x_3 stand for in context (prices, quantities, rates, etc.).
  • Check whether solutions are reasonable. A negative number of items produced or a flow rate of 10,000 gallons per second in a household pipe should raise a red flag. Always verify that your answers respect the problem's constraints.
  • Communicate results with units and context. Don't just write x=5x = 5. Write "the factory should produce 5 units of Product A per day" or whatever the problem calls for.

Matrix Properties and Alternative Methods

  • Singular matrix: A square matrix with detโก(A)=0\det(A) = 0. It has no inverse, which means the corresponding system doesn't have a unique solution.
  • Nonsingular (invertible) matrix: A square matrix with detโก(A)โ‰ 0\det(A) \neq 0. It has an inverse, and the corresponding system has exactly one solution.
  • Cramer's Rule: An alternative method for solving systems using determinants. For each variable, you replace one column of AA with bโƒ—\vec{b} and take the ratio of that new determinant to detโก(A)\det(A). It's useful for solving for a single variable without finding the full solution, but it gets tedious for large systems.