Pair of Linear Equations in Two Variables

Chapter 3 · Mathematics · Class 10 34 min read

Why This Matters

So many everyday puzzles have two unknowns tangled together. How many ₹50 and ₹100 notes make up ₹2000 in 25 notes? If 5 pencils and 7 pens cost ₹50 but 7 pencils and 5 pens cost ₹46, what’s the price of each? You can’t pin down either unknown from a single fact — you need two conditions, and a way to untangle them.

That’s exactly what a pair of linear equations is: two facts about two unknowns, written as two straight-line equations. Solving the pair means finding the one pair of values (x, y) that makes both true at once.

This chapter gives you three tools and, just as importantly, the picture behind them. Each equation is a straight line; solving the pair is asking where the two lines meet. Sometimes they cross at one point (one answer), sometimes they run parallel (no answer), sometimes they’re the very same line (endless answers). Once you see that, you can predict the kind of answer before doing any algebra — and then use substitution or elimination to nail down the exact numbers.

The Big Idea

Each linear equation in x and y is a straight line. A solution of the pair is a point (x, y) that lies on both lines — so solving the pair means finding where the two lines meet. Two lines can meet at one point (unique solution), never meet (parallel → no solution), or lie on top of each other (coincident → infinitely many). The ratios of the coefficients tell you which case you’re in before you draw anything.

Let’s Break It Down

What a pair of linear equations is

A linear equation in two variables has the form ax + by + c = 0 (with a and b not both zero) — its graph is a straight line. A pair is just two of them:

a₁x + b₁y + c₁ = 0 and a₂x + b₂y + c₂ = 0

A solution is a pair of values (x, y) satisfying both equations. Take Akhila at a fair: if she had x rides (₹3 each) and played Hoopla y times (₹4 each), spending ₹20, with the games being half the rides, then y = x/2 and 3x + 4y = 20 — two equations, two unknowns.

The graphical method: where do the lines meet?

Plot both lines on the same axes. The point(s) they share are the solution(s). Here’s a worked case — the lines x + 3y = 6 and 2x − 3y = 12:

The lines x + 3y = 6 and 2x − 3y = 12 drawn on one set of axes, crossing at the single point (6, 0).
Two solutions of each line are enough to draw it. The lines cross at (6, 0), so x = 6, y = 0 is the unique solution — the pair is consistent.

Because two straight lines can sit in only three ways, a pair of linear equations always falls into one of three cases:

Three cases for a pair of lines: intersecting at one point (one solution), parallel (no solution), and coincident lines lying on top of each other (infinitely many solutions), with the coefficient-ratio condition under each.
The three possibilities: intersecting (one solution, consistent), parallel (no solution, inconsistent), or coincident (infinitely many, dependent). The coefficient ratios below each tell them apart.
The three cases at a glance
LinesSolutionsNameRatio test
Intersectingexactly oneconsistenta₁/a₂ ≠ b₁/b₂
Parallelnoneinconsistenta₁/a₂ = b₁/b₂ ≠ c₁/c₂
Coincidentinfinitely manydependent (consistent)a₁/a₂ = b₁/b₂ = c₁/c₂

Why the ratio test works (this is worth understanding, not just memorising). Rearrange ax + by + c = 0 into slope form: y = (−a/b)x − c/b, so the slope is −a/b and the y-intercept is −c/b.

  • If a₁/a₂ ≠ b₁/b₂, the two slopes −a₁/b₁ and −a₂/b₂ are different → the lines tilt differently → they must cross once (unique solution).
  • If a₁/a₂ = b₁/b₂, the slopes are equal → the lines are parallel or the same line. The intercepts decide which: if c₁/c₂ is also equal, the equations are just multiples of each other → same line (coincident); if c₁/c₂ differs, the lines are distinct parallels that never meet (no solution).
Reading the ratios

Without drawing, decide how many solutions each pair has: (a) 9x + 3y + 12 = 0 and 18x + 6y + 24 = 0; (b) 2x − 3y = 8 and 4x − 6y = 9.

The graphical method is great for seeing the answer, but it’s awkward when the meeting point has messy coordinates like (49/29, 19/29). For exact answers we turn to algebra.

Method 1 — Substitution

The idea: from one equation, write one variable in terms of the other, then substitute into the second equation, leaving a single equation in one variable.

Substitution method

Solve 7x − 15y = 2 and x + 2y = 3.

Substitution shines when one variable already has coefficient 1 (so making it the subject is clean).

Method 2 — Elimination

The idea: scale the equations so one variable has the same coefficient in both, then add or subtract to make it vanish.

Elimination method

The incomes of two people are in the ratio 9 : 7 and their expenditures in the ratio 4 : 3. Each saves ₹2000 a month. Find their incomes.

Both algebraic methods also reveal the special cases. If, while solving, every variable cancels and you’re left with a true statement like 18 = 18, the pair has infinitely many solutions (same line). If you’re left with a false statement like 0 = 9 or −4 = 0, the pair has no solution (parallel).

When the variables vanish

Use elimination on 2x + 3y = 8 and 4x + 6y = 7.

Equations that become linear

Some problems aren’t linear as written but turn linear with a smart substitution. For example 2/x + 3/y = 13 and 5/x − 4/y = −2 become linear if you let u = 1/x and v = 1/y, giving 2u + 3v = 13 and 5u − 4v = −2 — solve for u, v, then flip back to x = 1/u, y = 1/v.

Common Mistakes

⚠️ Common mistake
What students think

A pair of linear equations always has exactly one solution.

Why it seems right

Most practice problems are built to have a single neat answer, so the 'no solution' and 'infinitely many' cases feel like exceptions you can ignore.

What actually happens

There are THREE outcomes: one solution (intersecting), none (parallel), or infinitely many (coincident). Always check the coefficient ratios — a pair can easily be inconsistent or dependent.

⚠️ Common mistake
What students think

If both equations have no common solution, but the algebra gives 0 = 0, that means no solution.

Why it seems right

Getting '0 = ...' with the variables gone looks like a dead end, so any such line feels like 'no solution'.

What actually happens

It depends on whether the leftover statement is TRUE or FALSE. A true statement (0 = 0, 18 = 18) → infinitely many solutions (same line). A false statement (0 = 9) → no solution (parallel). The truth value is the whole point.

⚠️ Common mistake
What students think

For the ratio test, parallel lines satisfy a₁/a₂ = b₁/b₂ = c₁/c₂.

Why it seems right

Parallel and coincident lines both start with a₁/a₂ = b₁/b₂, so it's easy to blur the last ratio.

What actually happens

Parallel (no solution) is a₁/a₂ = b₁/b₂ ≠ c₁/c₂. When c₁/c₂ ALSO matches, the equations are multiples of each other — the SAME line (coincident, infinitely many). The c-ratio is exactly what separates 'never meet' from 'always meet'.

⚠️ Common mistake
What students think

In elimination, when the coefficients are equal you always subtract the equations.

Why it seems right

The textbook examples often make like-signed coefficients equal, so subtracting becomes a habit.

What actually happens

Add when the equal coefficients have OPPOSITE signs (e.g. +6y and −6y → add to cancel); subtract when they have the SAME sign (+6y and +6y → subtract to cancel). Pick whichever makes the variable disappear.

Quick Check

Two lines are parallel and distinct. How many solutions does the pair of equations have?

For 3x + 2y = 5 and 2x − 3y = 7, which describes the pair?

While solving a pair by elimination, all variables cancel and you get 18 = 18. What does this mean?

Which substitution turns 2/x + 3/y = 13 into a linear equation?

Practice Problems

Easy

easy

Solve by substitution: x + y = 14 and x − y = 4.

easy

Without solving, state whether 5x − 4y + 8 = 0 and 7x + 6y − 9 = 0 intersect, are parallel, or coincide.

Medium

medium

The coach buys 7 bats and 6 balls for ₹3800; later 3 bats and 5 balls for ₹1750. Find the cost of each bat and ball.

medium

A two-digit number plus the number with its digits reversed is 66, and the two digits differ by 2. Find all such numbers.

Challenge

challenge

For what value of k does the pair kx + 3y = k − 3 and 12x + ky = k have no solution?

Summary

You should now be able to explain:

  • A pair of linear equations is two lines a₁x + b₁y + c₁ = 0 and a₂x + b₂y + c₂ = 0; a solution is a point on both lines.
  • Graphically there are three cases: intersecting (one solution, consistent), parallel (no solution, inconsistent), coincident (infinitely many, dependent/consistent).
  • The ratio test: a₁/a₂ ≠ b₁/b₂ → unique; a₁/a₂ = b₁/b₂ ≠ c₁/c₂ → none; a₁/a₂ = b₁/b₂ = c₁/c₂ → infinitely many. (It works because −a/b is the slope and −c/b the intercept.)
  • Substitution: make one variable the subject and plug into the other equation.
  • Elimination: equalise one variable’s coefficient, then add/subtract to cancel it.
  • During algebra, a leftover true statement → infinitely many solutions; a false one → no solution.
  • Some non-linear pairs become linear with a substitution like u = 1/x, v = 1/y.

What’s Next

So far every equation has been degree 1 — straight lines. Next, in Quadratic Equations, the variable gets squared (ax² + bx + c = 0). One equation, one unknown, but now the graph is a parabola, so there can be two solutions, one, or none — and you’ll learn the famous quadratic formula to find them every time.