Introduction

Sometimes you solve an equation honestly, every line correct arithmetic, and yet when you plug the answer back into the original equation it turns out to be false. Nothing went wrong in the steps. The answer itself is fake.

A fake answer that sneaks in during solving like this is called an extraneous root (or extraneous solution). "Root" just means an answer to an equation, so an extraneous root is a number that pops out of the solving process but is not actually a solution.

Extraneous roots don't come from one cause — they come from two different causes.

  • In a radical equation (one containing \(\sqrt{\ }\)), they appear the moment you square both sides.
  • In a fraction equation (one with the unknown in a denominator), they appear the moment you clear the denominator by multiplying it away.

Working through both cases side by side reveals that they are two faces of the same trap: an operation meant to make the equation easier to handle quietly erases a piece of information.

1. Radical equations — squaring erases the sign

Let's solve this equation.

$$\sqrt{x+2} = x$$

Intuition first: the left side is a square root, so its value is always zero or more. For the equation to hold, the right side \(x\) must therefore also be zero or more — a hidden condition baked in from the start.

Working it out: squaring both sides removes the √ symbol and leaves an easy equation.

$$x + 2 = x^2$$$$x^2 - x - 2 = 0$$$$(x-2)(x+1) = 0$$

That gives \(x = 2\) or \(x = -1\). Now check both against the original equation:

  • \(x = 2\): \(\sqrt{2+2} = \sqrt{4} = 2\), and the right side is also \(2\) → holds
  • \(x = -1\): \(\sqrt{-1+2} = \sqrt{1} = 1\), but the right side is \(-1\) → \(1 \ne -1\) → false

The arithmetic that produced \(x = -1\) was perfectly fine, yet it fails the original equation. That is an extraneous root.

Why this happens: squaring cannot tell a negative number from a positive one. \(3^2 = 9\) and \((-3)^2 = 9\) both hold, so looking at the squared result alone you can't tell whether the original number was \(3\) or \(-3\). The same thing happens to the equation. Squaring both sides makes the resulting equation true not just for the original \(\sqrt{x+2} = x\), but also for its sign-flipped "twin equation" \(\sqrt{x+2} = -x\).

$$\left(\sqrt{x+2}\right)^2 = x^2 \qquad \text{and} \qquad \left(\sqrt{x+2}\right)^2 = (-x)^2$$

Both equations have the exact same left side, \(x+2\), so once you square, they collapse into the single equation \(x+2=x^2\). Indeed, plugging \(x=-1\) into the twin equation gives \(\sqrt{1} = 1 = -(-1)\) — it checks out. \(x=-1\) was a genuine solution of the twin equation all along. Squaring erased the "sign" information, letting the solutions of two originally separate equations mix together inside one solving process.

2. Fraction equations — clearing the denominator erases the "never zero" rule

Now consider an equation with the unknown in the denominator.

$$ \frac{x}{x-1} = \frac{1}{x-1} + 2 $$

Intuition first: a fraction equation carries an unspoken rule — "a denominator can never be zero." Since the denominator here is \(x - 1\), the equation already assumes \(x \ne 1\) from the start.

Working it out: to clear the denominator, multiply both sides by \(x-1\).

$$x = 1 + 2(x-1)$$$$x = 2x - 1$$$$x = 1$$

That comes out cleanly to \(x=1\). But plug this back into the original equation and the denominator becomes \(x - 1 = 0\) — the expression is undefined. The answer the solving process produced was, in fact, a value that was never allowed to begin with. This equation truly has no solution.

Why this happens: multiplying both sides by the same thing does not by itself break the balance of the equals sign (it's the same principle as moving a term being equivalent to subtracting the same thing from both sides). The issue is what you multiplied by. Here that was \(x-1\), which is not a fixed number but an expression containing the unknown. If \(x=1\), you have effectively multiplied both sides by \(0\).

$$ 0 \times (\text{left side}) = 0 \times (\text{right side}) $$

Multiplying both sides by \(0\) always produces \(0 = 0\) — true regardless of whether the original two sides were ever equal. So whenever you clear a denominator by multiplying both sides by an expression containing the unknown, you must separately remember that "any value making that expression zero is excluded from the answer." Clearing the denominator makes the equation look simpler, but it also carries the "denominator ≠ 0" restriction right out of the equation along with it.

3. Try it yourself

Toggle between the two scenarios below to watch the exact moment an extraneous root is created. For the radical equation, toggle "square both sides" and watch how many intersection points the graph gains. For the fraction equation, toggle "clear the denominator" and watch the point at \(x=1\) change from an explosion in the graph into an ordinary-looking point in disguise.

Two faces of the extraneous root — squaring and clearing denominators
Top: toggle √(x+2)=x before/after squaring — squaring adds an intersection point (x=−1) that wasn't there originally. Bottom: toggle x/(x−1)=1/(x−1)+2 before/after clearing the denominator — the blow-up at x=1 gets disguised as an ordinary point on a straight line.

Key takeaways

  • An extraneous root is a fake answer: the arithmetic in the solving process is correct, but it fails when checked against the original equation.
  • Radical equations: squaring both sides erases sign information, merging the solutions of the original equation with those of its sign-flipped "twin equation."
  • Fraction equations: clearing a denominator that contains the unknown opens a trap at the value that makes that denominator zero — multiplying by zero makes the equation hold trivially, regardless of whether the two sides were ever truly equal.
  • In both cases, the last step of solving must always be to plug the answer back into the original equation and check it.

Solving isn't the finish line — checking is. That goes double whenever squaring or clearing a denominator was part of the journey.

Related readingEquations Are Balance Scales, Not "Move It Over" (why doing the same thing to both sides keeps an equation safe — the starting point for this post) · Why Doesn't √(A−B) Equal √A−√B? (another common trap when handling square roots)