Elimination method
The second algebraic method, elimination, is often faster than substitution when no coefficient is . The idea is to align the coefficients of one variable in the two equations so that adding or subtracting kills that variable.
Algorithm
- Pick the variable you want to eliminate. Multiply each equation by a suitable non-zero number so that the chosen variable has equal (or opposite) coefficients in both equations.
- Add the equations (if the coefficients are opposite) or subtract them (if equal). The chosen variable disappears, leaving a single linear equation in the other variable.
- Solve that equation.
- Substitute back into one of the original equations to find the eliminated variable.
- Verify with both original equations.
A common shortcut: to eliminate , multiply the first equation by and the second by , then subtract. To eliminate , multiply by and and subtract.
If after elimination you obtain the true statement , the system has infinitely many solutions. If you obtain a false statement (with ), the system has no solution.
Why this is often the cleanest method
For typical exam systems with integer or simple fractional coefficients, the LCM of the coefficients of (or of ) is small, so multiplying by them keeps the arithmetic manageable. The advantage of elimination over substitution is that you avoid fractions until the last step.
It is also adaptable to simultaneous equations in disguise: equations involving and , age problems, fractions, ratios , all become linear after a substitution like , and then elimination is the natural tool.
Worked examples
Example 1. Solve and .
Eliminate . Multiply first by and second by : and .
Subtract: .
Hmm, that doesn't look clean. Let me re-check the system. The system should have a clean integer solution. Let me try eliminating instead.
Multiply first by and second by : and .
Add: . Same non-integer result. So the answer is genuinely .
(Some board-style problems do have rational, not integer, solutions , the method still works fine.)
Example 2. Solve and .
Eliminate . Multiply the second by : . Add to the first: Substitute into the first: .
Solution .
Example 3. Solve and .
Eliminate . Multiply first by and second by : and .
Subtract: . Then from the first: .
Solution . Verify: ✓.
Example 4. Solve and .
Let . System: , .
Eliminate . Multiply the first by : . Add to the second: .
Then . So , and .
Solution .
Example 5. Solve and .
Same coefficients of and but different constants no solution.
Subtracting: . False inconsistent.
Try it yourself
- Solve by elimination: .
- Solve: .
- Solve: .
- Solve: .
- Solve: .
- Solve: .
- Solve: .
- Solve: ().
- Solve: .
- Solve and discuss: .
Pitfalls / Insight
- Multiply each equation in full , students often forget to multiply the constant term.
- Sign of the result of subtraction matters: , not .
- Always verify in both original equations; elimination is more error-prone than substitution due to multiplied coefficients.
Insight. Elimination is matrix algebra in disguise: making one column equal so you can "row reduce" the system. Class XI and XII will pick this up formally as Gaussian elimination.