When you first meet a pair of linear equations like 2x + 3y = 13 and 2x - y = 1, the algebra can feel like a wall of symbols. The elimination method is a way through that wall that is mostly visual once you see it work: you write the two equations on top of each other like a stack, fiddle with the coefficients of one variable until they match, and then with one stroke you make that variable vanish from the page. What you have left is a single equation in a single unknown — and that you already know how to solve from Linear Equations in One Variable.

This article walks through the elimination method as an animation in your head: two equations, stack, align, cancel. The companion article on substitution handles the other big algebraic method — they are siblings, not rivals.

In short

The elimination method for a system of two linear equations:

  1. Stack the two equations one on top of the other.
  2. Align the coefficients of one variable. Multiply one equation, or both, by chosen constants so that the chosen variableʼs coefficients become equal (or equal-and-opposite).
  3. Add the equations if the matched coefficients are equal-and-opposite. Subtract if they are equal. Either way, that variable cancels.
  4. Solve the resulting one-variable equation.
  5. Back-substitute the answer into either original equation to find the other variable.

The whole game is engineering a cancellation. Once one variable is gone, what is left is something you already know how to handle.

The animation, frame by frame

Picture the two equations stacked like the rows of a table. Below is a small interactive that walks you through the two key frames of the animation: first the alignment, then the cancellation.

Animated elimination: align coefficients then add Two equations are stacked. Step 1 multiplies them so coefficients of x align. Step 2 subtracts so x cancels and only y remains. 3x + 2y = 16 5x − 3y = 7 Frame 0 — original system
Frame 0 / 4
Click Next to step through the animation: stack → multiply eq 1 by 3 → multiply eq 2 by 2 → align coefficients of $y$ (one $+6y$, one $-6y$) → add → $y$ cancels, leaving an equation in $x$ only.

The animation makes the central trick visible: you are not solving anything during the multiplication step. You are just choosing constants that engineer a clean cancellation in the next step. The arithmetic only kicks in once the variable is gone.

Why adding (or subtracting) preserves the solution

It is worth pausing on a question that often gets skipped: when you add the two equations, why does the new equation still hold for the same (x, y)?

The answer is the most important property of equality. If A = B and C = D, then A + C = B + D. Adding equal things to equal things keeps them equal. So if a particular pair (x, y) satisfies both 3x + 2y = 16 and 5x - 3y = 7, then it must also satisfy their sum, 8x - y = 23. The new equation is a logical consequence of the original two — any solution of the originals is also a solution of the sum.

Why: addition is the operation that preserves equality. Subtraction is the same idea — if A = B and C = D, then A - C = B - D. Multiplying both sides of one equation by the same nonzero constant also preserves equality. Every step of elimination is one of these legal moves, so no solution is lost or gained.

You do lose something subtle though — you also lose information. The new equation 19x = 62 is true at the solution, but it is also true along an entire line in the xy-plane (well, a vertical line x = 62/19). That is fine, because you still have one of the originals to pin down y via back-substitution. The combined system original + sum has the same solution as original + original, just expressed in a more useful way.

The flow chart of elimination

Here is the whole method as a static diagram you can keep in your head:

The elimination method as a flow chart A vertical flow chart. Two stacked equations at the top. An arrow goes down to a multiplied version where one variable's coefficients match. An arrow with the word ADD or SUBTRACT leads to a single-variable equation. A final arrow back-substitutes to find the second variable. a₁x + b₁y = c₁ a₂x + b₂y = c₂ × k₁ × k₂ k₁a₁x + k₁b₁y = k₁c₁ k₂a₂x + k₂b₂y = k₂c₂ k₁ and k₂ chosen so coefficients of one variable match ↓ ADD (if equal-and-opposite) or SUBTRACT (if equal) px = q (one variable gone!) solve: x = q / p back-substitute → y solution: (x, y)
The elimination pipeline. Multiply rows to align one column of coefficients. Add or subtract to kill that column. Solve the leftover one-variable equation. Plug back to find the other variable.

Three worked examples

Example 1: Coefficients already match — $2x + 3y = 13$, $2x - y = 1$

Stack the two equations:

2x + 3y = 13 \quad \cdots (1)
2x - y = 1 \quad \cdots (2)

Step 1: align. Look at the coefficients of x: both are 2. Already aligned. No multiplication needed.

Why: this is the easy case. When one variable already has the same coefficient in both equations, you skip straight to the cancellation step. Always scan first for this lucky setup.

Step 2: subtract. Since the coefficients are equal (both +2, not equal-and-opposite), subtraction is what kills x:

(2x + 3y) - (2x - y) = 13 - 1
2x + 3y - 2x + y = 12
4y = 12
y = 3

Why: subtracting the second equation from the first cancels the 2x on both sides. The 3y - (-y) = 4y remains, and the right side is 13 - 1 = 12.

Step 3: back-substitute. Plug y = 3 into equation (2) (it has the smaller numbers):

2x - 3 = 1 \implies 2x = 4 \implies x = 2

Step 4: check in equation (1): 2(2) + 3(3) = 4 + 9 = 13. Confirmed.

Solution: (x, y) = (2, 3).

Example 2: Both equations need multiplying — $3x + 2y = 16$, $5x - 3y = 7$

Stack:

3x + 2y = 16 \quad \cdots (1)
5x - 3y = 7 \quad \cdots (2)

Step 1: align. No coefficient already matches. Choose to align the y-coefficients (because they have opposite signs — adding will cancel them, no subtracting needed). The LCM of 2 and 3 is 6. Multiply (1) by 3 and (2) by 2:

9x + 6y = 48 \quad \cdots (1')
10x - 6y = 14 \quad \cdots (2')

Why: pick the variable whose coefficients have the smallest LCM, and (when there is a choice) prefer opposite signs so you can add rather than subtract — fewer sign errors that way.

Step 2: add (1') + (2'):

(9x + 10x) + (6y - 6y) = 48 + 14
19x = 62
x = \frac{62}{19}

Hmm — an ugly fraction. That happens. Elimination still works; the answer just isn't a clean integer.

Why: not every textbook system has a tidy whole-number solution. The method is identical whether the answer is x = 2 or x = 62/19. Trust the algebra.

Step 3: back-substitute. Plug x = 62/19 into equation (1):

3 \cdot \frac{62}{19} + 2y = 16
\frac{186}{19} + 2y = 16 = \frac{304}{19}
2y = \frac{304 - 186}{19} = \frac{118}{19}
y = \frac{59}{19}

Solution: (x, y) = \left(\dfrac{62}{19}, \dfrac{59}{19}\right).

This example is a useful reality check: not every CBSE-style problem has nice integer answers. Real systems — circuit analysis, mixture problems, intersection of arbitrary lines — give fractions all the time.

Example 3: Multiply only one equation — $x + 2y = 8$, $3x + 4y = 18$

Stack:

x + 2y = 8 \quad \cdots (1)
3x + 4y = 18 \quad \cdots (2)

Step 1: align. The coefficient of x in (1) is 1, in (2) is 3. Multiply (1) by 3 and (2) stays as is:

3x + 6y = 24 \quad \cdots (1')
3x + 4y = 18 \quad \cdots (2)

Why: when one coefficient is already a small factor of the other, you only need to multiply one equation. Always scan for this — it cuts the work in half.

Step 2: subtract (1') - (2):

(3x + 6y) - (3x + 4y) = 24 - 18
2y = 6
y = 3

Step 3: back-substitute into the original equation (1) (which has tiny numbers):

x + 2(3) = 8 \implies x = 2

Step 4: check in (2): 3(2) + 4(3) = 6 + 12 = 18. Confirmed.

Solution: (x, y) = (2, 3).

When to use elimination over substitution

Both methods always work — they cannot give different answers. But one is usually faster than the other depending on what the equations look like.

Reach for elimination when:

Reach for substitution when:

For the boards — CBSE Class 10 systems are written specifically to reward the elimination method. Whole-number coefficients, modest LCMs, and integer solutions are the typical recipe. If you spot a system where elimination would clear in two clean lines, do not start substituting.

Common confusions

References

  1. NCERT Class 10 Mathematics, Chapter 3: Pair of Linear Equations in Two Variables — the standard CBSE treatment, with elimination as the central technique.
  2. Khan Academy — Elimination method (systems of equations) — short interactive lessons on adding equations to cancel a variable.
  3. Wikipedia — System of linear equations — the broader context, including extensions to many variables.
  4. Wikipedia — Gaussian elimination — the general algorithm of which two-equation elimination is the simplest case.