A system is a set of linear equations with the same variables.
Example (2 equations, 2 variables):
\[ \begin{cases} 2x + 3y = 8 \\ 4x - y = 2 \end{cases} \]We want to find values of x and y that satisfy all equations simultaneously.
Any system Ax = b can be written using matrices.
Example:
\[ \begin{pmatrix} 2 & 3 \\ 4 & -1 \end{pmatrix} \begin{pmatrix} x \\ y \end{pmatrix} = \begin{pmatrix} 8 \\ 2 \end{pmatrix} \]A = coefficient matrix, x = variable vector, b = constant vector.
A system can have:
We use Gaussian elimination to solve and classify systems.