AP Calculus AB – Unit 4 Review
Unit 4 of the AP Calculus AB curriculum is the bridge between the foundational concepts of differentiation and the powerful applications of integration. Day to day, mastering this unit not only secures a solid score on the AP exam but also builds intuition for higher‑level calculus courses. It covers the Fundamental Theorem of Calculus, techniques of integration, area and volume problems, and an introduction to differential equations. This review breaks down each topic, provides step‑by‑step problem‑solving strategies, and answers common questions that often appear on the exam.
Introduction: Why Unit 4 Matters
The Fundamental Theorem of Calculus (FTC) links the two central ideas of calculus—derivatives and integrals—showing that they are inverse processes. Think about it: understanding this connection unlocks a toolbox of techniques for evaluating definite integrals, calculating accumulated change, and solving real‑world problems such as area, volume, work, and average value. Worth adding, Unit 4 introduces basic differential equations, a skill that appears in many AP exam free‑response prompts. Grasping these concepts early gives you a strategic edge: you can translate a word problem into an integral quickly and verify your answer using the FTC.
Worth pausing on this one.
1. The Fundamental Theorem of Calculus
1.1 FTC Part 1 – Differentiation of an Integral
If
[ F(x)=\int_{a}^{x} f(t),dt, ]
then
[ F'(x)=f(x). ]
Key ideas to remember
-
The variable of integration (t) is a dummy variable; it can be replaced by any symbol Worth knowing..
-
The upper limit must be a function of x for the chain rule to apply.
Example:[ G(x)=\int_{2}^{\sin x} \sqrt{1+t^{3}},dt \quad\Rightarrow\quad G'(x)=\sqrt{1+(\sin x)^{3}}\cdot\cos x. ]
1.2 FTC Part 2 – Evaluating Definite Integrals
If F is any antiderivative of f, then
[ \int_{a}^{b} f(x),dx = F(b)-F(a). ]
Common pitfalls
-
Forgetting to add the constant C when finding an antiderivative, but remembering C cancels in the difference.
-
Mixing up the limits when the lower limit is larger than the upper limit; the integral becomes negative:
[ \int_{5}^{2} f(x),dx = -\int_{2}^{5} f(x),dx. ]
Quick Check
Problem: Compute (\displaystyle \frac{d}{dx}\Bigl(\int_{0}^{x^{2}} \ln(1+t),dt\Bigr)).
Solution: Apply FTC Part 1 with the chain rule Worth keeping that in mind..
[ \frac{d}{dx}= \ln\bigl(1+x^{2}\bigr)\cdot 2x. ]
2. Techniques of Integration
2.1 Basic Antiderivatives
| Function (f(x)) | Antiderivative (\int f(x),dx) |
|---|---|
| (x^{n}) ( (n\neq -1) ) | (\frac{x^{n+1}}{n+1}+C) |
| (\frac{1}{x}) | (\ln |
| (e^{x}) | (e^{x}+C) |
| (\sin x) | (-\cos x+ C) |
| (\cos x) | (\sin x+ C) |
Memorizing these core antiderivatives speeds up the free‑response section, where you often need to integrate a function after setting up an area or volume integral Simple, but easy to overlook. Nothing fancy..
2.2 Substitution (u‑sub)
When the integrand contains a composite function, let
[ u = g(x) \quad\text{and}\quad du = g'(x),dx. ]
Replace the matching pieces, integrate with respect to u, then revert to x.
Example:
[ \int 3x^{2}\cos(x^{3}+1),dx. ]
Set (u = x^{3}+1); then (du = 3x^{2}dx). The integral becomes
[ \int \cos(u),du = \sin(u)+C = \sin(x^{3}+1)+C. ]
2.3 Integration by Parts (optional for AB)
Although rarely required on the AB exam, a few FRQs involve (\int x e^{x},dx). Recall
[ \int u,dv = uv - \int v,du. ]
Choose (u) as the algebraic factor and (dv) as the exponential or trigonometric factor.
2.4 Trigonometric Identities
For integrals like (\int \sin^{2}x ,dx) or (\int \cos^{2}x ,dx), use power‑reduction formulas:
[ \sin^{2}x = \frac{1-\cos 2x}{2}, \qquad \cos^{2}x = \frac{1+\cos 2x}{2}. ]
3. Area, Net Area, and Average Value
3.1 Area Between Curves
-
Identify the top and bottom functions on the interval ([a,b]) Which is the point..
-
Set up the integral
[ A = \int_{a}^{b} \bigl[,\text{top}(x)-\text{bottom}(x),\bigr],dx. ]
-
If the curves intersect inside ([a,b]), split the interval at the intersection points and sum the separate areas Easy to understand, harder to ignore..
Tip: Sketching the region before integrating prevents sign errors.
3.2 Net Area
When the integrand crosses the x‑axis, the definite integral computes net area (area above the axis minus area below). For total geometric area, split the integral at each zero of the function and take absolute values That's the part that actually makes a difference. That's the whole idea..
3.3 Average Value of a Function
The average value of (f) on ([a,b]) is
[ \overline{f}= \frac{1}{b-a}\int_{a}^{b} f(x),dx. ]
This concept often appears in FRQs that ask for “the average velocity” or “average rate of change” over a time interval That alone is useful..
4. Volumes of Solids
4.1 Disk Method
When rotating a region about the x‑axis (or y‑axis) and the cross‑sections are disks,
[ V = \pi\int_{a}^{b} [R(x)]^{2},dx, ]
where (R(x)) is the distance from the axis of rotation to the outer edge of the region Easy to understand, harder to ignore..
4.2 Washer Method
If there is a hole (inner radius (r(x))), use
[ V = \pi\int_{a}^{b}\bigl[R(x)^{2} - r(x)^{2}\bigr],dx. ]
Common mistake: Forgetting to square the radii before subtracting; the error inflates the volume dramatically.
4.3 Shell Method (optional for AB)
When rotating around a vertical line and the region is easier to describe in terms of x, shells are efficient:
[ V = 2\pi\int_{a}^{b} (\text{radius})(\text{height}),dx. ]
The radius is the distance from the axis of rotation, and the height is the function difference That alone is useful..
5. Introduction to Differential Equations
5.1 Separable Equations
A first‑order differential equation is separable if it can be written as
[ \frac{dy}{dx}=g(x)h(y). ]
Separate variables and integrate:
[ \int \frac{1}{h(y)},dy = \int g(x),dx + C. ]
Example:
[ \frac{dy}{dx}=3x^{2}y \quad\Rightarrow\quad \frac{1}{y},dy = 3x^{2},dx. ]
Integrate:
[ \ln|y| = x^{3}+C \quad\Rightarrow\quad y = Ce^{x^{3}}. ]
5.2 Logistic Growth (AB level)
The logistic model
[ \frac{dy}{dt}=ky\Bigl(1-\frac{y}{L}\Bigr) ]
describes populations with a carrying capacity L. Solving yields
[ y(t)=\frac{L}{1+Ce^{-kt}}. ]
AP FRQs may ask you to interpret the parameters (k) and (L) rather than solve the equation fully Still holds up..
5.3 Slope Fields
A slope field visualizes the direction field of a differential equation. But while you won’t be required to draw one on the exam, being able to recognize the behavior (e. g., approaching an equilibrium) can help you justify answers in the interpretation part of a free‑response question.
6. Sample Free‑Response Walkthrough
Prompt (adapted from a 2019 FRQ)
A particle moves along the x‑axis with velocity (v(t)=t^{2}-4t+3) for (0\le t\le 5).
That's why > (c) The particle’s position at (t=0) is (x(0)=2). > (a) Find the particle’s displacement on ([0,5]).
Now, find its position function (x(t)). Now, > (b) Determine the total distance traveled. > (d) Sketch a rough graph of the position function and identify any local extrema.
Solution Sketch
(a) Displacement – integrate velocity:
[ \int_{0}^{5} (t^{2}-4t+3),dt = \Bigl[\tfrac{t^{3}}{3}-2t^{2}+3t\Bigr]_{0}^{5}= \frac{125}{3}-50+15 = \frac{20}{3}. ]
(b) Total distance – find zeros of (v(t)):
(t^{2}-4t+3=(t-1)(t-3)=0) → (t=1,3). Split the interval:
[ \text{Distance}= \int_{0}^{1}|v|,dt+\int_{1}^{3}|v|,dt+\int_{3}^{5}|v|,dt. ]
Evaluate each piece (signs alternate):
[ \int_{0}^{1} (-(t^{2}-4t+3)),dt = \frac{2}{3},\quad \int_{1}^{3} (t^{2}-4t+3),dt = \frac{4}{3},\quad \int_{3}^{5} (t^{2}-4t+3),dt = \frac{14}{3}. ]
Total distance = (\frac{2+4+14}{3}= \frac{20}{3}) plus the absolute value of the middle segment (which is negative), giving (\frac{28}{3}) units Not complicated — just consistent. That's the whole idea..
(c) Position function – integrate velocity and add constant (x(0)=2):
[ x(t)=\int (t^{2}-4t+3),dt + C = \tfrac{t^{3}}{3}-2t^{2}+3t + C. ]
Plug (t=0): (x(0)=C=2). Hence
[ x(t)=\tfrac{t^{3}}{3}-2t^{2}+3t+2. ]
(d) Sketch & extrema – differentiate (x(t)) to get velocity again; critical points at (t=1) and (t=3). Using the sign chart of (v(t)), (t=1) is a local maximum, (t=3) a local minimum. Plot the cubic with intercept at ((0,2)) and the identified extrema.
Key take‑away: The FRQ tests FTC Part 2 (integration for displacement), net vs. total distance, and the relationship between a function and its derivative Not complicated — just consistent. No workaround needed..
7. Frequently Asked Questions (FAQ)
Q1. When should I use the washer method instead of the disk method?
Use washers whenever the region being rotated has a hole—i.e., there are two distinct radii from the axis of rotation to the region (inner and outer).
Q2. How do I know if a differential equation on the exam is separable?
Look for a product of a function of (x) and a function of (y). If you can rewrite it as (\frac{dy}{dx}=g(x)h(y)), it’s separable.
Q3. Can I estimate an integral without finding an antiderivative?
Yes. The AP exam sometimes allows a Riemann‑sum or trapezoidal estimate, especially when the function is given as a table or graph. Show your work clearly.
Q4. What is the fastest way to compute the average value of a function on a symmetric interval?
If the function is odd, the average value is zero; if it’s even, you can double the integral from 0 to (a) and divide by (2a). Recognizing symmetry saves time.
Q5. Do I need to include the constant (C) in a definite integral?
No. In a definite integral the constant cancels when you evaluate (F(b)-F(a)). On the flip side, always write (+C) when finding an indefinite antiderivative for completeness.
8. Study Strategies for Unit 4
- Flashcard the core antiderivatives – a quick recall of (\int x^{n}dx), (\int \frac{1}{x}dx), (\int e^{x}dx), and trig integrals reduces mental load during the exam.
- Practice the FTC in both directions – differentiate an integral and integrate a derivative. Write a few problems where the limits are functions of (x) to master the chain rule.
- Set up at least three area/volume problems per day – vary the axis of rotation and the method (disk vs. washer). Sketch each region; the visual cue prevents set‑up errors.
- Solve separable differential equations – start with simple forms like (\frac{dy}{dx}=ky) and progress to logistic models. underline the interpretation of constants, as the FRQ often asks “what does (k) represent?”
- Timed free‑response drills – allocate 15 minutes per FRQ, focusing on clear organization: (i) state the theorem you’re using, (ii) write the integral, (iii) evaluate, (iv) interpret. Scoring rubrics reward this structure.
9. Conclusion
Unit 4 of AP Calculus AB consolidates the inverse relationship between differentiation and integration, equips you with practical techniques for area, volume, and average value problems, and introduces the foundations of differential equations. Remember to connect each calculation to its real‑world meaning—whether it’s displacement, total distance, or population growth—because the exam values not just correct algebra but also clear conceptual insight. In practice, by internalizing the Fundamental Theorem of Calculus, mastering substitution, and practicing the geometric applications repeatedly, you’ll approach the AP exam with confidence. With diligent practice and the strategies outlined above, you’re well on your way to achieving a top score in AP Calculus AB.