The core idea
A single equation like \(x + y = 6\) has many solutions: \((1,5)\), \((2,4)\), \((3,3)\) and more. Add a second condition and usually only one pair fits both. Each equation is a line, and the solution is the point where the two lines meet.
- Simultaneous equations
- Two or more equations that share the same unknowns and must all be true together.
Both standard methods have the same goal: remove one unknown so you can solve for the other, then work back to find the first.
Method 1: elimination
Line the equations up and add or subtract them so one variable cancels. This is neatest when a variable has matching coefficients, or you can make them match.
Solve \(3x + y = 10\) and \(x - y = 2\).
Same signs? Subtract. Opposite signs? Add.
If the matching terms are \(+2y\) and \(+2y\), subtract to cancel them. If they are \(+y\) and \(-y\), add. Getting this the wrong way round is the usual elimination error.
Method 2: substitution
Rearrange one equation to make a variable the subject, then substitute that expression into the other. This shines when one equation already reads "\(y = \ldots\)".
Solve \(y = 2x - 1\) and \(3x + y = 14\).
Which method to pick
| Situation | Best method |
|---|---|
| A variable is already the subject (\(y = \ldots\)) | Substitution |
| Matching or easily matched coefficients | Elimination |
| Both look equally messy | Either, elimination is often tidier |
Whichever you choose, finish by checking the pair in the other equation. For \(x = 3,\ y = 5\) above: \(3(3) + 5 = 14\), which balances, so the solution is correct.
Check yourself
1. Solve \(x + y = 8\) and \(x - y = 2\). +
Add them: \(2x = 10 \Rightarrow x = 5\). Then \(y = 8 - 5 = 3\). Answer: \(x = 5,\ y = 3\).
2. Solve \(y = x + 1\) and \(2x + y = 7\). +
Substitute: \(2x + (x + 1) = 7 \Rightarrow 3x = 6 \Rightarrow x = 2\), so \(y = 3\). Answer: \(x = 2,\ y = 3\).
3. Solve \(2x + y = 7\) and \(3x - y = 8\). +
The \(y\) terms are opposite, so add: \(5x = 15 \Rightarrow x = 3\). Then \(2(3) + y = 7 \Rightarrow y = 1\). Answer: \(x = 3,\ y = 1\).
Part of the Standard Maths library. Spotted an error or want a topic added? That feedback makes the notes better.