In short
Not busywork. The check step is a five-second insurance policy that catches three of the most common algebra mistakes: arithmetic slips, sign-flip errors during transposition, and extraneous solutions that creep in when you square both sides or multiply by an expression containing x. In a timed exam — JEE, board, Olympiad — the check has saved more marks than any other single habit. Skip it once and you might get away with it. Skip it always and you will lose marks you had already earned.
You finish solving -3x + 5 = 14, write down x = 3, circle it, and move to the next question. Five questions later, your friend whispers, "Wait, isn't the answer -3?" You re-solve, see your sign error, and realise you have lost three marks because you did not spend the two seconds it would have taken to check.
This article answers one question: is the verification step actually worth it, or is it the kind of thing teachers make you do for the sake of neatness? The short answer is that it is worth it — overwhelmingly so — but the longer answer is more interesting, because the cost-benefit ratio is not at all what beginners assume.
The mechanics of how to substitute and check are covered in the sibling article on plug-back verification. What you are reading here is the case for whether to bother — when it matters, when it is non-negotiable, and what catastrophic answers it stops you from submitting.
What checking actually catches
The reason the check feels like busywork is that, most of the time, your answer is correct and the check just confirms it. That is the same reason a seatbelt feels like busywork — most car rides do not end in a crash. The value of both is precisely in the rare cases when something has gone wrong.
Here is what a single round of plug-back verification can catch:
Arithmetic slips. You meant to write 35 \div 5 = 7, but your pen slipped and you wrote 8. Or you computed -11 + 24 = 35 correctly but then wrote down 34. These are not conceptual errors — you understand the mathematics fully — they are pen-and-paper errors of the kind that no amount of "going slowly" eliminates. The only reliable fix is an independent check.
Sign errors during transposition. You move a -5 to the other side and forget to flip it to +5. Or you divide both sides by -3 and forget to flip the inequality. Sign errors are the single most common algebra mistake at every level — Class 7 to JEE Advanced — and they are especially treacherous because the rest of the working looks fine.
Distribution slips. You expand 4(x - 3) as 4x - 3 instead of 4x - 12, because your hand finished writing the 4x and your brain skipped to the next step. Or you distribute -(x + 5) as -x + 5 instead of -x - 5. The negative sign is the favourite trap.
Extraneous solutions. You squared both sides of an equation involving a square root and ended up with a candidate that does not actually satisfy the original. You multiplied both sides of a rational equation by (x - 2) and got a candidate x = 2 that makes the denominator zero. The algebra was technically valid, but the operation introduced solutions that were never really solutions. Why: squaring and multiplying-by-a-variable are operations that can add solutions. The check is the only way to weed out the fake ones.
Why the cost-benefit is so lopsided: the check costs you about five seconds for a linear equation. A wrong answer costs you the full marks for the question. If checking catches even one wrong answer per exam, it has paid for itself a hundred times over.
How to do it fast (so it is not actually busywork)
Many students think the check is slow because they were taught to write it out as a full sentence with explanation. You do not need to. For a linear equation, here is the entire workflow:
- Take the original equation. Write x = your answer below it.
- Compute LHS with that value of x. One line.
- Compute RHS. One line. (Often the RHS is just a number, so this is free.)
- If LHS = RHS, write a tick. If not, find the slip.
That is it. Five seconds. No "let us substitute the value of x and verify" sentence. No re-derivation. Just a substitution and a comparison.
A worked rhythm: you solve 5x - 7 = 18 and get x = 5. Below the answer, write Check: 5(5) - 7 = 25 - 7 = 18 ✓. That entire line takes about as long as it takes you to read it.
When checking is mandatory
For garden-variety linear equations, the check is strongly recommended but technically optional — the equation is so simple that a careful solver might be confident enough to skip. For four specific classes of equation, however, the check is non-negotiable, because the algebra itself can produce wrong answers that look right.
1. You squared both sides. Squaring is a one-way street: a = b implies a^2 = b^2, but a^2 = b^2 does not imply a = b (it could mean a = -b). Squaring during solving therefore introduces a \pm that did not exist in the original. The check is the only way to throw out the wrong sign.
2. You multiplied both sides by an expression containing x. This is what happens when you clear a denominator like (x - 2). The new equation can have solutions the old one did not — specifically, solutions that make the multiplier zero. Without the check, you have no way to know.
3. You divided both sides by an expression containing x. This is the opposite trap: you can lose solutions. If you divide both sides of x^2 = 5x by x, you get x = 5 — and silently lose the solution x = 0. The safer route is to factor instead, but if you must divide, then check whether x = 0 also works in the original.
4. The equation involves radicals (square roots, cube roots). Almost every radical equation will eventually require squaring to eliminate the root, which means rule (1) applies — at least one extraneous solution may appear, and you must check both candidates.
For everything else — solving 7x + 3 = 24, two-step word problems, fraction-clearing — the check is voluntary insurance. Cheap insurance, but voluntary. For the four cases above, you cannot trust your answer without the check. The algebra has lied to you somewhere along the way; only the substitution test can find out where.
Three worked checks
A check that catches a sign error
You are solving -3x + 5 = 14 in a hurry. Your work:
-3x = 14 - 5 = 9, so x = 9 / (-3) = 3. Done — or so it looks.
Now check. Substitute x = 3 into the original:
RHS = 14. -4 \neq 14. ✗
The check fails, which means the answer is wrong. Re-examine the solving: -3x = 14 - 5 = 9 is correct, but 9 / (-3) = -3, not 3. You wrote down the wrong sign on the division. Re-do: x = -3. Verify: -3(-3) + 5 = 9 + 5 = 14 ✓. The check caught a sign error that the working hid in plain sight.
An extraneous solution from a rational equation
Solve \dfrac{x^2 - 4}{x - 2} = 5.
You cross-multiply: x^2 - 4 = 5(x - 2), expand to x^2 - 4 = 5x - 10, rearrange to x^2 - 5x + 6 = 0, factor as (x - 2)(x - 3) = 0. Candidates: x = 2 or x = 3.
Now check both in the original:
For x = 2: LHS = \dfrac{4 - 4}{2 - 2} = \dfrac{0}{0}, which is undefined. ✗
For x = 3: LHS = \dfrac{9 - 4}{3 - 2} = \dfrac{5}{1} = 5. RHS = 5. ✓
So x = 2 is extraneous — it appeared because you multiplied both sides by (x - 2), which is allowed only when x \neq 2. The only true solution is x = 3.
Why this matters: without the check, you would have written x = 2, 3 as your answer and lost half the marks for including a fake solution. The check is what turns a half-mark into full marks.
The exam-time arithmetic
Suppose a JEE Advanced paper has 30 algebra-style problems where verification is plausible. At 10 seconds per check, that is 30 \times 10 = 300 seconds, or 5 minutes total — out of a three-hour paper.
Empirically, students who verify catch around 2 to 3 slip-errors per paper that would otherwise cost full marks. At 4 marks per question (JEE marking), that is 8 to 12 marks recovered for a 5-minute investment. Marginal cost-benefit: roughly 2 marks per minute spent.
Compare with the alternative — spending those 5 minutes attempting one more question. If you have a 50\% chance of getting it right, the expected gain is 0.5 \times 4 = 2 marks for the whole 5 minutes. The check beats it by a factor of 5.
What the experts do
Two data points worth taking seriously.
NCERT grades verification explicitly. In Class 7 (Chapter 4: Simple Equations) and Class 8 (Chapter 2: Linear Equations in One Variable), the textbook lists verification as a step of the solution, not a postscript. Exam papers in these classes deduct half a mark for omitting it. The CBSE schools that produce the strongest algebra students are the ones whose teachers enforce this from the start.
JEE and Olympiad veterans verify everything. Watch any topper's solving session and you will see the same pattern: every numeric answer gets substituted back into the original problem before being circled. They are not doing it because they doubt themselves — they are doing it because they have learnt, the hard way, that the cost of one fake answer is much higher than the cost of all the verifications combined. The habit is so deep that they do not even notice they are doing it. Why the best students verify the most: because they have lost marks to slips often enough to feel the pain, and the check costs less than the pain.
The verification step is not for students who are bad at algebra. It is for students who do not want to be sabotaged by their own pen.
The takeaway
Is the check step busywork? Only if you have never lost marks to a sign error, an arithmetic slip, or an extraneous root. As soon as it has cost you once, you stop asking. The check is five seconds, costs almost nothing, and catches the kind of mistake that no amount of "being careful" eliminates. For equations involving squaring, radicals, or multiplying by an expression with x, it is not optional — it is the only protection against an answer the algebra itself has lied about.
Make it the last line of every solving block. Tick if it passes, fix if it fails. Carry it from Class 7 into JEE prep, and it will save you marks every single year.
References
- NCERT Class 7 Mathematics, Chapter 4: Simple Equations — verification is a graded step, not optional.
- NCERT Class 8 Mathematics, Chapter 2: Linear Equations in One Variable — verification extended to fractional and two-sided equations.
- Khan Academy: Checking solutions to equations — short walkthrough video.
- Plug-back verification: substitute and watch both sides match — sister article on the mechanics.
- Multiplying both sides by an expression with x can introduce extraneous solutions — the rational-equation trap explained.
- Linear equations in one variable — the parent article with the full solving toolkit.