In short

A solution (x, y) of a system of two linear equations is a pair that satisfies both equations at the same time. So when you finish solving — by substitution, elimination, cross-multiplication, or any other method — your verification must plug (x, y) into both original equations, not just one. Checking only one is half a check; if your arithmetic slipped earlier, that single equation can falsely "confirm" a wrong answer. The full verification takes about ten seconds and saves you marks every single time.

You finish a problem in your CBSE Class 10 board paper. You've got a clean answer: x = 2, y = 3. You quickly plug it into the first equation, it works, you circle the answer and move on.

But what if the second equation would have screamed "no!" — and you never asked it?

This is the most common silent error in systems of equations. Not a calculation slip during solving; a verification slip after solving. The whole point of a system is that the solution must satisfy both equations at once. Verifying only one equation tests only half of the claim.

What "solution to a system" actually means

A single linear equation in two variables, like 2x + 3y = 13, has infinitely many solutions — every point on the line 2x + 3y = 13 qualifies. (2, 3) works. So does (5, 1). So does (-1, 5).

When you have a system of two equations, you are asking for a pair (x, y) that lies on both lines simultaneously. That is the geometric meaning of "solution to a system" — the intersection point.

Why one equation isn't enough: any pair on the first line satisfies the first equation. There are infinitely many such pairs, and only one of them (in the typical case) is the actual solution. Checking only equation 1 is asking "does this point lie on line 1?" — which can be true for a wrong answer.

So the verification rule is structural, not optional:

Solution = lies on line 1 AND lies on line 2. Check both.

The 10-second workflow

After you have a candidate (x, y):

  1. Plug into equation 1. Compute LHS. Does it equal the RHS?
  2. Plug into equation 2. Compute LHS. Does it equal the RHS?
  3. If both tick, accept the answer. If either fails, you have a mistake — go back.
Verification workflow for a candidate solutionA flowchart showing a candidate (x, y) at the top branching into two parallel checks: plug into equation 1 and plug into equation 2. Each produces a tick or cross. Only when both produce a tick does the answer get accepted; otherwise re-solve. Candidate (x, y) Plug into Eq 1 LHS = RHS? Plug into Eq 2 LHS = RHS? tick or cross tick or cross BOTH tick → accept · else re-solve
The candidate is only confirmed when *both* parallel checks pass. A single tick is not enough.

Notice the diagram has two parallel branches, not a single chain. That's the whole idea: the checks are independent and both must pass.

A clean confirmation

The honest case

Solve and verify:

2x + 3y = 13 \qquad 4x + y = 11

Suppose your work gives (x, y) = (2, 3).

Check Eq 1: 2(2) + 3(3) = 4 + 9 = 13. RHS is 13. Tick.

Check Eq 2: 4(2) + 3 = 8 + 3 = 11. RHS is 11. Tick.

Both ticks → (2, 3) is confirmed. Box it.

This is the well-behaved case. You did the algebra right, both checks agree, you move on. Total verification time: under ten seconds.

The trap: when one equation lies for you

Caught by the second check

Same system:

2x + 3y = 13 \qquad 4x + y = 11

Now suppose a slip during elimination gives you the wrong candidate (x, y) = (4, 1).

Check Eq 1: 2(4) + 3(1) = 8 + 3 = 11. RHS is 13. Cross.

You catch the error immediately and go back to re-solve.

But here is the dangerous variant. Imagine the system had been

4x + y = 17 \qquad 2x + 3y = 13

and you found (4, 1) but lazily verified only the first equation: 4(4) + 1 = 17. Tick. You'd think you're done — and you'd be wrong, because Eq 2 gives 2(4) + 3(1) = 11 \ne 13. Cross.

Why this trap exists: the candidate (4, 1) happens to lie on the first line. There are infinitely many points on that line, only one of which is the true intersection. Checking only Eq 1 confirms membership in line 1 — not the system.

The single-equation check is consistent with a wrong answer. The two-equation check is not.

This is exactly what CBSE marking schemes test for in board papers: full marks for "solve and verify" require you to write out both substitutions. Examiners deduct half a mark when only one verification appears, even if the final answer is right — because the method is incomplete.

A subtler case: when the system has no solution

Verifying that nonsense really is nonsense

Consider:

x + y = 5 \qquad 2x + 2y = 12

Try elimination. Multiply Eq 1 by 2: 2x + 2y = 10. Subtract from Eq 2: 0 = 2. Contradiction.

The algebra has correctly told you there is no solution — the lines are parallel, never meeting. Good. But suppose instead the system had worked out to a clean numeric answer, say (x, y) = (3, 2). The verification step is what rules out a phantom: plug into Eq 1: 3 + 2 = 5 tick; plug into Eq 2: 6 + 4 = 10 \ne 12 cross. The two-equation check is the firewall between "I got a number" and "I got the solution".

Why this matters: when a system is inconsistent, no (x, y) should pass both checks. If you ever find a candidate that passes both, the system did have a solution and you mis-derived "no solution". If a candidate passes only one, the system might still be inconsistent and you simply found a point on one of the two lines. Both checks are required to distinguish these cases.

Why this habit pays off forever

The two-equation check generalises. In three variables you must satisfy three equations. In matrix form A\vec{x} = \vec{b} — the topic you'll meet in matrices-introduction and determinants — verification means checking every row of the product, not one. The discipline you build now in Class 10 carries directly into Class 11–12 linear algebra and JEE problems where systems can have four or more equations.

It also protects you against a specific exam pathology: arithmetic mistakes that happen to leave one equation satisfied. These are common when the coefficients are small integers, because small slips often produce nearby valid points on one of the two lines. The second equation is your independent witness.

A pocket-sized rule

After solving any system, write the verification line twice — once per equation. If both ticks appear, you are done. If one fails, you have not finished solving.

That's the whole habit. It costs you ten seconds. It saves you full marks. It scales to every system you will ever solve, in school and beyond.

References

  1. NCERT Class 10 Mathematics, Chapter 3 — Pair of Linear Equations in Two Variables — official chapter with marking-scheme expectations on verification.
  2. Khan Academy — Testing solutions to systems of equations — interactive practice with the verify-both-equations habit.
  3. Paul's Online Math Notes — Linear Systems with Two Variables — worked examples that always include the substitution check.
  4. CBSE Class 10 Mathematics Sample Paper — Marking Scheme — official marking scheme showing where verification marks are awarded.