Sooner or later you will meet an expression that looks like a Russian doll of radicals — a square root inside a square root inside a square root. The algebra feels impossible until you spot one recognition move that the fast students use every time: substitute a single variable for the innermost piece, solve the outer structure, then back-substitute. The mess is only scary from the outside. From the inside out, every layer is an equation a tenth-grader can handle.

The trigger

You see an expression or equation with radicals nested more than one deep. Typical shapes:

The common feature: a radical whose radicand itself contains a radical. That is the flag. Reach for the substitution reflex.

The one-variable substitution

Pick a letter — say u — for the innermost radical or the innermost expression under a radical. Write the outer problem in terms of u. Solve it. At the very end, replace u with what it stood for and solve the remaining ordinary-radical equation.

The reason this works: the chain of nested radicals is a composition of simpler operations. Composition is easier to unpack one layer at a time than all at once. Substitution names the layer you are working on and hides the others.

Example 1: a finite nest

Solve \sqrt{x + \sqrt{x + 12}} = 4.

Step 1. Let u = \sqrt{x + 12}. Then the equation becomes

\sqrt{x + u} = 4.

Step 2. Square both sides (both non-negative, so monotonicity preserves the equation):

x + u = 16.

Step 3. Replace u with \sqrt{x + 12}:

x + \sqrt{x + 12} = 16 \iff \sqrt{x + 12} = 16 - x.

Step 4. Square again (check both sides non-negative — need 16 - x \geq 0, i.e., x \leq 16):

x + 12 = (16 - x)^2 = 256 - 32x + x^2 \iff x^2 - 33x + 244 = 0.

Why: squaring removed the remaining radical. The resulting quadratic is ordinary algebra, solvable by the quadratic formula or factoring.

Step 5. Solve the quadratic. Discriminant: 33^2 - 4 \cdot 244 = 1089 - 976 = 113. So

x = \frac{33 \pm \sqrt{113}}{2}.

Only the root with x \leq 16 survives the domain check, and you can verify it satisfies the original equation. The messy nested radical became a quadratic, one layer at a time.

Example 2: the infinite nest

Simplify y = \sqrt{5 + \sqrt{5 + \sqrt{5 + \ldots}}}, an infinite chain.

The trick: the pattern repeats inside itself. The expression under the outermost radical is the same as y — that is the whole point of the infinite nest.

y = \sqrt{5 + y}.

Why: replace the entire nested tail with y, because the tail has the same structure as the whole. This is the standard move for infinite self-similar expressions.

Square both sides (both non-negative):

y^2 = 5 + y \iff y^2 - y - 5 = 0 \iff y = \frac{1 + \sqrt{21}}{2}.

Only the positive root is valid (the original expression is manifestly non-negative), giving y \approx 2.791. What looked like an infinite regress turned into a quadratic in one line.

Example 3: root-of-a-root (simpler)

Simplify \sqrt[3]{\sqrt{64}}.

The innermost piece is \sqrt{64} = 8. Substitute mentally, then take the cube root: \sqrt[3]{8} = 2. Done.

Alternatively use the exponent form directly: \sqrt[3]{\sqrt{64}} = 64^{1/6} = 2. This is the "root of a root is a single root with the indices multiplied" rule from the chapter — \sqrt[m]{\sqrt[n]{a}} = \sqrt[mn]{a}. Same result, different view.

The pattern under the reflex

In every case, the substitution collapses one layer into an algebraic variable, turning the nested problem into a problem with fewer layers — a recursive peel. Repeat until no layers remain. This is the same structure you will meet again in:

The nested-radical trick is a specific case of the general principle: when a problem is a Matryoshka doll, crack open the innermost doll first.

Domain and extraneous-root vigilance

Every time you square both sides to remove a radical, you risk introducing a root that does not satisfy the original equation. The rule is non-negotiable: after solving, check each candidate in the original, unsquared equation. Discard any that fail. For nested radicals, the squaring step happens multiple times, so the risk is higher.

Also: each radical has a domain requirement — the radicand must be \geq 0 for even-index roots. List those constraints up front and intersect them with your candidate answers.

A common trap: forgetting the substitution works both ways

In Example 1, step 3, we had \sqrt{x + 12} = 16 - x. A tempting lazy shortcut is to "square directly" and forget the constraint 16 - x \geq 0. If x > 16, the right side is negative and the equation has no solution even if the squared version does. This is where extraneous roots sneak in. Substitution keeps the structure visible and makes the constraint hard to miss.

The compressed reflex

See a radical inside a radical → let u be the innermost piece → rewrite in u → solve the outer equation → back-substitute and solve the remaining simpler equation → check solutions against original domain. Five moves, no panic, no guessing.

Related: Roots and Radicals · How to Handle Nested Radicals Like √(3 + 2√2) · See √(a + b√c)? Try to Denest as √x + √y · Compare Surds by Squaring Both Sides