Systems of Linear Equations

A system of linear equations is several equations that must all hold at once. Each linear equation in two unknowns, like 2x + y = 5, draws a line; solving the system means finding the (x, y) that lies on every line simultaneously:

\begin{aligned} a_1 x + b_1 y &= c_1 \\ a_2 x + b_2 y &= c_2 \end{aligned}

Geometrically, the solution is the point where the lines cross. Two tilted lines meet at exactly one point — one unique solution.

Find the crossing

Each slider tilts one line. Their intersection — the dot — is the solution to the system, and its coordinates are read off live. Tilt the lines until they're parallel and the dot vanishes: no crossing, no solution.

Why this is linear algebra

Two equations, two unknowns is easy to picture — but real problems have hundreds of equations in hundreds of unknowns, and lines become flat hyperplanes in high-dimensional space. No one solves those by sketching. Instead we pack the whole system into a single matrix equation A\vec{x} = \vec{b} and let the machinery of matrices do the work. That repackaging is the next step.