A system of equations is two (or more) equations you have to satisfy at once. With two lines, the solution is the single point (x, y) that sits on both — graphically, the place they cross. There are two standard ways to find it without drawing, and the good news is you only need to get comfortable with the idea behind each; the rest is bookkeeping.
What “solving a system” means
One equation in two variables, like y = 2x + 1, has infinitely many solutions — every point on its line. Add a second equation and you pin things down: now you need the one pair of numbers that makes bothtrue. On a graph that’s where the two lines intersect. The whole job is finding that meeting point with algebra instead of a careful drawing.
Method 1: Substitution
Substitution shines when one equation is already solved for a variable (or easily can be). You take that expression and substitute it into the other equation, which collapses the problem down to a single equation in a single variable — something you already know how to solve.
Solve y = 2x + 1 and 3x + y = 11. The first equation already tells you what y is, so replace y in the second:
- 3x + (2x + 1) = 11
- 5x + 1 = 11, so 5x = 10, so x = 2.
- Back-substitute into y = 2x + 1: y = 2(2) + 1 = 5.
Solution: (2, 5). The two lines cross there, and you found it without plotting a thing. Always finish by feeding the pair back into the other equation as a check: 3(2) + 5 = 11. True.
Method 2: Elimination
Elimination shines when the variables line up in columns and no equation is conveniently solved for one letter. You add or subtract the two equations so that one variable cancels out, leaving one equation in one variable.
Solve 2x + 3y = 12 and 2x − y = 4. The x terms match, so subtract the second equation from the first and the x’s vanish:
- (2x + 3y) − (2x − y) = 12 − 4
- 4y = 8, so y = 2.
- Back-substitute into 2x − y = 4: 2x − 2 = 4, so x = 3.
Solution: (3, 2). When the coefficients don’t match, you first multiply one or both equations by a number to makea column match — that’s the only extra wrinkle.
Which method should I use?
This is the real question, and the answer is simple once you look for the right signal:
- If a variable is already alone (y = …) or has a coefficient of 1, reach for substitution.
- If the equations are lined up in standard form with matching-ish coefficients, reach for elimination.
Both methods give the same answer every time — they’re different roads to one intersection. Picking the one the problem is set up for just saves you steps and sign errors.
When the lines don’t cross
Two cases surprise students, and both have a clean meaning. If your algebra ends in something false like 0 = 6, the lines are parallel — no solution, because they never meet. If it ends in something always true like 0 = 0, the two equations are really the same line— infinitely many solutions. A “weird” ending isn’t a mistake; it’s the algebra telling you what the graph looks like.
Want to work through it together?
If systems feel like twice the work and twice the chances to slip, the fix is usually learning to read which method a problem wants before you start grinding. We’ll practice that read together until choosing the easy route feels obvious.