MATH 1 • ALGEBRA & FUNCTIONS

Solving Systems by Elimination — I can solve systems of linear equations by elimination and explain the reasoning.

Learn how adding or subtracting equations strategically eliminates a variable and reveals the solution.

Historical Context & Motivation

Long before modern algebra textbooks existed, civilizations grappled with problems that involved multiple unknown quantities at the same time. Ancient merchants needed to figure out individual prices when they only knew totals for mixed purchases, and engineers needed to balance forces from different directions simultaneously. These situations naturally led to what we now call systems of linear equations — sets of two or more equations that share the same unknowns and must be satisfied at the same time.

The core idea behind the elimination method is surprisingly old: if you can combine equations so that one variable disappears, you reduce a two-variable problem to a one-variable problem you already know how to solve. This strategy has been refined over thousands of years, evolving from word-based recipes into the streamlined algebraic procedure you will learn in this lesson.

200 BCE
Chinese 'Nine Chapters'
The ancient Chinese text Jiuzhang Suanshu presented a method of combining rows in a counting-rod table to eliminate unknowns — essentially the earliest recorded elimination procedure.
820 CE
Al-Khwarizmi's Algebra
Persian mathematician Al-Khwarizmi formalized solving equations by 'balancing' — adding or subtracting the same quantity from both sides — laying the philosophical groundwork for elimination.
1750
Euler & Systematic Methods
Leonhard Euler and other European mathematicians developed systematic notation and procedures for solving large systems, making elimination accessible for engineering and physics.
1810
Gauss & Gaussian Elimination
Carl Friedrich Gauss refined elimination into a rigorous algorithm now called Gaussian elimination, which remains the backbone of solving systems in modern computing.

The central question this lesson addresses is straightforward: how can we combine two equations to make one variable vanish, leaving a single equation we can solve easily? Understanding the reasoning behind each step — not just memorizing the procedure — will prepare you for more complex systems in Algebra 2 and beyond.

Core Principles & Definitions

Before diving into the procedure, it helps to understand the key ideas that make the elimination method work. Each principle below builds on things you already know from solving one-variable equations.

1

System of Equations

A set of two or more equations with the same variables. A solution is an ordered pair (x, y) that makes every equation in the system true simultaneously.
2

Addition Property of Equality

If a = b and c = d, then a + c = b + d. This property lets you add entire equations together because each side equals the other — adding equal quantities to equal quantities keeps the balance.
3

Opposite Coefficients

When one variable has coefficients that are opposites (like 3 and −3), adding the equations eliminates that variable because 3 + (−3) = 0.
4

Multiplying to Create Opposites

If the coefficients are not already opposites, you can multiply one or both equations by constants so that a variable's coefficients become opposites. This does not change the equation's solutions.
5

Back-Substitution

After finding one variable's value, substitute it back into either original equation to find the other variable. Always check your answer in both equations.
KEY TAKEAWAY
Think of the elimination method like a seesaw with two riders. Each equation is a balanced seesaw. If you stack one seesaw on top of the other and one rider on the left is the exact opposite weight of a rider below, those two riders cancel out. Now you only have to deal with one rider on a combined seesaw — a much simpler balancing problem.

Visual Explanation — What Elimination Looks Like on a Graph

Every linear equation in two variables represents a straight line on the coordinate plane. A system of two linear equations therefore represents two lines. The solution to the system is the point where those two lines intersect — the one (x, y) pair that lies on both lines. The elimination method is an algebraic shortcut to find that intersection point without needing to graph.

The cyan line represents x + y = 5 and the violet line represents −x + y = 1. They cross at the green point (2, 3), which is the only ordered pair satisfying both equations.

In the diagram above, notice that the two lines have different slopes, so they cross at exactly one point. The elimination method finds the coordinates of that point algebraically. For this system, if you add the two equations, the x-terms cancel: (x) + (−x) = 0. You are left with 2y = 6, so y = 3. Then substituting back gives x = 2. The algebra matches the graph perfectly.

Mathematical Framework — The Elimination Procedure

The elimination method follows a clear sequence of algebraic moves. Each step is justified by properties of equality that you already use when solving single equations. Here is the general form of a two-variable system and the key equations that drive the process.

GENERAL SYSTEM
a₁x + b₁y = c₁ a₂x + b₂y = c₂
Here a₁, b₁, c₁ are the coefficients and constant of the first equation, and a₂, b₂, c₂ are those of the second.
MULTIPLY TO CREATE OPPOSITES
m × (a₁x + b₁y) = m × c₁ n × (a₂x + b₂y) = n × c₂
Choose multipliers m and n so that the coefficients of one variable become opposites. For example, if you want to eliminate x, choose m and n so that m × a₁ = −(n × a₂).
ADD THE EQUATIONS
(m·a₁ + n·a₂)x + (m·b₁ + n·b₂)y = m·c₁ + n·c₂
Because the x-coefficients are opposites, the x-term vanishes (its coefficient is 0). This leaves a single equation in y alone, which you can solve directly.
BACK-SUBSTITUTE
a₁x + b₁(y-value) = c₁ → solve for x
Plug the known y-value into either original equation and solve for x. Then verify the solution (x, y) in both original equations to confirm correctness.
💡 When to Multiply
You only need to multiply if the coefficients of neither variable are already opposites (or equal). If one variable already has opposite coefficients, just add the equations directly. If one variable has equal coefficients, subtract instead of adding — or multiply one equation by −1 and then add.

Choosing Your Strategy — A Decision Flowchart

Not every system looks the same when you first see it. Sometimes the coefficients are ready to cancel right away; other times you need to multiply one or both equations first. The flowchart below walks you through the decision-making process so you always choose the most efficient path.

This flowchart guides you through the decision: check for opposite coefficients first, then equal coefficients, and finally multiply if neither condition is met. All paths lead to a single-variable equation you can solve.

The table below summarizes the three scenarios you may encounter and the action to take in each case.

Quick reference for choosing your elimination action
ScenarioExample Coefficients of xAction
Opposite coefficients3 and −3Add the equations
Equal coefficients4 and 4Subtract the equations
Neither2 and 5Multiply first, then add

Worked Example — Solving a System Step by Step

Let's solve the following system using elimination. We will walk through every step and explain the reasoning behind each move.

SYSTEM TO SOLVE
3x + 2y = 16 5x − 2y = 8
Notice that the y-coefficients are already opposites: +2 and −2. This means we can add the equations directly without multiplying.
Solving 3x + 2y = 16 and 5x − 2y = 8
1
Step 1 — Identify Opposite CoefficientsLook at both equations in standard form. The y-coefficients are +2 and −2. Since 2 + (−2) = 0, adding the equations will eliminate y.
Plan: add the equations to eliminate y.
2
Step 2 — Add the EquationsAdd left sides together and right sides together: (3x + 2y) + (5x − 2y) = 16 + 8. This simplifies to 8x + 0y = 24, or simply 8x = 24.
8x = 24
3
Step 3 — Solve for xDivide both sides by 8: x = 24 ÷ 8 = 3.
x = 3
4
Step 4 — Back-Substitute to Find ySubstitute x = 3 into the first equation: 3(3) + 2y = 16 → 9 + 2y = 16 → 2y = 7 → y = 3.5.
y = 3.5
5
Step 5 — Check in Both EquationsEquation 1: 3(3) + 2(3.5) = 9 + 7 = 16 ✓. Equation 2: 5(3) − 2(3.5) = 15 − 7 = 8 ✓. Both equations are satisfied.
Solution: (3, 3.5)
🔧 What If Opposites Don't Exist?
Consider the system 2x + 3y = 12 and 4x + y = 10. No coefficients are opposites. You could multiply the second equation by −3 to get −12x − 3y = −30, so the y-coefficients become +3 and −3. Then add to eliminate y. Alternatively, multiply the first equation by −2 to get −4x − 6y = −24, making the x-coefficients +4 and −4. Either path works — pick whichever involves smaller multipliers.

Elimination vs. Other Methods

Elimination is not the only way to solve a system of linear equations. You have likely already learned graphing and substitution. Each method has situations where it shines and situations where it becomes cumbersome. Understanding the trade-offs helps you choose the most efficient tool for a given problem.

Comparison of solution methods for systems of linear equations
MethodBest When...Drawbacks
GraphingYou want a visual estimate or both equations are in slope-intercept form.Hard to read exact answers for non-integer solutions; impractical for large coefficients.
SubstitutionOne variable is already isolated (e.g., y = 2x + 1) or has a coefficient of 1.Creates messy fractions if neither variable is easy to isolate.
EliminationBoth equations are in standard form (Ax + By = C) and no variable is already isolated.Requires careful arithmetic when multiplying both equations; sign errors are common.
WHEN TO REACH FOR ELIMINATION
Think of solving a system like choosing a tool from a toolbox. Graphing is like a tape measure — great for a quick estimate but not precision work. Substitution is like a screwdriver — perfect when a screw (isolated variable) is already exposed. Elimination is like a wrench — ideal for bolts (standard-form equations) that need a direct, efficient twist. Choosing the right tool saves time and reduces mistakes.

Connection to Advanced Topics

The elimination method you learn now in Algebra 1 is the foundation for techniques you will encounter in higher math courses. Understanding why each step works — not just how to do it — prepares you for these extensions.

How elimination connects to future coursework
This LessonFuture Topic
2 × 2 systems (two equations, two unknowns)3 × 3 systems and Gaussian elimination in Algebra 2 / Precalculus
Multiplying equations by constantsRow operations on matrices in Linear Algebra
One unique solution (intersecting lines)No solution (parallel lines) or infinitely many solutions (same line) — special cases in Algebra 2
Linear systemsSystems of nonlinear equations (circles, parabolas) in Algebra 2 and Precalculus

In particular, the idea of combining equations to eliminate variables scales up beautifully. When you study matrices, each row represents an equation, and row reduction is literally the elimination method applied systematically to systems with dozens or even thousands of variables. Computers use this algorithm every day to render 3D graphics, train AI models, and solve engineering problems.

Practice Problems

Test your understanding with these five problems. They start with a conceptual question and build toward a challenging critical-thinking problem. Try each one on your own before reading the answer.

PROBLEM 1CONCEPTUAL
Explain in your own words why adding two equations together produces a valid new equation. Which property of equality justifies this step?
PROBLEM 2BASIC CALCULATION
Solve by elimination: x + y = 10 and x − y = 4.
PROBLEM 3INTERMEDIATE
Solve by elimination: 2x + 3y = 12 and 4x − 3y = 6.
PROBLEM 4APPLIED
A movie theater sells adult tickets for $9 and child tickets for $5. On Saturday, 200 tickets were sold for a total of $1,440. Set up and solve a system of equations using elimination to find how many adult and child tickets were sold.
PROBLEM 5CRITICAL THINKING
Consider the system: 3x + 6y = 18 and x + 2y = 6. What happens when you try to eliminate a variable? Explain what this result tells you about the graphs of these two equations, and describe the solution set.

Lesson Summary

The elimination method solves a system of linear equations by adding (or subtracting) the equations so that one variable's terms cancel. The process relies on the Addition Property of Equality: adding equal quantities to equal quantities preserves truth. When the coefficients of a variable are already opposites, you add directly. When they are equal, you subtract. When neither condition holds, you first multiply one or both equations by constants to create opposite coefficients, then add.

After eliminating a variable, you solve the resulting one-variable equation and back-substitute to find the other variable. Always verify the solution in both original equations. Elimination is especially efficient when equations are in standard form (Ax + By = C). It connects directly to Gaussian elimination and matrix row operations studied in higher-level courses, making it a skill worth mastering now.

Varsity Tutors • Math 1 • Solving Systems by Elimination