Chain Rule with Square Root- Differentiation Techniques
What the Chain Rule Actually Is
The chain rule tells you how to differentiate composite functions—functions built by stacking one function inside another. If you have y = f(g(x)), the derivative is y' = f'(g(x)) · g'(x). That's it. No magic, just the product of two derivatives.
Most students grasp this fine until square roots enter the picture. Then everything falls apart because sqrt(x) is secretly x^(1/2), and that exponent changes everything when you apply the chain rule.
Why Square Roots Trip People Up
Three reasons students consistently struggle:
- They forget sqrt(x) = x^(1/2) and treat it as a special case
- They apply the power rule incorrectly when the inner function exists
- They skip simplifying the derivative afterward
You need to see it working before it clicks. Let's go through examples.
The Basic Pattern
When differentiating sqrt(f(x)), treat it as [f(x)]^(1/2). The derivative follows:
d/dx [sqrt(f(x))] = f'(x) / (2 · sqrt(f(x)))
The numerator comes from the outer function's derivative (1/2 times the base to the -1/2 power). The denominator appears because dividing by 2 and multiplying by sqrt(f(x)) gives you f'(x) / (2·sqrt(f(x))).
Example 1: sqrt(3x + 1)
Let f(x) = 3x + 1, so f'(x) = 3
d/dx[sqrt(3x + 1)] = 3 / (2 · sqrt(3x + 1))
Done. That's the derivative. You can leave it like that or rationalize the denominator if your instructor demands it.
Example 2: sqrt(x² + 4x - 5)
Let f(x) = x² + 4x - 5, so f'(x) = 2x + 4
d/dx[sqrt(x² + 4x - 5)] = (2x + 4) / (2 · sqrt(x² + 4x - 5))
Simplify: = (x + 2) / sqrt(x² + 4x - 5)
You can factor out the 2 from the numerator and cancel it with the 2 in the denominator. Always simplify unless told otherwise.
Example 3: 5 · sqrt(2x³ - x)
Here you have a constant multiplied by the square root. Use the constant multiple rule alongside the chain rule.
d/dx[5 · sqrt(2x³ - x)] = 5 · d/dx[sqrt(2x³ - x)]
f(x) = 2x³ - x, so f'(x) = 6x² - 1
= 5 · (6x² - 1) / (2 · sqrt(2x³ - x))
Simplify: = 5(6x² - 1) / (2 · sqrt(2x³ - x))
The 5 stays in the numerator. Don't distribute it into the denominator—that makes things messier.
Example 4: sqrt(sin(x))
Trigonometric functions work the same way.
f(x) = sin(x), so f'(x) = cos(x)
d/dx[sqrt(sin(x))] = cos(x) / (2 · sqrt(sin(x)))
Domain matters here. sqrt(sin(x)) only exists where sin(x) ≥ 0, so your derivative is only valid on intervals where that holds.
Common Mistakes That Cost You Points
| Mistake | What You Did | Correct Approach |
|---|---|---|
| Skipping the chain rule | Derivative of sqrt(x²) = 1/(2sqrt(x²)) | Must multiply by derivative of x²: 2x/(2sqrt(x²)) = x/sqrt(x²) |
| Forgetting the outer coefficient | Derivative of 3sqrt(x) = 1/(2sqrt(x)) | Must include the 3: 3/(2sqrt(x)) |
| Not simplifying | Leaving (4x + 6)/(2sqrt(x² + 3x)) | Simplify to (2x + 3)/sqrt(x² + 3x) |
| Wrong power rule application | d/dx[x^(1/2)] = (1/2)x^(1/2) | d/dx[x^(1/2)] = (1/2)x^(-1/2) |
How to Get It Right Every Time
Follow this sequence without skipping steps:
- Identify the outer function. Ask: what function wraps around everything else? That's your sqrt or power.
- Identify the inner function. What's inside the square root or being raised to a power? That's f(x).
- Find f'(x). Differentiate just the inner function.
- Apply the formula. For sqrt(f(x)), your answer starts as f'(x) divided by 2·sqrt(f(x)).
- Simplify. Cancel common factors. Combine like terms. Make it clean.
Practice this sequence until you don't have to think about it.
Practice Problems
Try these before checking the answers:
- d/dx [sqrt(5x - 2)]
- d/dx [sqrt(x² + 1)³]
- d/dx [2 · sqrt(cos(x))]
- d/dx [sqrt(x) · sqrt(x + 1)]
Problem 1: 5/(2·sqrt(5x - 2))
Problem 2: This requires the chain rule twice—once for the outer cube, once for the sqrt. 3 · sqrt(x² + 1) · (x/sqrt(x² + 1)) = 3x · sqrt(x² + 1)
Problem 3: 2 · cos(x) / (2 · sqrt(cos(x))) = -sqrt(cos(x)) · tan(x)
Problem 4: This is a product, so you need the product rule alongside the chain rule. Don't mix up which rule applies where.
The Bottom Line
Chain rule with square roots is just the power rule with an extra step. Convert sqrt to a fractional exponent, apply the power rule, then multiply by the derivative of the inside. Simplify. That's the entire process.
If you're still struggling, it's not because the concept is hard. It's because you're skipping steps or not simplifying at the end. Fix those two habits and derivatives involving square roots become routine.