In short
You have two unknowns (x and y), so you start with 2 degrees of freedom — two independent dials you can turn. A single equation imposes 1 constraint, locking those two dials together. That leaves 2 - 1 = 1 degree of freedom. One free dimension traces out a curve, and for a linear equation that curve is a straight line. A line has infinitely many points, so the equation has infinitely many solutions. To pin a single point in 2D, you need a second independent equation.
In CBSE Class 9, you spent a whole chapter on linear equations in one variable — things like 3x + 7 = 22 — and every such equation gave you exactly one answer (x = 5). Then in the very next chapter the textbook drops a bombshell: a linear equation like x + y = 5 has infinitely many solutions. (0, 5), (1, 4), (2, 3), (100, -95) — all of them work.
What changed? You added one variable. Why does adding a single variable explode the answer count from one to infinity? The clean way to see it is through degrees of freedom.
1. The degrees-of-freedom intuition
Think of each unknown as a dial you can turn freely. With x alone, you have one dial. With x and y, you have two dials — the position of a point on a flat plane, since (x, y) is exactly the address of a point in 2D.
Each equation is a rule that ties the dials together. It does not tell you a value; it tells you a relationship the values must obey.
So the bookkeeping is:
Why: each independent equation removes one degree of freedom — once you choose the other dials, that equation forces the remaining dial. So if you start with n unknowns and impose k independent equations, you have n - k dials still free.
Apply this to x + y = 5:
- Unknowns: 2 (namely x and y)
- Equations: 1
- Free dimensions: 2 - 1 = 1
Why: the single equation says "x + y must add up to 5". You can still freely pick one of x or y, and the equation tells you the other. One dial is free, the other is enslaved. That is 1 degree of freedom.
A 1-dimensional set of points inside a 2-dimensional plane is a curve — and for a linear equation, it is a straight line. A line has infinitely many points. Hence: infinitely many solutions.
Compare with the one-variable case 3x + 7 = 22:
- Unknowns: 1
- Equations: 1
- Free dimensions: 1 - 1 = 0
Zero free dimensions means a single point — exactly one answer. That is why class-9 one-variable equations had unique solutions and class-9 two-variable equations did not. Nothing magical happened; the arithmetic of dimensions just shifted.
To force a unique answer in two variables, you need:
You need two independent equations. That is the whole reason the next chapter in your textbook is Pair of Linear Equations in Two Variables (CBSE Class 10) — to give you that second constraint.
2. The algebraic argument
The dimension argument is a vibes-level explanation. Here is the watertight one.
Take any linear equation in two variables in the form
Solve for y:
This is a function that takes any real number x and returns a unique real number y. There are no exceptions, no division-by-zero traps (we assumed b \neq 0), no square roots that might go negative.
So pick any x you like. Compute y. The pair (x, y) satisfies the equation. Substitute back and check:
Since the real numbers are infinite — between any two of them you can squeeze infinitely many more — there are infinitely many choices for x, each producing a different valid pair (x, y). Done.
Why this is airtight: the formula y = (c - ax)/b is a recipe that converts every real input into a valid solution. Infinite inputs in, infinite distinct outputs out, every output a genuine solution. The infinity of solutions is inherited directly from the infinity of the real number line.
(If b = 0 instead — say the equation is ax = c with a \neq 0, so x = c/a — then x is pinned but y is unmentioned, so y is the free dial. Still infinitely many solutions: every pair (c/a, \text{anything}) works. The line is just vertical instead of slanted.)
Example 1: $x + y = 5$, pick any $x$ you want
Solving for y:
| pick x | compute y = 5 - x | check x + y |
|---|---|---|
| 0 | 5 | 0 + 5 = 5 ✓ |
| 1 | 4 | 1 + 4 = 5 ✓ |
| 2.5 | 2.5 | 2.5 + 2.5 = 5 ✓ |
| 100 | -95 | 100 + (-95) = 5 ✓ |
| -7 | 12 | -7 + 12 = 5 ✓ |
There is no value of x for which the recipe fails. Every real number is a valid x, and each one gives a distinct solution pair. Infinitely many.
Example 2: $2x + 3y = 12$ — same story, slightly less symmetric
Solving for y:
| pick x | compute y | check 2x + 3y |
|---|---|---|
| 0 | 4 | 0 + 12 = 12 ✓ |
| 6 | 0 | 12 + 0 = 12 ✓ |
| -3 | 6 | -6 + 18 = 12 ✓ |
| 1.5 | 3 | 3 + 9 = 12 ✓ |
The choices that give whole-number y are special-looking, but mathematically they are not privileged — x = 1.5, y = 3 is just as valid a solution as x = 0, y = 4. The line passes through all of them.
Why some pairs feel "nice" and others don't: x = 0 and y = 0 are the ones you naturally test first because they kill terms in the equation. But the equation does not know about "nice numbers" — it accepts every real x and computes a real y in return.
3. The geometric argument
The third way to see it: the equation ax + by = c is, by definition, the set of all points (x, y) that satisfy it. By the equivalence between equations and graphs, this set is a straight line in the plane (provided a and b are not both zero — see the parent article for that detail).
A straight line in the plane has infinitely many points. You can keep zooming in between any two points on the line and find more. So the solution set is infinite, simply because lines are made of infinitely many points — there is no way around it.
This is the most visual route to the answer: equation \leftrightarrow line \leftrightarrow infinite points \leftrightarrow infinite solutions. The algebra and the geometry are two views of the same fact.
Example 3: extending to 3D — even more solutions
What if you have three variables and one equation? Say
By the same dimension arithmetic:
- Unknowns: 3
- Equations: 1
- Free dimensions: 3 - 1 = 2
You lose 1 dimension to the constraint, but 2 dimensions survive. A 2-dimensional set inside 3D space is a plane. So 2x + 3y - z = 6 describes a flat plane floating in 3D space, with infinitely many points — and crucially, more infinitely many than a line (a 2D infinity rather than a 1D one).
Concretely, you can freely pick any x and any y, then solve for z = 2x + 3y - 6. Two free dials instead of one. To pin a single point in 3D, you would need three independent equations: 3 - 3 = 0 free dimensions = unique point.
Why this matters: the pattern "unknowns minus equations equals free dimensions" generalises to as many variables as you want. Linear algebra in college (and JEE Advanced linear-equations problems) is built on exactly this counting principle.
So why do one-variable equations behave differently?
A linear equation in one variable like 3x + 7 = 22 has the same arithmetic working in its favour:
- Unknowns: 1 (x)
- Equations: 1
- Free dimensions: 1 - 1 = 0
Zero free dimensions means a single point on the number line — a unique answer. The equation eats up your only dial completely; nothing is left to vary.
The instant you add a second unknown, you get an extra dial that the single equation cannot reach. That extra freedom is what turns a unique solution into an infinite family. It is not a quirk of the textbook — it is the geometry of dimension at work.
Putting it all together
Three independent paths, one conclusion:
- Dimension counting says 2 - 1 = 1 free dimension survives, and a 1-dimensional set is infinite.
- Algebra gives a recipe y = (c - ax)/b that converts every real x into a valid solution — and there are infinitely many real numbers.
- Geometry identifies the solution set with a straight line, and a line is made of infinitely many points.
When you next look at a single equation like x + y = 5 and feel uneasy about the "infinitely many solutions" answer, remember: the equation underdetermines the unknowns. One constraint cannot pin two dials. That is not a bug — it is exactly the property that makes systems of linear equations interesting, because you finally bring in a second equation and watch the infinity collapse to a single point.
References
- NCERT Class 9 Mathematics, Chapter 4: Linear Equations in Two Variables — official syllabus chapter that introduces this idea.
- NCERT Class 10 Mathematics, Chapter 3: Pair of Linear Equations in Two Variables — the follow-up that adds a second equation to pin down a point.
- Wikipedia: Underdetermined system — the formal name for "fewer equations than unknowns".
- Wikipedia: Degrees of freedom (statistics and physics) — the general counting principle used here.
- Khan Academy: Solutions to two-variable linear equations — short video walkthrough of the same idea.