The trigger

Look at one variable's coefficients across the two equations. Are they integer multiples of each other — like (2, 4), (3, 6), (2, 6), (5, 15)? YES → elimination, instantly. Multiply the smaller-coefficient equation by the integer factor, subtract, that variable vanishes, and you have a one-variable equation with no fractions anywhere.

This is the cleanest pattern in the systems-of-equations toolkit. Recognise it in one glance and you save the entire fraction-juggling phase.

You are scanning a CBSE Class 10 board paper. Five systems of equations, each one minute to four minutes of work depending on what you do. The single fastest pattern recognition you can train — faster than the full method-picking decision tree — is this: glance at one column of coefficients. If the smaller divides the larger, you have free elimination. Multiply once. Subtract. Done.

This article is about that one trigger. Not when to use elimination in general — that is a broader question. Just this specific recognition: integer-multiple coefficients are elimination's home turf, and you must spot it in under three seconds.

The trigger card

Trigger card: integer-multiple coefficients fire elimination A flowchart with a starting box that says scan one variable column for both equations. An arrow leads to a diamond asking whether the smaller coefficient divides the larger evenly. A green YES arrow leads to a box labelled ELIMINATION INSTANTLY with a hint to multiply by the integer ratio. A red NO arrow leads to a box labelled think again, consider substitution or general elimination. Scan one variable's column. Look at coefficients of x (or y). Does the smaller coefficient divide the larger evenly? i.e., integer ratio: (2,4), (3,6), (2,6), (5,15)? YES NO ELIMINATION — INSTANTLY multiply smaller-eq by the integer factor, subtract Re-think — not this trigger try the other column or use general LCM elimination
The single-question trigger. Scanning one column takes under three seconds. If the integer-ratio check passes, every other thought is wasted time.

That is the whole rule. Two seconds of scanning replaces ninety seconds of half-committed substitution.

Why integer ratios mean clean arithmetic

The reason this trigger is so reliable lives in one observation: integer multiplication of an integer-coefficient equation produces another integer-coefficient equation, with no fractions introduced. Subtracting two equations with matching coefficients then gives a third equation, still with integer coefficients, in one fewer variable.

So when the x-coefficients are 2 and 4, multiplying the first equation by 2 keeps every coefficient an integer. Why: 2 \times (2x + 3y) = 4x + 6y — every term scales by 2, no division anywhere. The right-hand side, an integer in CBSE problems, also stays an integer.

Compare this to the alternative: substitution. To substitute, you isolate a variable, which usually divides — y = (7 - 2x)/3 — and that fraction now infects every line of the next equation. Why: division of an integer constant by an integer coefficient generally produces a fraction. That fraction multiplies through the second equation and through every later step, where any sign or arithmetic slip becomes hard to catch.

The integer-ratio trigger is essentially the test for "can I avoid fractions entirely?" When it fires, the answer is yes.

Three worked examples — fire the trigger

Example 1 — clean integer ratio: $(2, 4)$

Solve:

2x + 3y = 7, \qquad 4x + 5y = 13.

Trigger check. Coefficients of x across the two equations: 2 and 4. Does 2 divide 4? Yes, with factor 2. Fire elimination.

Multiply equation 1 by 2 (the integer factor that aligns x):

4x + 6y = 14, \qquad 4x + 5y = 13.

Subtract equation 2 from the new equation 1 (both lead with 4x):

(4x + 6y) - (4x + 5y) = 14 - 13 \implies y = 1.

Why: the 4x terms cancel exactly. Every coefficient stayed an integer through the multiplication, so the subtraction is also integer arithmetic. No fractions were touched.

Back-substitute y = 1 into the original equation 1: 2x + 3 = 7 \implies 2x = 4 \implies x = 2.

Check in equation 2: 4(2) + 5(1) = 8 + 5 = 13. ✓

Result. (x, y) = (2, 1). Total work: one multiplication, one subtraction, one back-substitution. Under thirty seconds with practice.

Elimination on 2x + 3y = 7 and 4x + 5y = 13 Two boxes show the original equations side by side. Below them, the first is multiplied by 2, giving 4x + 6y = 14. Subtracting this from the second equation cancels the x terms and gives y = 1. 2x + 3y = 7 4x + 5y = 13 × 2 (the integer factor) 4x + 6y = 14 subtract y = 1
Multiplying the smaller-coefficient equation by the integer factor, then subtracting, kills $x$ exactly. Zero fractions through the entire calculation.

Example 2 — still an integer ratio, less pretty: $(3, 9)$

Solve:

3x + 2y = 7, \qquad 9x - y = 5.

Trigger check. Coefficients of x: 3 and 9. Does 3 divide 9? Yes, factor 3. Fire elimination.

Multiply equation 1 by 3:

9x + 6y = 21, \qquad 9x - y = 5.

Subtract equation 2 from the new equation 1:

(9x + 6y) - (9x - y) = 21 - 5 \implies 7y = 16 \implies y = \tfrac{16}{7}.

Why: subtracting -y is the same as adding y, which is why the left side becomes 6y - (-y) = 7y. Watch the sign of the y-coefficient in the second equation.

The answer has a fraction this time — but the elimination step itself was fraction-free. The fraction only appears at the very end, when the cancellation has done its work and you divide once.

Back-substitute into equation 1 (preferably): 3x + 2 \cdot \tfrac{16}{7} = 7 \implies 3x + \tfrac{32}{7} = 7 \implies 3x = 7 - \tfrac{32}{7} = \tfrac{49 - 32}{7} = \tfrac{17}{7}, giving x = \tfrac{17}{21}.

Check in equation 2: 9 \cdot \tfrac{17}{21} - \tfrac{16}{7} = \tfrac{153}{21} - \tfrac{48}{21} = \tfrac{105}{21} = 5. ✓

Result. (x, y) = \big(\tfrac{17}{21}, \tfrac{16}{7}\big). Less clean than Example 1, but the elimination step still used integer-only arithmetic — substitution would have made you carry y = 9x - 5 through the first equation and arrive at the same place via fractions in two earlier steps.

The lesson: even when the answer is fractional, integer-ratio elimination keeps the working clean and reduces error chances.

Example 3 — the trap: no integer ratio in either column

Solve:

5x + 7y = 11, \qquad 8x + 9y = 17.

Trigger check. Coefficients of x: 5 and 8. Does 5 divide 8? No (8/5 is not an integer). Coefficients of y: 7 and 9. Does 7 divide 9? No. The trigger does not fire.

This is the trap. A student who has just learned the integer-multiple rule sometimes tries to force elimination anyway with a single multiplication — but no single integer multiplier aligns these columns. Instead, the general elimination move is to multiply both equations and use the LCM:

Multiply equation 1 by 8 and equation 2 by 5:

40x + 56y = 88, \qquad 40x + 45y = 85.

Subtract: 11y = 3 \implies y = \tfrac{3}{11}. Back-substitute into equation 1: 5x + 7 \cdot \tfrac{3}{11} = 11 \implies 5x = 11 - \tfrac{21}{11} = \tfrac{121 - 21}{11} = \tfrac{100}{11}, so x = \tfrac{20}{11}.

This works, but it is uglier than Example 1 by a factor of about three — the numbers 40, 56, 88 are larger and easier to slip on. Why: when neither column has an integer ratio, both equations need scaling, so the coefficients balloon. Substitution might be marginally cleaner here — isolate y = (11 - 5x)/7 and inject — though it carries its own /7 fraction. Either way, neither path is clean.

Lesson: the integer-ratio recognition trigger has a partner — the rejection rule. If neither column has the clean ratio, do not pretend it does. Either fall back to general LCM elimination (knowing it will be messy) or reach for substitution if one isolation looks tolerable. The full method-picking logic lives in the decision tree article; this trigger is just the first, fastest check.

Where this pattern shows up — CBSE Class 10

Walk through any past CBSE Class 10 mathematics board paper for the chapter "Pair of Linear Equations in Two Variables" and you will find this pattern dominates:

The textbook authors like this pattern. It rewards students who set up clean equations and lets the algebra phase be brief, which is the right pedagogy for a 90-minute paper. Recognising the trigger is the difference between three minutes per system and forty seconds per system. Across five systems on a board paper, that is roughly twelve minutes saved — enough to recheck two answers or attempt the bonus geometry rider.

What "integer multiple" really means

The trigger fires when one of the following is true for some variable's column:

The trigger does not fire when the ratio is a proper fraction like \tfrac{2}{3} or \tfrac{3}{5}. Even though such ratios are "rational and small", aligning them requires multiplying both equations, which is the general LCM move from Example 3 — slower and uglier than the one-shot integer multiplication.

A useful equivalent formulation: the smaller coefficient divides the larger evenly. That is the test, said in plain language. Train your eye on it.

Going deeper

Why this generalises to bigger systems

The integer-ratio trigger is the first nontrivial case of pivot selection in Gaussian elimination. When you reduce a 3 \times 3 or n \times n system, the algorithm chooses one row to eliminate a variable from all other rows. The cheapest choice is the row whose pivot (leading coefficient) divides the corresponding entries in the other rows.

In numerical linear algebra, the analogous rule is called partial pivoting: among the available rows, pick the one whose leading entry is largest in magnitude, because it minimises the multipliers and therefore the floating-point round-off. The CBSE-level trigger ("smaller divides larger") is the integer-arithmetic cousin of this. It minimises the multipliers all the way down to 1 — a multiplier of 1 means no growth, no fractions, no error. The same idea, just at a different scale.

When you eventually meet matrices and row-reduction, you will find that the entire pivoting strategy can be summarised as: prefer pivots whose multiples are clean. CBSE Class 10 elimination is teaching you that taste, even though it never names the principle.

References

  1. NCERT, Mathematics Textbook for Class X, Chapter 3 — Pair of Linear Equations in Two Variables — the source of the elimination examples used in CBSE board papers.
  2. Wikipedia, Gaussian elimination — the multi-variable generalisation of the pattern recognised here.
  3. Wikipedia, Pivot element — the formal name for the coefficient you align when eliminating; partial pivoting is the numerical analogue of "pick the cleaner ratio".
  4. Trefethen and Bau, Numerical Linear Algebra (SIAM, 1997) — Lecture 20 on Gaussian elimination explains why integer-friendly multipliers are the same idea numerical analysts call low-growth pivots.
  5. Khan Academy, Solving systems of equations with elimination — companion video walkthroughs that exhibit the integer-ratio pattern in the worked examples.