Understanding Systems of Linear Equations
A linear equation contains variables only in the first degree—no squares, cubes, roots, or fractions with variables in the denominator. When you have multiple linear equations that must all be satisfied simultaneously, you have a system of linear equations.
For example, the pair of equations:
- 3x + 2y = 12
- x − y = 1
forms a system. The solution is the set of values (x and y in this case) that make every equation true at once. In a two-variable system, this represents the point where two lines intersect on a graph.
Systems can have exactly one solution (most common), no solution (parallel lines), or infinitely many solutions (identical lines).
The Elimination Method Explained
Elimination works by strategically removing one variable to reduce complexity. The core principle: if two equations have coefficients of opposite sign for one variable, adding them together cancels that variable out, leaving a single equation with one unknown.
When coefficients aren't already opposite, you multiply one or both equations by carefully chosen numbers to create this condition. For instance, if equation 1 has 3x and equation 2 has 2x, you might multiply equation 1 by 2 and equation 2 by 3 (or by −3 to create opposite signs) to align the coefficients.
The elegance of elimination lies in its universality: it works reliably across all solvable linear systems and generalizes to larger systems of three or more equations.
The Elimination Method Process
Given a system of two linear equations:
a₁x + b₁y = c₁
a₂x + b₂y = c₂
To eliminate y, multiply the equations so the y-coefficients become opposites, then add:
Multiply equation 1 by b₂: a₁b₂x + b₁b₂y = c₁b₂
Multiply equation 2 by −b₁: −a₂b₁x − b₁b₂y = −c₂b₁
Add them: (a₁b₂ − a₂b₁)x = c₁b₂ − c₂b₁
Solve for x, then substitute back into either original equation to find y.
a₁, a₂— Coefficients of x in equations 1 and 2b₁, b₂— Coefficients of y in equations 1 and 2c₁, c₂— Constant terms (right-hand side) of equations 1 and 2
Step-by-Step Solution Procedure
Step 1: Standardise form. Rearrange both equations so variables appear in the same order (typically x before y).
Step 2: Create opposite coefficients. Identify which variable to eliminate. Multiply one or both equations by integers so that variable has opposite coefficients in each equation.
Step 3: Add the equations. This removes the target variable, yielding a single-variable equation.
Step 4: Solve the resulting equation. Use basic algebra to find the value of the remaining variable.
Step 5: Back-substitute. Plug this value into either original equation to find the eliminated variable.
Step 6: Verify. Check your solution in both original equations to confirm correctness.
Common Pitfalls and Practical Insights
Avoid these mistakes when applying elimination to ensure accurate solutions.
- Sign errors when multiplying equations — When you multiply an entire equation by a negative number, apply the sign change to every term, including the constant. A single arithmetic slip here cascades through the rest of your work.
- Forgetting the back-substitution step — After eliminating one variable and solving for the other, many students stop prematurely. You must substitute your answer back into an original equation to find the eliminated variable—skipping this leaves your solution incomplete.
- Mishandling special cases — If elimination produces 0 = 0 (a true statement), the system has infinitely many solutions. If it produces 0 = 5 (false), there is no solution. Recognising these cases prevents incorrect conclusions about solvability.
- Choosing inefficient multipliers — While any non-zero multipliers work mathematically, selecting the least common multiple of target coefficients keeps numbers smaller and reduces errors. For coefficients 4 and 6, multiply by 3 and 2 respectively rather than 6 and 4.