In the basic FTC Part 1, the upper limit of integration is simply $x$. But what if the upper limit is something more complicated, like $x^2$ or $\sin x$? You're no longer differentiating with respect to the upper limit directly — you need the chain rule.
This is like reading a speedometer while driving: if the speedometer reading is $v(t)$, and you want to know how fast the reading changes as you accelerate, you need to consider both the speed itself AND how quickly you're changing it. It's a rate of a rate.
| Property | Value |
|---|---|
| Concept | Fundamental Theorem of Calculus |
| Course | MATH161 (Calculus I) |
| Difficulty | Intermediate |
| Time | ~15 minutes |
If $g(x) = \displaystyle\int_a^{u(x)} f(t)\, dt$, where $u(x)$ is a differentiable function, then:
$$\boxed{g'(x) = f(u(x)) \cdot u'(x)}$$
In Leibniz notation:
$$\frac{d}{dx}\int_a^{u(x)} f(t)\, dt = f(u(x)) \cdot \frac{du}{dx}$$
Think of it as a composition of functions:
┌──────────────┐
x ────► │ u = u(x) │ ────► u
└──────────────┘
│
▼
┌──────────────┐
u ────► │ G(u) = ∫f dt │ ────► G
└──────────────┘
Derivative = f(u(x)) · u'(x)
▲ ▲
│ │
from FTC1 from chain rule
When differentiating $\displaystyle\int_a^{u(x)} f(t)\, dt$:
For the general case $\displaystyle\int_{v(x)}^{u(x)} f(t)\, dt$, split it:
$$\int_{v(x)}^{u(x)} f(t)\, dt = \int_a^{u(x)} f(t)\, dt - \int_a^{v(x)} f(t)\, dt$$
Then differentiate each piece:
$$\frac{d}{dx}\int_{v(x)}^{u(x)} f(t)\, dt = f(u(x)) \cdot u'(x) - f(v(x)) \cdot v'(x)$$
Find $\displaystyle\frac{d}{dx}\int_1^{x^2} \cos(t)\, dt$.
Find $h'(x)$ if $h(x) = \displaystyle\int_0^{\sin x} e^{t^2}\, dt$.
Find $\displaystyle\frac{d}{dx}\int_{x^3}^{1} \frac{1}{1+t^4}\, dt$.
Differentiate $g(x) = \displaystyle\int_{\sqrt{x}}^{x^2} \ln(1 + t)\, dt$.
Let $F(x) = \displaystyle\int_\pi^{x^2} \frac{\cos t}{t}\, dt$.
Find the equation of the tangent line to the curve $y = F(x)$ at the point where $x = \sqrt{\pi}$.
The Odometer Analogy: Imagine $\int_a^{u(x)} f(t)\, dt$ as reading an odometer. If $u(x)$ tells you "how far along the road you are" and $f$ is "the scenery at each point," then:
So the total rate of scenery change = (scenery at current position) × (speed of travel).
| Mistake | Correction |
|---|---|
| Forgetting the $u'(x)$ factor | Always multiply by the derivative of the upper limit |
| Sign error when lower limit has $x$ | Flip limits first, then remember the negative sign |
| Evaluating $f$ at $x$ instead of $u(x)$ | Substitute the entire upper limit into $f$ |
Looking back:
Looking ahead:
Real-world connections:
| Previous | Up | Next |
|---|---|---|
| FTC Part 1 | Skills Index | FTC Part 2 |
Last updated: 2026-01-22