Differentiating Composite Functions- Complete Guide
What Is a Composite Function?
A composite function is one function nested inside another. If you have f(g(x)), that's a composite. The function g(x) gets evaluated first, then f acts on that result.
You see these everywhere in calculus. They're also called "functions of functions." The notation is simple:
(f ∘ g)(x) = f(g(x))
That's it. One function eats the output of another.
The Chain Rule: Your Only Real Tool
When you need to differentiate a composite function, there's one rule that matters: the chain rule.
If y = f(g(x)), then:
dy/dx = f'(g(x)) · g'(x)
Read it as: derivative of the outside function evaluated at the inside, times the derivative of the inside function.
That's the whole rule. Everything else is just applying it correctly.
Why the Chain Rule Works
Think of it as measuring two rates of change stacked on top of each other. The inside function changes at rate g'(x). Then the outside function responds to those changes at rate f'(g(x)). Multiply them together and you get the total rate of change.
Step-by-Step: How to Actually Do It
Here's the process that actually works:
- Identify the outer function — what's being applied last?
- Identify the inner function — what's being fed into the outer?
- Differentiate the outer function — treat the inner as your variable
- Differentiate the inner function — standard derivative
- Multiply them together
Let's do a real example.
Example 1: Basic Composite
Find the derivative of y = (3x + 1)⁵
Outer function: u⁵ where u = 3x + 1
Inner function: 3x + 1
Step 1: Derivative of outer = 5u⁴
Step 2: Derivative of inner = 3
Multiply: dy/dx = 5(3x + 1)⁴ · 3 = 15(3x + 1)⁴
Done.
Example 2: Trig Composite
Find the derivative of y = sin(4x²)
Outer function: sin(u) where u = 4x²
Inner function: 4x²
Step 1: Derivative of outer = cos(u)
Step 2: Derivative of inner = 8x
Multiply: dy/dx = cos(4x²) · 8x = 8x cos(4x²)
Example 3: Three Layers Deep
Find the derivative of y = e^(sin(x²))
This has three layers. You apply the chain rule twice.
Layer 1 (outermost): e^u → e^u
Layer 2: sin(v) → cos(v)
Layer 3: x² → 2x
dy/dx = e^(sin(x²)) · cos(x²) · 2x
Each layer gets its own derivative factor.
Common Mistakes That Will Cost You
- Forgetting to multiply by the inner derivative — this is the most common error. The chain rule requires multiplication, not replacement.
- Evaluating the outer derivative at x instead of g(x) — you must substitute the inner function back in before multiplying.
- Dropping parentheses — (2x + 1)³ differentiated incorrectly becomes 3(2x + 1)², not 3(2x + 1)² · 2x. Wait, actually that second part is correct. The mistake is writing 3(2x + 1)² without the factor of 2.
- Confusing product rule with chain rule — if you have f(x) · g(x), that's product rule. If you have f(g(x)), that's chain rule.
Power Rule and Chain Rule: The Connection
When differentiating something like (x² + 3)⁴, some students try to expand it. Don't. That's a waste of time.
Use the chain rule with the power rule combined:
d/dx [uⁿ] = n · u^(n-1) · u'
This is just the power rule applied to the outer function, multiplied by the chain factor.
Comparing Methods
| Function Type | Method | Formula |
|---|---|---|
| Simple power: x⁵ | Power Rule | 5x⁴ |
| Composite power: (g(x))⁵ | Chain Rule | 5(g(x))⁴ · g'(x) |
| Product: f(x) · g(x) | Product Rule | f'g + fg' |
| Quotient: f(x)/g(x) | Quotient Rule | (f'g - fg')/g² |
| Chain of trig: sin(g(x)) | Chain Rule | cos(g(x)) · g'(x) |
When to Use Product Rule vs. Chain Rule
This trips people up constantly.
Chain rule: One function wrapping around another. f(g(x))
Product rule: Two functions multiplied together, not nested. f(x) · g(x)
Example of product rule situation:
y = x² · sin(x)
This is NOT a composite. It's two separate functions multiplied. Use product rule:
dy/dx = 2x · sin(x) + x² · cos(x)
Example of chain rule situation:
y = (sin(x))²
This IS a composite. Write it as sin²(x) if it helps. Use chain rule:
dy/dx = 2 sin(x) · cos(x)
Practical Getting Started
Here's what you do with any differentiation problem involving composites:
Step 1: Scan for parentheses or nested functions. Look for functions inside other functions.
Step 2: Identify the innermost variable expression. This is your u.
Step 3: Work from the outside in. What's applied last? Differentiate that treating u as the variable.
Step 4: Find du/dx — the derivative of your inner expression.
Step 5: Multiply the results from steps 3 and 4.
Step 6: Replace u with the original inner expression.
Practice this with five problems and it'll click. The notation looks confusing at first but the logic is straightforward.
Quick Reference
- d/dx [e^u] = e^u · u'
- d/dx [ln(u)] = u'/u
- d/dx [sin(u)] = cos(u) · u'
- d/dx [cos(u)] = -sin(u) · u'
- d/dx [uⁿ] = n·u^(n-1) · u'
These are all chain rule applications. The u' is the chain factor — the derivative of whatever's inside.