Matrix Inverses and Systems of Linear Equations

Calculation of matrix inverses
A matrix inverse, denoted , is the matrix that "undoes" what does. It satisfies the property , where 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 :
-
Calculate the determinant:
-
Check that . If the determinant is zero, the matrix has no inverse and the system either has no solution or infinitely many.
-
Apply the formula:
The pattern: swap and along the main diagonal, then flip the signs of and .
Quick example: For , the determinant is , so:
Inverting larger matrices (3×3 and beyond):
- Set up the augmented matrix , placing the identity matrix of the same size next to
- Use row operations to transform the left side into the identity matrix
- Once the left side is , the right side has become
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 (you get a row of all zeros), the matrix is not invertible.

Application of inverse matrices
Any system of linear equations can be written in matrix form as , where:
- is the coefficient matrix (the numbers in front of the variables)
- is the variable vector (what you're solving for)
- is the constant vector (the numbers on the right side of each equation)
Solving the system using the inverse:
- Find (using the methods above)
- Multiply both sides on the left by :
- The left side simplifies because , and
- So the solution is:
This method is especially efficient when you need to solve multiple systems that share the same coefficient matrix but have different constant vectors . You compute once, then just multiply it by each new . 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 on the left of both sides. Writing instead of will give you a wrong answer (or won't even be defined).

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 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 . 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 . It has no inverse, which means the corresponding system doesn't have a unique solution.
- Nonsingular (invertible) matrix: A square matrix with . 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 with and take the ratio of that new determinant to . It's useful for solving for a single variable without finding the full solution, but it gets tedious for large systems.