ALGEBRA · CORE CONCEPT
Systems of linear equations
A system asks for values that satisfy several linear equations at the same time. Algebraically, geometrically and in matrix form, the same structure appears.
1. What is a linear system?
A system of \(m\) linear equations in \(n\) unknowns can be written as
where \(A\in\mathbb{R}^{m\times n}\) contains the coefficients, \(\mathbf{x}\in\mathbb{R}^n\) the unknowns, and \(\mathbf{b}\in\mathbb{R}^m\) the constants. A solution must satisfy every row equation simultaneously.
2. How many solutions can a system have?
The rank criterion is \(\operatorname{rank}(A)=\operatorname{rank}([A\mid b])\) for consistency. If this common rank also equals the number of unknowns, the solution is unique.
3. Main solving methods
4. Gaussian elimination — worked example
Solve \(2x+y=7\) and \(x-y=2\).
From the second row, \(y=1\). Substituting into the first row gives \(x=3\).
Elementary row operations preserve the solution set because they replace equations by equivalent linear combinations.
5. Geometric interpretation
In two variables, each linear equation is a line. The solution of the system is their intersection.
Parallel distinct lines correspond to no solution; identical lines correspond to infinitely many solutions.
6. Interactive 2×2 solver
Enter coefficients for \(a_1x+b_1y=c_1\) and \(a_2x+b_2y=c_2\).
7. Common mistakes
- Applying an operation to only one equation side instead of the whole row.
- Dividing by a pivot without checking whether it is zero.
- Stopping at row-echelon form without back-substitution.
- Assuming every system has a unique solution.
- Confusing an overdetermined system with an inconsistent system — extra equations can still be compatible.
8. Practice
- \(x+y=5,\ x-y=1\)
- \(2x+4y=6,\ x+2y=3\)
- \(x+y=2,\ 2x+2y=5\)
Solutions
1) \((3,2)\). 2) Infinitely many solutions: the equations are equivalent. 3) No solution: the equations contradict each other.