A single equation in two unknowns, like \(x + y = 6\), has endless answers — \((0,6)\), \((1,5)\), \((2,4)\), and on forever. It pins down a whole line of possibilities, not one point. So how do you ever land on a single \(x\) and a single \(y\)? You add a second condition. The moment you demand that two equations hold at the same time, the candidates collapse from a whole line down to — usually — one perfect point. That pairing is called a system of equations, and learning to find that point is one of the most useful moves in all of algebra.
What a system actually asks
A system is just two or more equations bundled together with one demand: every equation must be true at once, for the same values of the variables. We write the bundle with a brace:
\[ \begin{cases} y = x + 1 \\ y = -2x + 4 \end{cases} \]A solution is a pair \((x, y)\) that makes both lines agree. Not one or the other — both, with no compromise. If a pair satisfies the first equation but breaks the second, it is not a solution to the system.
Here is the picture that makes it click. Each linear equation, on its own, draws a line: every point on that line is a solution to that equation. So a solution to the whole system has to sit on the first line and the second line simultaneously. The only place a point can live on both is exactly where the lines cross.
In words Each equation is a line of possibilities. The solution of the system is the single point those possibilities have in common — the intersection. Solving a system is just finding where two stories agree.
Method 1 — Graphing: read the crossing point
The most visual method is to draw both lines and look at where they meet. Below are the two lines from our system, \(y = x + 1\) and \(y = -2x + 4\). Drag and explore: the highlighted dot is the solution, the one point that obeys both equations.
The lines cross at \((1, 2)\). Check it against both equations: in the first, \(y = x + 1\) gives \(2 = 1 + 1\) ✓; in the second, \(y = -2x + 4\) gives \(2 = -2(1) + 4 = 2\) ✓. Both true, so \((1, 2)\) is the solution.
Graphing builds the intuition beautifully, but it has a weakness: if the crossing point is something like \(\left(\tfrac{7}{3}, -\tfrac{1}{5}\right)\), your eye will never read it off the grid exactly. For precise answers we turn to algebra — two reliable methods that never need a ruler.
Method 2 — Substitution: replace, don't guess
Substitution works best when one equation already tells you what a variable equals. The idea is simple: if you know \(y\) is the same thing as some expression in \(x\), then anywhere you see \(y\) in the other equation, you can write that expression instead. Now you have one equation in one unknown — and you already know how to solve those.
- The first equation says \(y = 2x\). So \(y\) and \(2x\) are the same value — we can trade one for the other.
- Substitute \(2x\) in place of \(y\) in the second equation: \(x + (2x) = 6\).
- Combine like terms: \(3x = 6\), so \(x = 2\).
- Put \(x = 2\) back into the easy equation: \(y = 2x = 2(2) = 4\).
- Check both: \(y = 2x \Rightarrow 4 = 4\) ✓, and \(x + y = 6 \Rightarrow 2 + 4 = 6\) ✓.
The two lines meet at \((2, 4)\).
Notice the rhythm: solve one equation for a variable, substitute into the other, solve the single-variable equation, then back-substitute to find the partner. If neither equation is already solved for a variable, just rearrange the simpler one first — for instance, \(x + y = 6\) becomes \(y = 6 - x\) in one step.
Tip — pick the cheapest variable. Before substituting, scan for a variable with a coefficient of \(1\) (or a \(y =\) already sitting alone). Isolating it avoids fractions and keeps the arithmetic clean.
Method 3 — Elimination: cancel a variable on purpose
Sometimes neither equation is conveniently solved for a variable, but they are lined up tidily — \(x\)s above \(x\)s, \(y\)s above \(y\)s. Then you can add or subtract the two equations to make one variable vanish. The trick rests on a fair rule: if two things are each equal, you can add equals to equals and the balance still holds.
- Stack the equations and look at the \(y\) terms: one is \(+y\), the other is \(-y\). Perfect — adding will erase \(y\).
- Add left sides and right sides: \((x + y) + (x - y) = 10 + 4\), which gives \(2x = 14\).
- Solve: \(x = 7\).
- Back-substitute into either original equation, say \(x + y = 10\): \(7 + y = 10\), so \(y = 3\).
- Check the other equation too: \(x - y = 7 - 3 = 4\) ✓.
The solution is \((7, 3)\).
What if the variables do not cancel so neatly — say one equation has \(2x\) and the other has \(x\)? Then multiply an entire equation by a constant to force a match. For example, doubling \(x - y = 4\) gives \(2x - 2y = 8\), and now its \(2x\) lines up to be eliminated against another \(2x\). Multiplying a whole equation by the same number on both sides never changes its solutions.
Which method should you reach for?
All three give the same answer, so the choice is about speed and comfort. A quick guide:
Three things that can happen
Most systems have exactly one solution, but two interesting edge cases are worth knowing. They all come back to the same geometric question: how can two lines sit relative to each other?
One solution — the lines cross. Different slopes mean the lines head in different directions, so they must meet at exactly one point. This is the normal case, like every example above.
No solution — the lines are parallel. If two lines have the same slope but different intercepts, they march alongside each other forever and never touch. There is no point on both, so the system has no solution. Take \(\begin{cases} y = 2x + 1 \\ y = 2x - 3 \end{cases}\): both climb at slope \(2\), but one is always \(4\) higher than the other. Setting them equal gives \(2x + 1 = 2x - 3\), which simplifies to \(1 = -3\) — a falsehood, algebra's way of saying "this never happens."
Infinitely many — it is the same line twice. If the two equations describe the identical line (same slope and same intercept, perhaps disguised), then every point on that line satisfies both. For example, \(\begin{cases} y = 3x - 2 \\ 2y = 6x - 4 \end{cases}\): the second is just the first multiplied by \(2\). Every solution of one is a solution of the other, so there are infinitely many.
In words When you solve and the variables cancel out, read the leftover statement. A false statement like \(1 = -3\) means no solution (parallel). A true statement like \(0 = 0\) means infinitely many (same line). Both are honest answers, not mistakes.
Practice
Try each one yourself, then reveal the full solution.
1. Solve by substitution: \(\begin{cases} y = 3x \\ x + y = 8 \end{cases}\)
The first equation gives \(y = 3x\), so replace \(y\) in the second equation:
\[ x + 3x = 8 \;\Rightarrow\; 4x = 8 \;\Rightarrow\; x = 2. \]Back-substitute: \(y = 3x = 3(2) = 6\). Check: \(x + y = 2 + 6 = 8\) ✓.
The solution is \((2, 6)\).
2. Solve by elimination: \(\begin{cases} 2x + y = 11 \\ x - y = 1 \end{cases}\)
The \(y\) terms are \(+y\) and \(-y\), so add the two equations to eliminate \(y\):
\[ (2x + y) + (x - y) = 11 + 1 \;\Rightarrow\; 3x = 12 \;\Rightarrow\; x = 4. \]Back-substitute into \(x - y = 1\): \(4 - y = 1\), so \(y = 3\). Check the other: \(2(4) + 3 = 11\) ✓.
The solution is \((4, 3)\).
3. Explain why \(\begin{cases} y = 2x + 1 \\ y = 2x - 3 \end{cases}\) has no solution.
Both lines have the same slope, \(2\), but different \(y\)-intercepts (\(+1\) and \(-3\)). Equal slopes mean the lines are parallel — they rise at the same rate and never get closer, so they never cross.
The algebra confirms it. Setting the right-hand sides equal:
\[ 2x + 1 = 2x - 3 \;\Rightarrow\; 1 = -3, \]which is false for every \(x\). Since no value of \(x\) can make both equations agree, there is no solution — the lines are parallel and never intersect.