What Is The Elimination Method?
The elimination method is a way to solve a system of equations by combining the equations so that one variable is removed. You add or subtract the equations to cancel a variable, solve the resulting one-variable equation, then substitute back to find the other variable. It is also called the addition method.
It works because adding equal things to equal things keeps an equation true: if $a = b$ and $c = d$, then $a + c = b + d$. Cancelling a variable is just a clever choice of what to add.
When do you add, and when do you subtract?
The decision rests on the coefficients of the variable you want to remove.
Add the equations when the matching coefficients are opposites (like $+3y$ and $-3y$). They sum to zero.
Subtract one equation from the other when the matching coefficients are equal (like $2x$ and $2x$). They cancel on subtraction.
If neither matches, you first multiply one or both equations by a constant to make a pair match. That scaling step is the heart of the method.
The Steps Of The Elimination Method
Step | What you do |
|---|---|
1 | Write both equations in standard form $ax + by = c$, lined up by variable. |
2 | Multiply one or both equations so one variable has matching or opposite coefficients. |
3 | Add (opposite coefficients) or subtract (equal coefficients) to eliminate that variable. |
4 | Solve the resulting single-variable equation. |
5 | Substitute that value back into either original equation to find the other variable. |
6 | Check the pair in both original equations. |
The variables here are the two unknowns ($x$, $y$); the coefficients ($a$, $b$) are the numbers in front of them; $c$ is the constant on the right.
Examples Of The Elimination Method
Example 1
Solve:
$$x + y = 7$$ $$x - y = 3$$
The $y$ coefficients are opposites ($+1$ and $-1$), so add the equations:
$$2x = 10$$ $$x = 5$$
Substitute into the first equation:
$$5 + y = 7$$ $$y = 2$$
Final answer: $(5, 2)$.
Example 2 (where the first instinct goes wrong)
Solve:
$$3x + 2y = 16$$ $$3x - y = 4$$
The $x$ coefficients are equal ($3$ and $3$). The first instinct is to add the equations to cancel — but watch what adding does:
$$6x + y = 20$$
Both variables survived; nothing was eliminated. Adding only cancels when coefficients are opposite, and these are equal. The fix is to subtract:
$$(3x + 2y) - (3x - y) = 16 - 4$$ $$3y = 12$$ $$y = 4$$
Substitute into the second equation:
$$3x - 4 = 4$$ $$3x = 8$$ $$x = \tfrac{8}{3}$$
Final answer: $\left(\tfrac{8}{3},, 4\right)$. Match the operation to the coefficients: equal means subtract, opposite means add.
Example 3
Solve (coefficients must be scaled first):
$$2x + 3y = 13$$ $$4x - y = 5$$
No coefficients match yet. Multiply the second equation by $3$ so the $y$ terms become opposites:
$$2x + 3y = 13$$ $$12x - 3y = 15$$
Now add:
$$14x = 28$$ $$x = 2$$
Substitute into the second original equation:
$$4(2) - y = 5$$ $$8 - y = 5$$ $$y = 3$$
Final answer: $(2, 3)$.
Example 4
Solve (scale both equations):
$$3x + 4y = 10$$ $$2x + 5y = 9$$
To cancel $x$, make the $x$ coefficients match at $6$: multiply the first by $2$ and the second by $3$.
$$6x + 8y = 20$$ $$6x + 15y = 27$$
Subtract the first from the second:
$$7y = 7$$ $$y = 1$$
Substitute into $3x + 4y = 10$:
$$3x + 4 = 10$$ $$3x = 6$$ $$x = 2$$
Final answer: $(2, 1)$.
Example 5
A no-solution case:
$$2x + 3y = 12$$ $$4x + 6y = 30$$
Multiply the first by $2$ to match the $x$ coefficients:
$$4x + 6y = 24$$ $$4x + 6y = 30$$
Subtract:
$$0 = -6$$
Both variables cancelled and left a false statement. The lines are parallel. Final answer: no solution (inconsistent system).
Example 6
Two numbers have a sum of $9$ and a difference of $5$. Find them.
Let the numbers be $x$ and $y$:
$$x + y = 9$$ $$x - y = 5$$
Add to cancel $y$:
$$2x = 14$$ $$x = 7$$
Then $7 + y = 9$, so $y = 2$. Final answer: the numbers are $7$ and $2$.
Why The Elimination Method Earns Its Place
The reason to reach for elimination is that it stays clean where other methods get messy.
No fractions until the end. When both equations are in standard form $ax + by = c$, elimination avoids the awkward fractions that substitution often introduces mid-solve.
It is the standard form for machines. Gaussian elimination — the same add-and-cancel idea applied row by row — is how computers solve large systems. The hand method you learn here is a small instance of the algorithm that runs inside every linear-algebra library.
It was made for many variables. Elimination's payoff shows up with three or more unknowns, where you cancel variables one at a time to whittle the system down. Two-variable problems just teach the move; the destination is systems too big to graph.
Engineers solving a circuit with Kirchhoff's laws or a structure with force-balance equations are running elimination on systems of many equations. The arithmetic is yours; only the scale changes.
Where Students Lose The Mark On Elimination
Mistake 1: Adding when you should subtract (or vice versa)
Where it slips in: Choosing the operation before checking whether coefficients are equal or opposite.
Don't do this: Adding two equations with equal coefficients, expecting a variable to vanish.
The correct way: Equal coefficients cancel on subtraction; opposite coefficients cancel on addition. The first instinct is often to always add — the move that fixes it is to read the sign of the matched coefficients first, then decide.
Mistake 2: Sign errors when subtracting
Where it slips in: Subtracting one whole equation from another, especially with a negative middle term.
Don't do this: $(3x + 2y) - (3x - y) = 3y$ — wrong, the sign of the $-y$ was dropped.
The correct way: Distribute the minus across every term: $(3x + 2y) - (3x - y) = 3x + 2y - 3x + y = 3y$… and check both: that gives $3y$ here only because the constants and like terms are handled the same way. The reliable habit is to rewrite the subtracted equation with all signs flipped first, then add — turning subtraction into addition removes the most common error.
Mistake 3: Forgetting to back-substitute, or substituting into the scaled equation
Where it slips in: After finding one variable, plugging it into a multiplied-up version instead of an original.
Don't do this: Stopping at $x = 2$ and reporting it as the answer, or substituting into the equation you scaled by $3$.
The correct way: A system's answer is a pair. After solving for one variable, substitute back into one of the original equations to find the other, then check both. The rusher who reports a single value, or the second-guesser who substitutes into the wrong line, both lose the second coordinate or pick up an error.
Conclusion
The elimination method solves a system by adding or subtracting equations to cancel one variable.
Add when matching coefficients are opposites; subtract when they are equal; scale first if neither matches.
A false statement after both variables cancel means no solution; a true statement means infinitely many.
The method shines on standard-form systems and scales to three or more variables as Gaussian elimination.
The most common mistakes are picking the wrong add/subtract operation, dropping signs while subtracting, and failing to back-substitute and check.
Practice Questions on the Elimination Method
Solve each by elimination, then check your answers below.
By adding: $x + y = 10$ and $x - y = 4$.
By subtracting: $2x + y = 7$ and $2x + 3y = 11$.
By scaling first: $3x + 2y = 7$ and $5x + 4y = 13$.
Classify: $2x + 3y = 12$ and $4x + 6y = 18$.
Answers
Adding cancels $y$: $2x = 14$, so $x = 7$, $y = 3$: $(7, 3)$.
Subtracting cancels $x$: $2y = 4$, so $y = 2$, and $2x + 2 = 7$ gives $x = \tfrac{5}{2}$: $\left(\tfrac{5}{2}, 2\right)$.
Scale the first by $2$: $6x + 4y = 14$. Subtracting $5x + 4y = 13$ gives $x = 1$, and back-substituting gives $y = 2$: $(1, 2)$.
Scale the first by $2$: $4x + 6y = 24$. Subtracting the second equation, $4x + 6y = 18$, gives $0 = 6$, which is false: parallel lines, no solution.
Keep Going With the Elimination Method
If you get stuck on the add-versus-subtract choice, come back to Example 2. From here, see how this method sits among all approaches in system of equations, compare it with the substitution method, strengthen the foundation in linear equations, and see the all-zeros special case in the homogeneous system of linear equations. Want a live Bhanzu trainer to walk through more elimination method problems? Book a free demo class.
Was this article helpful?
Your feedback helps us write better content