How to Solve Systems of Equations: 3 Methods Explained
A system of equations is two or more equations that share variables. Solving the system means finding values that make all equations true at once. Think of it as solving a puzzle where multiple clues must agree.
Systems show up in Algebra I, Algebra II, and every standardized test from the SAT to the GRE. They’re also incredibly useful in real life — pricing, mixing problems, comparing plans, and more. This guide gives you all three classic methods.
What a System Looks Like
The most common case: two equations, two variables.
\[\begin{cases} 2x + 3y = 12 \\ x – y = 1 \end{cases}\]
The solution is the pair \((x, y)\) that makes both equations true.
Three Methods (and When to Use Each)
| Method | Best when… |
|---|---|
| Substitution | One variable is already isolated or easy to isolate. |
| Elimination | The coefficients let you cancel a variable by adding/subtracting. |
| Graphing | You want to visualize, or the test gives you a graph. |
Most algebra tests assess all three.

Method 1: Substitution
Steps:
1. Solve one equation for one variable.
2. Substitute that expression into the other equation.
3. Solve.
4. Plug back to find the other variable.
Example 1
\[\begin{cases} y = 2x + 1 \\ 3x + y = 11 \end{cases}\]
Step 1: \(y\) is already isolated in the first equation.
Step 2: Substitute $2x + 1$ for \(y\) in the second:
\(3x + (2x + 1) = 11\)
\(5x + 1 = 11\)
\(5x = 10\)
\(x = 2\).
Step 3: Plug \(x = 2\) into the first: \(y = 2(2) + 1 = 5\).
Solution: $(2, 5)$.
Example 2
\[\begin{cases} x + y = 7 \\ 2x – y = 8 \end{cases}\]
Step 1: Solve the first for \(y\): \(y = 7 – x\).
Step 2: Substitute: \(2x – (7 – x) = 8\).
Step 3: Solve: \(2x – 7 + x = 8\) → \(3x = 15\) → \(x = 5\).
Step 4: \(y = 7 – 5 = 2\).
Solution: $(5, 2)$.
Recommended Practice Resources
Method 2: Elimination (Addition/Subtraction)
Steps:
1. Line up the equations vertically.
2. Multiply one or both equations so that a variable’s coefficients are opposites.
3. Add the equations — the variable cancels.
4. Solve.
5. Plug back to find the other variable.
Example 3
\[\begin{cases} 3x + 2y = 12 \\ 3x – y = 3 \end{cases}\]
Subtract the second from the first:
\(3x + 2y – (3x – y) = 12 – 3\)
\(3y = 9\)
\(y = 3\).
Plug \(y = 3\) into either equation: \(3x – 3 = 3\) → \(x = 2\).
Solution: $(2, 3)$.
Example 4 (multiply to align)
\[\begin{cases} 2x + 3y = 12 \\ 5x + 4y = 23 \end{cases}\]
Multiply the first by 5 and the second by 2 to align \(x\):
\(10x + 15y = 60\)
\(10x + 8y = 46\)
Subtract: \(7y = 14\) → \(y = 2\).
Plug back: \(2x + 3(2) = 12\) → \(x = 3\).
Solution: $(3, 2)$.
Example 5 (sign flip)
\[\begin{cases} 4x + 3y = 16 \\ 4x – 5y = -8 \end{cases}\]
Subtract: \(8y = 24\) → \(y = 3\).
Then: \(4x + 9 = 16\) → \(x = \dfrac{7}{4}\).
Solution: \(\left(\dfrac{7}{4}, 3\right)\).
Method 3: Graphing
Each linear equation graphs as a straight line. The solution is the point where the lines cross.
Steps
- Put each equation in slope-intercept form (\(y = mx + b\)).
- Graph both lines.
- Find the intersection point.
Example 6
\[\begin{cases} y = 2x – 1 \\ y = -x + 5 \end{cases}\]
Graph both. They intersect at $(2, 3)$.
Check: \(2(2) – 1 = 3\) ✓ and \(-2 + 5 = 3\) ✓.
Solution: $(2, 3)$.
When graphing is best
- The test gives you a graph and asks for the intersection.
- The slopes/intercepts are clean (integers).
- You want to verify a substitution/elimination answer.
When graphing is worst
- The intersection has fractional coordinates.
- The lines are nearly parallel.
- You don’t have graph paper.
Three Possible Outcomes
One solution (intersecting lines)
Lines have different slopes and cross at one point. This is the usual case.

No solution (parallel lines)
Same slope, different intercepts. The lines never meet.
Algebraic sign: When you eliminate or substitute, you get a false statement like \(0 = 5\).
Infinite solutions (same line)
Both equations describe the same line.
Algebraic sign: You get a true statement like \(0 = 0\) or \(5 = 5\).
Example 7 (no solution)
\[\begin{cases} y = 2x + 3 \\ y = 2x + 7 \end{cases}\]
Same slope (2), different intercepts. No solution.
Example 8 (infinite solutions)
\[\begin{cases} 2x + y = 4 \\ 4x + 2y = 8 \end{cases}\]
The second is twice the first. Infinite solutions — all points on the line \(2x + y = 4\).
Word Problems with Systems
Two-prices problem
A movie theater charges \$8 for adults and \$5 for kids. One night they sold 100 tickets and made \$680. How many of each?
Let \(a\) = adults, \(k\) = kids.
\(a + k = 100\)
\(8a + 5k = 680\)
Solve by substitution: \(a = 100 – k\), so \(8(100 – k) + 5k = 680\) → \(800 – 3k = 680\) → \(k = 40\), \(a = 60\).
Speed problem
Two cars start 300 miles apart and drive toward each other. One drives 55 mph, the other 65 mph. How long until they meet?
\(55t + 65t = 300\)
\(120t = 300\)
\(t = 2.5\) hours.
Mixture problem
How much 20% saline must be mixed with 60% saline to make 40 liters of 30% saline?
Let \(x\) = liters of 20%, \(y\) = liters of 60%.
\(x + y = 40\)
\(0.20x + 0.60y = 0.30(40) = 12\)
Solve: \(y = 40 – x\), so \(0.20x + 0.60(40 – x) = 12\) → \(-0.40x + 24 = 12\) → \(x = 30\), \(y = 10\).
Common Mistakes
Distributing wrong with substitution
\(2x – (7 – x) = 2x – 7 + x\), not $2x – 7 – x$. Distribute the negative.
Forgetting to multiply both sides
If you multiply the LHS by 5, multiply the RHS by 5 too.
Adding when you should subtract
For elimination, the coefficients must be opposite signs to cancel by addition. Same signs → subtract.
Solving for \(x\) but forgetting \(y\)
You’re not done until you have BOTH variables.
Graphing imprecisely
$(2.7, 3.2)$ might look like $(3, 3)$ on a small graph. Always verify algebraically.
Misreading “no solution” as “zero”
“No solution” means there is no \((x, y)\) pair that works. The answer is not $(0, 0)$.
Free Resources
Effortless Math has a complete systems library:
- Algebra 1 Worksheets — systems problems with answer keys.
- Math Topics Library — every systems topic explained.
- Algebra 1 eBooks — complete Algebra workbooks.
Frequently Asked Questions
Which method is fastest?
It depends on the system. If a variable is already isolated, substitution is fastest. If coefficients align nicely, elimination is fastest.
Can I always use any method?
Yes — all three give the same answer. Choose based on what’s easiest.
What if the system has 3 equations and 3 variables?
The same methods apply, but you eliminate one variable at a time. Algebra II covers 3×3 systems and matrix methods.
Are systems on the SAT?
Yes — both substitution and elimination problems appear on every SAT.
How do I check my answer?
Plug the \((x, y)\) pair into both original equations. Both should be true.
What’s the difference between consistent and inconsistent?
Consistent: has at least one solution. Inconsistent: no solution (parallel lines).
Three Tools, One Skill
Substitution, elimination, and graphing each have their moment. Drill all three. Recognize when each is fastest. By next test, you’ll see any 2×2 system and instantly know how to crack it.
Keep Practicing With the Right Resources
Related to This Article
More math articles
- New York NYSTP Grade 4 Math Free Worksheets: 72 Free Printable Practice Worksheets with Keys
- Top 10 Tips You MUST Know to Retake the HiSET Math
- The Ultimate 7th Grade IAR Math Course (+FREE Worksheets)
- The Ultimate 6th Grade WVGSA Math Course (+FREE Worksheets)
- Easy Ways To Overcome Your Fear Of Math!
- How to Perform Similarity Transformations: Step-by-Step Guide
- How to Solve Theoretical Probability?
- Top Free Websites for FTCE General Knowledge Math Preparation
- Kentucky KSA Grade 6 Math Free Worksheets: Printable Standards-Based Practice, No Signup
- Top 10 Tips You MUST Know to Retake the CHSPE Math





























What people say about "How to Solve Systems of Equations: 3 Methods Explained - Effortless Math"?
No one replied yet.