Advanced Techniques for Solving Radical Equations

SA
StudyAI Editorial
Reviewed by StudyAI tutors
· Published Updated

From the math curriculum

Advanced Techniques for Solving Radical Equations

TL;DR

Solving radical equations means isolating the radical and raising both sides to a power to remove it. You often need to repeat this process for multiple radicals and always check your solutions. Extraneous solutions can arise when squaring both sides, so checking is crucial.

1. The Mental Model

Think of solving radical equations like peeling an onion. You start with the outermost radical, remove it, and then work your way inward until the variable is free. Always remember that peeling the onion might reveal a rotten layer (extraneous solution) that you need to discard.

2. The Core Material

When you're faced with an equation that has square roots, cube roots, or other types of radicals, your main goal is to get rid of those radical signs.

Isolating the Radical

The first step is usually to get one radical expression by itself on one side of the equation. This makes it easier to eliminate it.

For example, in $ \sqrt{x+2} - 1 = 3 $, you'd add 1 to both sides to get $ \sqrt{x+2} = 4 $.

Eliminating the Radical

Once a radical is isolated, you raise both sides of the equation to a power that matches the radical's index. If it's a square root, you square both sides. If it's a cube root, you cube both sides, and so on.

For $ \sqrt{x+2} = 4 $, squaring both sides gives $ (\sqrt{x+2})^2 = 4^2 $, which simplifies to $ x+2 = 16 $.

Dealing with Multiple Radicals

If you have multiple radicals, you'll need to isolate and eliminate them one by one. This often means you'll have to repeat the process. When you square a side with two terms (like $ (a+b)^2 $), remember to expand it properly as $ a^2 + 2ab + b^2 $. This is a common place where a new radical can appear, requiring a second round of isolation and squaring.

Checking for Extraneous Solutions

Wooden blocks spelling 'solution' in a grid, symbolizing problem-solving.
Photo by Ann H on Pexels

This is absolutely critical. When you square both sides of an equation, you can sometimes introduce solutions that don't actually work in the original equation. These are called extraneous solutions. You must plug all your potential solutions back into the original equation to verify them.

graph TD
    A["Start: Radical Equation"] --> B{"Are there multiple radicals?"}
    B -- Yes --> C["Isolate one radical (get it by itself)"]
    B -- No --> D["Isolate the radical"]
    C --> D
    D --> E["Raise both sides to the power of the radical's index"]
    E --> F{"Are there still radicals?"}
    F -- Yes --> C
    F -- No --> G["Solve the resulting polynomial equation"]
    G --> H["Check all potential solutions in the ORIGINAL equation"]
    H --> I{"Does the solution work?"}
    I -- Yes --> J["Keep the solution"]
    I -- No --> K["Discard as extraneous"]
    J --> L["End: Valid Solution(s)"]
    K --> L

3. Worked Example

Let's solve $ \sqrt{2x+3} - \sqrt{x+2} = 1 $.

  1. Isolate one radical:
    Add $ \sqrt{x+2} $ to both sides to get:
    $ \sqrt{2x+3} = 1 + \sqrt{x+2} $

  2. Square both sides:
    $ (\sqrt{2x+3})^2 = (1 + \sqrt{x+2})^2 $
    $ 2x+3 = 1^2 + 2(1)\sqrt{x+2} + (\sqrt{x+2})^2 $
    $ 2x+3 = 1 + 2\sqrt{x+2} + x+2 $
    $ 2x+3 = x+3 + 2\sqrt{x+2} $

  3. Isolate the remaining radical:
    Subtract $ x+3 $ from both sides:
    $ (2x+3) - (x+3) = 2\sqrt{x+2} $
    $ x = 2\sqrt{x+2} $

  4. Square both sides again:
    $ (x)^2 = (2\sqrt{x+2})^2 $
    $ x^2 = 4(x+2) $
    $ x^2 = 4x + 8 $

  5. Solve the quadratic equation:
    $ x^2 - 4x - 8 = 0 $
    Using the quadratic formula $ x = \frac{-b \pm \sqrt{b^2 - 4ac}}{2a} $:
    $ x = \frac{-(-4) \pm \sqrt{(-4)^2 - 4(1)(-8)}}{2(1)} $
    $ x = \frac{4 \pm \sqrt{16 + 32}}{2} $
    $ x = \frac{4 \pm \sqrt{48}}{2} $
    $ x = \frac{4 \pm 4\sqrt{3}}{2} $
    $ x = 2 \pm 2\sqrt{3} $

    So, our potential solutions are $ x_1 = 2 + 2\sqrt{3} $ and $ x_2 = 2 - 2\sqrt{3} $.

  6. Check for extraneous solutions in the original equation:
    Original equation: $ \sqrt{2x+3} - \sqrt{x+2} = 1 $

    Check $ x_1 = 2 + 2\sqrt{3} $:
    $ 2 + 2\sqrt{3} \approx 2 + 2(1.732) = 2 + 3.464 = 5.464 $
    $ \sqrt{2(5.464)+3} - \sqrt{5.464+2} = \sqrt{10.928+3} - \sqrt{7.464} = \sqrt{13.928} - \sqrt{7.464} $
    $ \approx 3.732 - 2.732 = 1 $
    This one works (you can do the exact algebra too, but approximation often helps confirm).

    Check $ x_2 = 2 - 2\sqrt{3} $:
    $ 2 - 2\sqrt{3} \approx 2 - 3.464 = -1.464 $
    $ \sqrt{2(-1.464)+3} - \sqrt{-1.464+2} = \sqrt{-2.928+3} - \sqrt{0.536} = \sqrt{0.072} - \sqrt{0.536} $
    $ \approx 0.268 - 0.732 = -0.464 $
    This does not equal 1. So, $ x = 2 - 2\sqrt{3} $ is an extraneous solution.

The only valid solution is $ x = 2 + 2\sqrt{3} $.

4. Key Takeaways

  • Always isolate one radical before raising both sides to a power.
  • Remember to properly expand binomials when squaring expressions like $(a+b)^2$.
  • You'll often need to repeat the isolation and squaring process if multiple radicals exist.
  • Always check all potential solutions in the original equation to identify and discard extraneous ones.
  • Extraneous solutions arise because squaring an equation can hide the signs, turning false statements like $-3 = 3$ into true ones like $(-3)^2 = 3^2$.
  • Be careful with the domain of radical expressions; arguments of even roots must be non-negative.

5. Now Try It

Solve the equation $ \sqrt{x+7} + \sqrt{x} = 7 $. Work through each step: isolate a radical, square both sides (remembering to expand correctly), isolate any remaining radicals, square again if needed, solve the resulting equation, and most importantly, check all your solutions.

Success looks like: You arrive at a single, correct solution, and you've explicitly shown how you checked both potential solutions in the original equation to confirm which one (if any) is extraneous.

Frequently asked about Advanced Techniques for Solving Radical Equations

Solving radical equations means isolating the radical and raising both sides to a power to remove it. You often need to repeat this process for multiple radicals and always check your solutions. Extraneous solutions can arise when squaring both sides, so checking is crucial. Read the full notes above for the details.

Advanced Techniques for Solving Radical Equations is a core topic in math. Most exam papers test it via a mix of definitions, worked examples, and applied problems. The notes above cover the high-yield sub-topics, common pitfalls, and the kind of questions examiners typically set.

Yes — every note in the StudyAI Campus Hub is free to read in full, right here on this page, with no account needed. If you clone the plan into your own dashboard, the free plan shows a preview of each note there; Basic and above unlock the full notes in your dashboard, along with practice quizzes, flashcards and offline study. You can always come back here to read the complete note for free.
Continue with
Checking Solutions and Extraneous Roots

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