Matrix notation lets us write a whole system on a single line and solve it with the inverse.

The system {a1x+b1y=c1a2x+b2y=c2\begin{cases} a_1x+b_1y=c_1 \\ a_2x+b_2y=c_2\end{cases} is rewritten as AX=CAX=C with

A=(a1b1a2b2),X=(xy),C=(c1c2).A = \begin{pmatrix} a_1 & b_1 \\ a_2 & b_2\end{pmatrix},\quad X = \begin{pmatrix} x \\ y\end{pmatrix},\quad C = \begin{pmatrix} c_1 \\ c_2\end{pmatrix}.

If detA0\det A\ne 0 we have X=A1CX = A^{-1}C. It is the same result as Cramer’s, written in compact notation.

Topics: Linear systems
Concepts: Matrix form · Inverse matrix · Cramer’s rule
Skills: Solve systems