Algebra

Solving simultaneous equations: when to use substitution vs elimination

By Mr Gan · O-Level E-Math · Updated July 2026 · 8 min read

For a pair of linear simultaneous equations, use elimination when both equations are written in ax + by = c form with no variable conveniently alone — scale one or both equations so a variable's coefficients match, then add or subtract. Use substitution when one equation already has a variable isolated (e.g. "y = ..."), or is trivially easy to rearrange into that form. Both methods always give the correct answer; the choice is about speed and avoiding unnecessary fractions.

Why the choice of method actually matters

Both methods always work — the difference is speed and error risk, not correctness. Both methods also rely on the same skill of solving linear equations once a single variable has been isolated. Picking the wrong method doesn't cost you the answer, but it costs you time and introduces more chances for arithmetic slips, especially with fractions. Picking correctly turns a 5-line solution into a 3-line one.

The decision in two questions

Use substitution if...

One variable is already isolated (or trivially easy to isolate) in one equation.

Use elimination if...

Both equations are in ax + by = c form, with no variable conveniently alone.

Method 1 — Elimination, when coefficients already match

Elimination works by adding or subtracting the two equations to cancel one variable entirely.

Example — solve 3x + 2y = 16 and 5x − 2y = 8

1
Look at the coefficients of y: +2 and −2. They're already equal in size with opposite signs — perfect for elimination by adding the two equations.
2
Add the equations term by term:
(3x + 5x) + (2y − 2y) = 16 + 8
8x = 24
3
Solve for x:
x = 3
4
Substitute x = 3 back into either original equation. Using the first:
3(3) + 2y = 16
9 + 2y = 16
y = 3.5

Same sign coefficients → subtract. Opposite sign coefficients → add. If the coefficients of the variable you're eliminating have the same sign (both +2 or both −2), subtract one equation from the other. If they have opposite signs (+2 and −2), add the equations. This one rule covers every elimination case.

Method 1b — Elimination, when coefficients don't already match

Elimination still works even when the coefficients aren't equal — you just need to scale one or both equations first.

Example — solve 2x + 3y = 13 and 5x + 2y = 13

1
Neither variable has matching coefficients. Choose to eliminate y: multiply the first equation by 2, and the second equation by 3, so both become 6y.
2
Scale both equations:
(2x + 3y = 13) × 2 → 4x + 6y = 26
(5x + 2y = 13) × 3 → 15x + 6y = 39
3
Both y-coefficients are now +6 (same sign) — subtract to eliminate:
(15x − 4x) + (6y − 6y) = 39 − 26
11x = 13
4
Solve for x:
x = 13/11
5
Substitute back into an original equation to find y. This example deliberately produces an awkward fraction — a reminder that not every O-Level pair gives whole-number answers, so don't assume you've made an error if the numbers aren't clean.

Method 2 — Substitution, when a variable is already isolated

Substitution is often the faster choice when one equation is already written as "y = ..." or "x = ...", or can be rearranged into that form in one step.

Example — solve y = 2x − 1 and 3x + 4y = 17

1
The first equation already has y isolated — substitute (2x − 1) in place of y in the second equation:
3x + 4(2x − 1) = 17
2
Expand and simplify:
3x + 8x − 4 = 17
11x = 21
3
Solve for x:
x = 21/11
4
Substitute back into y = 2x − 1 to find y.

Recognise this pattern: whenever one equation is already written as "y = ..." or "x = ...", substitution is almost always faster than rearranging into ax + by = c form and eliminating. Don't force elimination just because it's the "standard" method — read what the question already gives you.

Example — solve x = y + 3 and 2x + 5y = 13

1
The first equation already has x isolated — substitute (y + 3) in place of x in the second equation:
2(y + 3) + 5y = 13
2
Expand and simplify:
2y + 6 + 5y = 13
7y = 7
3
Solve for y:
y = 1
4
Substitute back into x = y + 3 to find x:
x = 1 + 3 = 4

Common mistake with substitution

When substituting an expression like (y + 3) or (2x − 1) into the second equation, students often forget to put brackets around it — writing 2y + 3 + 5y = 13 instead of 2(y + 3) + 5y = 13. Always wrap the substituted expression in brackets, then expand carefully.

Watch the whole method in about a minute.

Word problems — setting up the equations correctly

The method (substitution or elimination) is only half the challenge in O-Level word problems. Setting up correct equations from the words is where most marks are actually lost.

Example — 3 apples and 2 oranges cost $3.10. 5 apples and 4 oranges cost $5.60. Find the cost of one apple and one orange.

1
Define variables clearly: let a = cost of one apple (in dollars), o = cost of one orange (in dollars).
2
Translate each sentence into an equation:
3a + 2o = 3.10
5a + 4o = 5.60
3
Both equations are linear, no variable is isolated — use elimination. Scale the first equation by 2 so both have 4o:
6a + 4o = 6.20
4
Subtract the second original equation:
(6a − 5a) + (4o − 4o) = 6.20 − 5.60
a = 0.60
5
Substitute a = 0.60 into the first original equation to find o:
3(0.60) + 2o = 3.10
1.80 + 2o = 3.10
o = 0.65
6
Answer the question in context: one apple costs $0.60 and one orange costs $0.65.

Always define your variables first

Writing "let a = apple" without specifying the unit (cost in dollars? weight in grams?) is a common way to lose a mark in word problems. State exactly what each variable represents before writing the equations.

Quick reference — which method for which pair

1
No variable isolated, coefficients already match (same size, any sign) → Elimination directly — add or subtract.
2
No variable isolated, coefficients don't match → Elimination after scaling one or both equations.
3
One variable already isolated, or one step from it (e.g. "y = ..." or "x = ...") → Substitution is usually faster.
4
Word problem → Define variables with units first, translate sentences into equations, then apply rules 1–3 above.

Frequently asked questions

Can I always use substitution, even when no variable is isolated?

Yes — substitution always works mathematically. But when neither equation has an isolated variable, substitution requires an extra rearranging step first (dividing to make a variable the subject), which elimination skips entirely. For two equations already in standard ax + by = c form, elimination is usually 1–2 lines shorter.

What if I eliminate the wrong variable — do I have to start over?

No — eliminating either variable first is equally valid. If eliminating y looks messier than eliminating x (or vice versa) after scaling, you're free to switch which variable you target. Choose whichever produces smaller, simpler numbers to scale by.

My answer has a decimal or fraction — did I make a mistake?

Not necessarily. Many O-Level simultaneous equation pairs are deliberately constructed to give whole-number answers, but not all of them are — particularly in word problems involving money or measurements. Double-check your working with substitution back into both original equations rather than assuming a non-integer answer is wrong.

How do I check my final answer is correct?

Substitute both values back into the original equation you did not use for your final substitution step. If both sides balance, your answer is correct. This check takes under a minute and catches nearly every arithmetic slip before you move to the next question.

Are simultaneous equations in O-Level E-Math always linear?

Yes — under the Algebra topic, simultaneous equations are always a pair of linear equations, solved using substitution or elimination as covered in this post. A separate topic later in the syllabus, under Graphs, covers finding the intersection of a line and a curve (such as a quadratic) using a graphical approach — that's a distinct skill from this one and uses a different method.

— Mr Gan Math Tuition

Still unsure which method to pick?

Mr. Gan works with students who want a clear rule for every question type — not guesswork under exam pressure.

Chat with Mr. Gan