Introduction to Radical Equations
From the math curriculum
Introduction to Radical Equations
TL;DR
Radical equations are equations where the variable is stuck inside a square root (or cube root, etc.). To solve them, you isolate the radical and then raise both sides to a power that undoes the root. Always check your answers because sometimes the process creates "extra" solutions that don't actually work in the original equation.
1. The Mental Model
Think of radical equations like a puzzle where you need to free the variable from a cage (the radical symbol). Your main tool is squaring (or cubing, etc.) both sides, but be careful because this tool can sometimes create misleading answers that look right but aren't.
2. The Core Material
A radical equation is simply an equation that has a variable underneath a radical sign, most commonly a square root. For example, $\sqrt{x + 3} = 5$ is a radical equation. Your goal is to find the value(s) of $x$ that make the equation true.
The main strategy for solving these equations involves two key steps:
1. Isolate the radical: Get the radical term by itself on one side of the equation.
2. Eliminate the radical: Raise both sides of the equation to the power that matches the index of the radical. For a square root, you'll square both sides; for a cube root, you'll cube both sides, and so on.
Let's break down the process.
2.1 Isolating the Radical
Before you can get rid of the radical, you need it to be alone. This often means moving other terms away from it.
Example: In $2\sqrt{x} + 1 = 7$, you'd subtract 1 from both sides, then divide by 2, to get $\sqrt{x} = 3$.
2.2 Eliminating the Radical
Once the radical is isolated, you "undo" it.
- If you have $\sqrt{A}$, you square both sides: $(\sqrt{A})^2 = A$.
- If you have $\sqrt[3]{A}$, you cube both sides: $(\sqrt[3]{A})^3 = A$.
2.3 Solving the Resulting Equation
After eliminating the radical, you'll be left with a simpler equation (often linear or quadratic) that you already know how to solve.
2.4 Checking for Extraneous Solutions

Photo by Ann H on Pexels
This is super important! When you square both sides of an equation, you can sometimes introduce solutions that don't work in the original equation. These are called extraneous solutions. It happens because squaring hides the sign information. For example, $x = 3$ and $x = -3$ both become $x^2 = 9$ when squared. So, if your original equation was $\sqrt{x} = -3$, squaring it would give $x = 9$, but $\sqrt{9}$ is $3$, not $-3$. So $x=9$ is an extraneous solution in this case.
Always substitute your potential solutions back into the original radical equation to verify them.
Here's a flow of the process:
graph TD
A["Start: Radical Equation"] --> B{"Is the radical isolated?"};
B -- No --> C["Isolate the radical term"];
C --> B;
B -- Yes --> D["Raise both sides to the power matching the radical's index"];
D --> E["Solve the resulting equation (linear, quadratic, etc.)"];
E --> F["Substitute EACH potential solution back into the ORIGINAL equation"];
F --> G{"Does the solution work?"};
G -- No --> H["Discard as extraneous"];
G -- Yes --> I["Keep as valid solution"];
H --> J["End"];
I --> J;
3. Worked Example
Let's solve the equation $\sqrt{2x + 1} + 3 = x$.
-
Isolate the radical:
Subtract 3 from both sides:
$\sqrt{2x + 1} = x - 3$ -
Eliminate the radical:
Square both sides:
$(\sqrt{2x + 1})^2 = (x - 3)^2$
$2x + 1 = x^2 - 6x + 9$ -
Solve the resulting equation:
This is a quadratic equation. Move all terms to one side to set it to zero:
$0 = x^2 - 6x - 2x + 9 - 1$
$0 = x^2 - 8x + 8$We can use the quadratic formula to solve for $x$:
$x = \frac{-b \pm \sqrt{b^2 - 4ac}}{2a}$
Here, $a=1$, $b=-8$, $c=8$.
$x = \frac{-(-8) \pm \sqrt{(-8)^2 - 4(1)(8)}}{2(1)}$
$x = \frac{8 \pm \sqrt{64 - 32}}{2}$
$x = \frac{8 \pm \sqrt{32}}{2}$
$x = \frac{8 \pm 4\sqrt{2}}{2}$
$x = 4 \pm 2\sqrt{2}$So, our potential solutions are $x = 4 + 2\sqrt{2}$ and $x = 4 - 2\sqrt{2}$.
Approximate values: $4 + 2(1.414) \approx 4 + 2.828 = 6.828$
$4 - 2(1.414) \approx 4 - 2.828 = 1.172$ -
Check for extraneous solutions:
Check $x = 4 + 2\sqrt{2}$:
Substitute into the original equation: $\sqrt{2(4 + 2\sqrt{2}) + 1} + 3 = 4 + 2\sqrt{2}$
$\sqrt{8 + 4\sqrt{2} + 1} + 3 = 4 + 2\sqrt{2}$
$\sqrt{9 + 4\sqrt{2}} + 3 = 4 + 2\sqrt{2}$
It turns out that $\sqrt{9 + 4\sqrt{2}}$ is actually $1 + 2\sqrt{2}$. (This is a trickier simplification: $(1+2\sqrt{2})^2 = 1 + 4\sqrt{2} + 4(2) = 1 + 4\sqrt{2} + 8 = 9 + 4\sqrt{2}$).
So, $(1 + 2\sqrt{2}) + 3 = 4 + 2\sqrt{2}$
$4 + 2\sqrt{2} = 4 + 2\sqrt{2}$
This solution works.Check $x = 4 - 2\sqrt{2}$:
Substitute into the original equation: $\sqrt{2(4 - 2\sqrt{2}) + 1} + 3 = 4 - 2\sqrt{2}$
$\sqrt{8 - 4\sqrt{2} + 1} + 3 = 4 - 2\sqrt{2}$
$\sqrt{9 - 4\sqrt{2}} + 3 = 4 - 2\sqrt{2}$
Using the same trick as before, $\sqrt{9 - 4\sqrt{2}}$ is actually $2\sqrt{2} - 1$. (You need to be careful with signs here: if you think about it as $\sqrt{(a-b)^2}$, then $a-b$ must be positive for the square root to make sense as the principal root. $2\sqrt{2} \approx 2.828$, so $2\sqrt{2}-1 \approx 1.828$, which is positive).
So, $(2\sqrt{2} - 1) + 3 = 4 - 2\sqrt{2}$
$2\sqrt{2} + 2 = 4 - 2\sqrt{2}$
This is clearly false. $2\sqrt{2} + 2 \approx 4.828$, and $4 - 2\sqrt{2} \approx 1.172$.
Alternatively, look back at the isolated radical step: $\sqrt{2x + 1} = x - 3$.
For $x = 4 - 2\sqrt{2}$, the right side $x - 3 = (4 - 2\sqrt{2}) - 3 = 1 - 2\sqrt{2}$. This is a negative number (approx $1 - 2.828 = -1.828$).
However, the square root symbol $\sqrt{}$ always denotes the principal (non-negative) square root. So, $\sqrt{2x+1}$ can never equal a negative number. This tells you immediately that $x = 4 - 2\sqrt{2}$ is an extraneous solution.
The only valid solution is $x = 4 + 2\sqrt{2}$.
4. Key Takeaways
- Radical equations involve variables under a radical sign.
- The first step is always to isolate the radical on one side of the equation.
- To remove a square root, square both sides; for a cube root, cube both sides, and so on.
- After removing the radical, solve the resulting simpler equation (linear or quadratic).
- Always check all potential solutions in the original equation to identify and discard extraneous solutions.
- An extraneous solution is a value that satisfies the transformed equation but not the original one.
- Remember that the principal square root ($\sqrt{}$) always yields a non-negative result.
Common mistakes to avoid:
- Not isolating the radical first: Squaring $(A+B)^2$ when $B$ is a radical is harder than just squaring the radical.
- Forgetting to square all terms on both sides: When you square $(x-3)$, it's $(x-3)(x-3)$, not $x^2 - 9$.
- Not checking for extraneous solutions: This is the most common error that leads to incorrect final answers.
- Assuming $\sqrt{A^2} = A$ for all $A$: It's actually $|A|$. This is why checking solutions is crucial.
5. Now Try It
Solve the equation $\sqrt{x + 6} = x$.
Once you have your solution(s), substitute them back into the original equation to verify they work. Success means you've found the correct solution(s) and correctly identified any extraneous ones.
Frequently asked about Introduction to Radical Equations
Study this next
Get the full math curriculum
Clone the complete plan to your dashboard for unlimited AI-generated notes, practice quizzes, and a personalised revision schedule.
Create Free Account