Subtracting The Second Equation From The First
Subtracting the Second Equation from the First: A Clear Guide to the Elimination Method
When you first encounter a system of linear equations, the idea of “subtracting the second equation from the first” can feel like a mysterious trick. And in reality, it is a straightforward and powerful technique known as the elimination method. By subtracting one equation from another, you eliminate one variable, making it possible to solve for the remaining variable with simple algebra. Also, this pillar post walks you through the concept, the step‑by‑step process, common pitfalls, real‑world applications, practice problems, and frequently asked questions. By the end, you’ll feel confident using subtraction to solve any pair of linear equations.
What Does “Subtracting the Second Equation from the First” Actually Mean?
At its core, a system of linear equations consists of two (or more) equations that share the same variables. For example:
[ \begin{cases} 2x + 3y = 8 \ 4x - y = 2 \end{cases} ]
Each equation represents a straight line on a graph. The solution to the system is the point where those lines intersect — the values of (x) and (y) that satisfy both equations simultaneously.
Subtracting the second equation from the first means you take the left‑hand side of the first equation and subtract the left‑hand side of the second, then do the same with the right‑hand sides:
[ (2x + 3y) - (4x - y) = 8 - 2 ]
When you distribute the minus sign, the (y) terms combine in a way that can eliminate one variable. In this example, the (y) terms become (3y - (-y) = 4y), while the (x) terms become (2x - 4x = -2x). The result is a new equation that still holds true because you performed the same operation on both sides of each original equation.
Why does this work? Because if two quantities are equal, subtracting the same quantity from each leaves them still equal. In real terms, if (A = B) and (C = D), then (A - C = B - D). Applying this principle to each side of the two equations preserves equality while allowing us to cancel a variable.
The Elimination Method Explained
Why Subtraction Works
The elimination method relies on the addition property of equality: you can add or subtract the same quantity from both sides of an equation without changing its truth. On top of that, when you have two equations, you can add or subtract them whole‑sale, treating each side as a single quantity. If the coefficients of one variable are opposites (or can be made opposites by multiplication), that variable disappears when you subtract the equations.
Step‑by‑Step Process
-
Write the system in standard form
Align the variables and constants vertically: [ \begin{aligned} a_1x + b_1y &= c_1 \ a_2x + b_2y &= c_2 \end{aligned} ] -
Make the coefficients of one variable opposites (if needed)
If the coefficients of, say, (x) are not already opposites, multiply one or both equations by a suitable number so that they become opposites. Remember to multiply every term in the equation by that number. -
Subtract the second equation from the first
Subtract the left‑hand sides and the right‑hand sides separately. The variable whose coefficients are opposites will cancel out. -
Solve the resulting single‑variable equation
You’ll be left with a simple equation in one variable; solve it using basic algebra. -
Back‑substitute to find the other variable
Plug the value you just found into either original equation and solve for the remaining variable. -
Check your solution
Substitute both values back into the original equations to verify they satisfy both.
Example 1: Simple Coefficients
Solve the system: [ \begin{cases} 3x + 2y = 16 \ 5x - 2y = 4 \end{cases} ]
- The (y) coefficients are (+2) and (-2) — already opposites. No multiplication needed.
- Subtract the second equation from the first:
[
(3x + 2y) - (5x - 2y) = 16 - 4
]
Distribute the minus:
[
3x + 2y - 5x + 2y = 12
]
Combine like terms:
[
-2x + 4y = 12
]
Wait — we didn’t eliminate (y); we actually added the (y) terms because subtracting a negative gives addition. Oops! We wanted to add the equations to eliminate (y). Let’s correct: we should add the equations, not subtract, because the coefficients are opposites.
Actually, the instruction was “subtract the second equation from the first.” If we do that, we get: [ (3x + 2y) - (5x - 2y) = 16 - 4 \ 3x + 2y - 5x + 2y = 12 \ -2x + 4y = 12 ] This didn’t eliminate a variable. So the proper step is to add the equations when coefficients are opposites. The phrasing “subtract the second equation from the first” works when the coefficients are the same (not opposite). Let’s adjust the example to match the instruction.
Let’s pick a system where the (x) coefficients are the same: [ \begin{cases} 4x + 3y = 20 \ 4x - 5y = -4 \end{cases} ]
For more on this topic, read our article on cuantos segundos hay en una hora or check out what has a bottom on the top.
Now subtract the second from the first: [ (4x + 3y) - (4x - 5y) = 20 - (-4) ] [ 4x + 3y - 4x + 5y = 24 ] [ 8y =
Continuing from the point where the previous excerpt left off, we had arrived at
[ 8y = 24 . ]
Dividing both sides by 8 gives
[ y = 3 . ]
Now we substitute this value back into either of the original equations to solve for (x). Using the first equation
[ 4x + 3y = 20 ]
we obtain
[ 4x + 3(3) = 20 ;\Longrightarrow; 4x + 9 = 20 ;\Longrightarrow; 4x = 11 ;\Longrightarrow; x = \frac{11}{4}. ]
To verify, plug (x = \frac{11}{4}) and (y = 3) into the second equation
[ 4x - 5y = -4 . ]
The left‑hand side becomes
[ 4\left(\frac{11}{4}\right) - 5(3) = 11 - 15 = -4, ]
which matches the right‑hand side, confirming that the pair (\left(\frac{11}{4},,3\right)) satisfies both equations.
Another illustration: creating opposite coefficients
Consider the system
[ \begin{cases} 2x + 5y = 1 \ 3x - 4y = 7 . \end{cases} ]
Here no coefficient pair is already opposite. To eliminate (x), we can multiply the first equation by 3 and the second by 2, producing
[ \begin{aligned} 6x + 15y &= 3 ,\ 6x - 8y &= 14 . \end{aligned} ]
Now subtract the second new equation from the first:
[ (6x + 15y) - (6x - 8y) = 3 - 14, ]
which simplifies to
[ 23y = -11 ;\Longrightarrow; y = -\frac{11}{23}. ]
Back‑substituting (y) into the original first equation yields
[ 2x + 5!\left(-\frac{11}{23}\right) = 1 ;\Longrightarrow; 2x - \frac{55}{23} = 1 ;\Longrightarrow; 2x = 1 + \frac{55}{23} = \frac{23}{23} + \frac{55}{23} = \frac{78}{23} ;\Longrightarrow; x = \frac{39}{23}. ]
A quick check in the second original equation confirms the solution (\left(\frac{39}{23},,-\frac{11}{23}\right)).
Summary
The elimination (or addition) method works by deliberately arranging the equations so that one variable cancels out when the equations are combined. The essential steps are:
- Align the equations so that like terms line up vertically.
- Multiply equations as needed to obtain opposite coefficients for a chosen variable.
- Add or subtract the equations to eliminate that variable, leaving a single‑variable equation.
- Solve the resulting equation, then substitute the found value back into an original equation to obtain the remaining variable.
- Verify the pair in both original equations to ensure correctness.
When applied carefully, this technique provides a straightforward path to the unique solution of any linear system with two variables, and the same principles extend naturally to larger systems with more unknowns.
Latest Posts
Brand New Reads
-
Water Expands On Reducing Its Temperature Below
Aug 03, 2026
-
Formatted Summary Of Information From A Database
Aug 03, 2026
-
What Is 10 Percent Of 25000
Aug 03, 2026
-
How Are Broken Clock Right Twice A Day
Aug 03, 2026
-
What Is Family Of Facts In Math
Aug 03, 2026
Related Posts
Picked Just for You
-
What Is The Central Idea Of The Text
Aug 01, 2026
-
40 Of 120 Is What Percent
Aug 01, 2026
-
How Do You Find The Absolute Value Of A Fraction
Aug 01, 2026
-
In This Unit You Learned To
Aug 01, 2026
-
Which Of The Following Is True About Cannabis
Aug 01, 2026