How do you differentiate $\sqrt{x^2 + 1}$? The power rule doesn't directly apply because the exponent sits on top of an expression, not just $x$. This function has layers: a square root wrapped around $(x^2 + 1)$.
Think of it like peeling an onion. The outer layer is the square root. The inner layer is $x^2 + 1$. The Chain Rule tells us how to differentiate functions that are built from layers: one function applied to another.
The key insight: if the inner part changes, it affects how fast the outer part changes. If $u$ changes twice as fast as $x$, and $y$ changes three times as fast as $u$, then $y$ changes six times as fast as $x$. Rates of change multiply.
| Property | Value |
|---|---|
| Concept | Differentiation Rules |
| Chapter | Ch 3, §4 |
| Difficulty | Intermediate |
| Time | ~20 minutes |
If $F(x) = f(g(x))$ is a composite function where $g$ is differentiable at $x$ and $f$ is differentiable at $g(x)$, then:
$$\boxed{F'(x) = f'(g(x)) \cdot g'(x)}$$
In words: Derivative of outer (evaluated at inner) times derivative of inner.
If $y = f(u)$ and $u = g(x)$ are both differentiable, then:
$$\frac{dy}{dx} = \frac{dy}{du} \cdot \frac{du}{dx}$$
This notation is memorable because the $du$ terms appear to "cancel," though this is just a helpful mnemonic, not rigorous mathematics.
Function: √(x² + 1)
Outer function: √(□) = (□)^(1/2) ← What operation is applied last?
Inner function: x² + 1 ← What's inside the outer operation?
The outer function is applied last when you evaluate the expression. If you were computing $\sqrt{x^2 + 1}$ for a specific $x$:
Chain Rule
y = f(g(x)) → dy/dx = f'(g(x)) · g'(x)
↓ ↓ ↓
┌───────┐ ┌─────────┐ ┌─────┐
│ outer │ │ d(outer)│ × │d(in)│
│ f │ │ at │ │ │
│───────│ │ inner │ │ │
│ inner │ └─────────┘ └─────┘
│ g(x) │
└───────┘
| Composite Form | Derivative |
|---|---|
| $\sin(g(x))$ | $\cos(g(x)) \cdot g'(x)$ |
| $\cos(g(x))$ | $-\sin(g(x)) \cdot g'(x)$ |
| $\tan(g(x))$ | $\sec^2(g(x)) \cdot g'(x)$ |
| $e^{g(x)}$ | $e^{g(x)} \cdot g'(x)$ |
| $\ln(g(x))$ | $\frac{1}{g(x)} \cdot g'(x)$ |
| $[g(x)]^n$ | $n[g(x)]^{n-1} \cdot g'(x)$ |
For each composite function, identify the inner function $g(x)$ and outer function $f(u)$.
Find the derivative of $f(x) = \cos(4x)$.
Differentiate $y = \sin(x^2 - 3x + 1)$.
A particle moves so that its position at time $t$ is $s(t) = \sin(\theta(t))$, where $\theta(t)$ gives the angle (in radians) as a function of time.
Use the chain rule to prove: if $f$ is an even function (meaning $f(-x) = f(x)$ for all $x$), then $f'$ is an odd function (meaning $f'(-x) = -f'(x)$).
If $y = f(u)$ and $u = g(x)$, and at a particular point:
How fast is $y$ changing with respect to $x$ at that point?
The Gear Train:
Think of the chain rule like connected gears. If the small gear (inner function) turns twice as fast as the input shaft, and the large gear (outer function) turns three times as fast as the small gear, then the output shaft turns $2 \times 3 = 6$ times as fast as the input. Rates multiply through the chain.
Looking back:
Looking ahead:
| Previous | Up | Next |
|---|---|---|
| Product & Quotient Rules | Skills Index | Generalized Power Rule |
Last updated: 2026-01-22