Linear Algebra B — Inverses & Solving Systems
Solving systems — Cramer's rule
continues from lesson 1 — values defined earlier in the course stay live here
ELI5: a system like 2x + y = 8, x − y = 1 is secretly a matrix equation A·[x, y] = [8, 1]. Cramer's rule solves it with determinants alone: to get x, swap the right-hand side into column 1 and divide by det(A); for y, swap it into column 2.
Real-world hook: systems are matrix equations, and that's how software solves circuit mesh currents, structural forces in a truss, and the millions-of-unknowns systems behind weather models (with faster algorithms than Cramer, but the same idea).
Try it yourself: solve 3x + 2y = 12 and x + y = 5 for x.
Where next: Differential Equations — where calculus and these systems join forces to model anything that evolves.