All articles
algebrasystems of equationsmethod choice

Substitution or Elimination? How to Pick the Faster Method

Both methods solve every linear system, so neither is easier in general. The coefficients decide: a variable with coefficient 1 means substitution, standard form means elimination. A ten-second check, with the same system solved both ways.

7 min readBy Nadia Brenner

The test hands you a system of two equations. You pick substitution, because that is the method you trust, and three lines later you are dragging 75y4\frac{7-5y}{4} through the second equation and adding fractions under time pressure. The answer comes out right. It also comes out four minutes late.

Neither method's fans like to admit this, but substitution and elimination both solve every linear system. Neither one is easier in general. "Easier" is a property of the particular system in front of you, and you can read it off the coefficients in about ten seconds, before you write anything down.

Which is easier: substitution or elimination?

Whichever one keeps you in whole numbers longer. That is the entire contest. Both methods walk to the same answer, so the only thing you are choosing is how much fraction arithmetic you do on the way, and fractions are where dropped signs and lost minutes live.

The textbooks agree on the split. OpenStax puts the same decision table in both Elementary Algebra and Intermediate Algebra: use substitution "when one equation is already solved or can be easily solved for one variable", and use elimination "when the equations are in standard form". Both books then classify the same pair of examples. The system 3x+8y=403x+8y=40 with 7x4y=327x-4y=-32 gets elimination, because both equations sit in standard form. The system 5x+6y=125x+6y=12 with y=23x1y=\frac{2}{3}x-1 gets substitution, because half the work is already done.

That covers the clean cases. The refinement that decides everything in between is the coefficient of 1.

The ten-second check

Before touching the pencil, run these three questions in order. The first yes wins.

  1. Is one equation already solved for a variable? Something shaped like y=2x7y = 2x - 7 or x=3y+1x = 3y + 1. Substitute it into the other equation and go.
  2. Does any variable, in either equation, have a coefficient of 1 or 1-1? Solve for that variable in one line, no division, no fractions. Then substitute.
  3. Neither? Eliminate. And check for a bonus: if one variable's coefficients are already opposites, like 3y3y and 3y-3y, the elimination is a single addition.

Questions one and two are really the same question. A variable with coefficient 1 is one rearrangement away from being solved for, and that rearrangement costs nothing. The trap is answering yes to substitution when the honest coefficient situation says no, which is how you end up dividing by 4 in the first line and paying for it in every line after.

When substitution is faster

Take a system where one equation arrives pre-solved:

y=2x73x+2y=14\begin{aligned} y &= 2x - 7 \\ 3x + 2y &= 14 \end{aligned}

Elimination would make you rearrange the first equation into standard form before you even start. Substitution uses it as delivered:

3x+2(2x7)=143x+4x14=147x=28x=4\begin{aligned} 3x + 2(2x - 7) &= 14 \\ 3x + 4x - 14 &= 14 \\ 7x &= 28 \\ x &= 4 \end{aligned}

Then y=2(4)7=1y = 2(4) - 7 = 1, and the solution is (4,1)(4, 1). Every line is integer arithmetic.

The coefficient-of-1 case works the same way even though nothing is solved for yet. In

x+4y=93x5y=10\begin{aligned} x + 4y &= 9 \\ 3x - 5y &= 10 \end{aligned}

the lone xx in the first equation rearranges instantly to x=94yx = 9 - 4y. Substituting:

3(94y)5y=102712y5y=1017y=17y=1\begin{aligned} 3(9 - 4y) - 5y &= 10 \\ 27 - 12y - 5y &= 10 \\ -17y &= -17 \\ y &= 1 \end{aligned}

So x=94(1)=5x = 9 - 4(1) = 5. Still no fractions, because the variable I solved for had a coefficient of 1. That single condition is what makes substitution cheap.

When elimination is faster

Now a system with no coefficient of 1 anywhere:

2x+3y=125x3y=9\begin{aligned} 2x + 3y &= 12 \\ 5x - 3y &= 9 \end{aligned}

The yy coefficients are already opposites. Add the equations and yy is gone:

(2x+3y)+(5x3y)=12+97x=21x=3\begin{aligned} (2x + 3y) + (5x - 3y) &= 12 + 9 \\ 7x &= 21 \\ x &= 3 \end{aligned}

Back-substituting into the first equation gives 3y=126=63y = 12 - 6 = 6, so y=2y = 2. Two lines of actual work. Solving that same system by substitution means starting from x=123y2x = \frac{12 - 3y}{2}, and there is no reason to volunteer for that.

When the coefficients are not opposites yet, you make them opposites. In

4x+5y=73x2y=12\begin{aligned} 4x + 5y &= 7 \\ 3x - 2y &= -12 \end{aligned}

multiply the first equation by 2 and the second by 5, so the yy terms become 10y10y and 10y-10y:

8x+10y=1415x10y=6023x=46x=2\begin{aligned} 8x + 10y &= 14 \\ 15x - 10y &= -60 \\ 23x &= -46 \\ x &= -2 \end{aligned}

Then 5y=74(2)=155y = 7 - 4(-2) = 15, so y=3y = 3. Notice what the multiplication step bought: every quantity on the page stayed an integer.

The same system both ways, so you can see the cost

Here is that last system again, solved by substitution instead. Solve the first equation for xx, getting x=75y4x = \frac{7 - 5y}{4}, and push it through the second equation, clearing the denominator by multiplying everything by 4:

3(75y4)2y=123(75y)8y=482115y8y=4823y=69y=3\begin{aligned} 3\left(\frac{7 - 5y}{4}\right) - 2y &= -12 \\ 3(7 - 5y) - 8y &= -48 \\ 21 - 15y - 8y &= -48 \\ -23y &= -69 \\ y &= 3 \end{aligned}

Then x=7154=2x = \frac{7 - 15}{4} = -2. Same answer, (2,3)(-2, 3). The line count is close to identical. The difference is what each line asks of you: the substitution route makes you build a fraction, carry it into another equation, remember to multiply both sides by 4 including the 12-12, and distribute a 3 across a subtraction. None of that is hard. All of it is surface area for the sign errors that cost real points.

Whichever route you took, the check is the same and takes twenty seconds: put the pair back into both original equations, not the rearranged ones. Here 4(2)+5(3)=74(-2) + 5(3) = 7 and 3(2)2(3)=123(-2) - 2(3) = -12, so (2,3)(-2, 3) survives both. I go through the other four checks that work when there is no answer key in a separate post, but for systems, this one is the whole game.

The word problem usually decides for you

Systems rarely appear out of nowhere. They come from word problems, and the sentence structure of the problem tends to pick the method before you do.

Totals produce standard form. "Adult tickets cost 8 dollars, child tickets cost 5, and 200 tickets brought in 1,310 dollars" turns into a+c=200a + c = 200 and 8a+5c=13108a + 5c = 1310, two equations in standard form, and the first one hands you a coefficient of 1 anyway. Relationships produce solved form. "The second number is one more than twice the first" is already y=2x+1y = 2x + 1 before you finish reading it, and substitution is the natural continuation.

There is a third method worth naming: graph both lines and read off the intersection. OpenStax's advice is to use it "when you need a picture of the situation", and plotting both equations on a graphing calculator is a genuinely good visual check. As a primary method it has a weakness, though: if the intersection is not on clean integer coordinates, reading it off a graph is an estimate, not an answer.

Picking wrong costs minutes, not the answer

This is the part I most want students to hear. If you choose the slower method, nothing breaks. Both methods reach the same solution, and both report the strange cases identically: if the variables all vanish and leave a false statement like 0=70 = 7, the system has no solution, and if they leave a true one like 0=00 = 0, it has infinitely many. The ten-second check is not protecting you from being wrong. It is protecting your time and shrinking the number of chances you give yourself to slip.

Method choice is a skill of its own, separate from executing the methods, and it shows up all over algebra. Deciding between these two is the same kind of judgment as choosing between factoring and the quadratic formula, where the coefficients also tell you the answer before you start. Train it directly: for your next ten systems, spend the ten seconds first, write S or E in the margin, then solve. By the tenth one the decision will not feel like a decision.

And when a solve goes sideways and you cannot find the slip, run the same system through the systems of equations calculator on MathSolver. It walks the solution step by step, so you can put your page next to it and see the exact line where your route left the road.

Substitution vs Elimination: Which Is Easier?