Calculus AB

AP Calculus AB — Cheatsheet

Formulas, exam-day tips, and key terms on one page.

Formulas & relationships

Existence of a limit
lim(x→a) f(x) = L ⟺ lim(x→a⁻) f(x) = L AND lim(x→a⁺) f(x) = L
Both one-sided limits must exist and be equal. If they disagree, the two-sided limit does not exist.
Squeeze Theorem
If g(x) ≤ f(x) ≤ h(x) near a and lim(x→a) g(x) = lim(x→a) h(x) = L, then lim(x→a) f(x) = L
The classic use: since −x² ≤ x²·sin(1/x) ≤ x² and both bounds → 0, the middle → 0 as well.
A special trig limit
lim(x→0) sin(x)/x = 1
Proved with the Squeeze Theorem. Memorize it; it underlies the derivative of sin(x). Note x must be in radians.
End behavior of a rational function
lim(x→±∞) (aₙxⁿ + … )/(bₘxᵐ + … ) = 0 if n < m; aₙ/bₘ if n = m; ±∞ if n > m
Only the leading terms survive at infinity. Degrees equal ⇒ divide the leading coefficients.
Continuity at a point
f continuous at a ⟺ f(a) defined AND lim(x→a) f(x) exists AND lim(x→a) f(x) = f(a)
All three conditions. The IVT requires this at every point of a closed interval [a, b].
Definition of the derivative
f′(x) = lim(h→0) [f(x + h) − f(x)] / h
Equivalent form at a point: f′(a) = lim(x→a) [f(x) − f(a)]/(x − a). Both compute the tangent slope.
Power rule
d/dx[xⁿ] = n·xⁿ⁻¹
Works for every constant n. Special cases: d/dx[c] = 0 and d/dx[x] = 1.
Linearity of the derivative
d/dx[c·f(x)] = c·f′(x) and d/dx[f(x) ± g(x)] = f′(x) ± g′(x)
Constants pass through; sums and differences split apart. Differentiate a polynomial term by term.
Product rule
d/dx[f·g] = f′·g + f·g′
Derivative of first times second, plus first times derivative of second. Not f′·g′.
Quotient rule
d/dx[f/g] = (f′·g − f·g′) / g²
Low d-high minus high d-low, all over low squared. The order of subtraction is essential.
Chain rule
d/dx[f(g(x))] = f′(g(x)) · g′(x)
Outer derivative (inside untouched) times inner derivative. In Leibniz form, dy/dx = dy/du · du/dx.
Core trig derivatives
d/dx[sin x] = cos x · d/dx[cos x] = −sin x · d/dx[tan x] = sec²x
Also: d/dx[sec x] = sec x·tan x, d/dx[csc x] = −csc x·cot x, d/dx[cot x] = −csc²x.
Chain rule on y-terms
d/dx[yⁿ] = n·yⁿ⁻¹ · (dy/dx)
Treat y as a function of x. Any term containing y produces a dy/dx factor; terms in x alone do not.
Derivative of an inverse function
If g = f⁻¹, then g′(a) = 1 / f′(g(a))
The inverse’s slope at a is the reciprocal of f’s slope at the matching point b = g(a) where f(b) = a.
Key inverse trig derivatives
d/dx[arcsin x] = 1/√(1 − x²) · d/dx[arctan x] = 1/(1 + x²)
And d/dx[arccos x] = −1/√(1 − x²). Chain rule applies for arcsin(u): u′/√(1 − u²).
Second derivative and motion
v(t) = s′(t) · a(t) = s″(t) = v′(t)
Velocity is the first derivative of position; acceleration is the second derivative of position (the derivative of velocity).
Exponential and log derivatives
d/dx[eˣ] = eˣ · d/dx[ln x] = 1/x · d/dx[aˣ] = aˣ·ln a
With the chain rule: d/dx[e^u] = e^u·u′ and d/dx[ln u] = u′/u.
Differentiating a relationship in time
If V = (4/3)πr³, then dV/dt = 4πr² · (dr/dt)
Every variable carries a d/dt. The chain rule links dV/dt to dr/dt through the geometry.
Linear approximation
L(x) = f(a) + f′(a)·(x − a)
The tangent line at x = a. Use it to estimate f(x) for x near a. Concave up ⇒ underestimate; concave down ⇒ overestimate.
L’Hôpital’s Rule
If lim f(x)/g(x) is 0/0 or ∞/∞, then lim f(x)/g(x) = lim f′(x)/g′(x)
Differentiate numerator and denominator separately — not with the quotient rule. Re-check the form after each application.
Motion relationships
v(t) = s′(t) · a(t) = v′(t) · speed = |v(t)|
Speeding up ⇔ v and a share a sign. Direction changes where v = 0 and switches sign.
Mean Value Theorem
f′(c) = [f(b) − f(a)] / (b − a) for some c in (a, b)
Requires f continuous on [a, b] and differentiable on (a, b). The right side is the average rate of change (secant slope).
First Derivative Test
f′ changes + to − at c ⇒ local max; f′ changes − to + at c ⇒ local min
No sign change ⇒ not an extremum. Critical points are where f′ = 0 or f′ is undefined (and c is in the domain).
Concavity and the Second Derivative Test
f″ > 0 ⇒ concave up (local min if f′ = 0); f″ < 0 ⇒ concave down (local max if f′ = 0)
Inflection point where f″ changes sign. If f″(c) = 0 at a critical point, the test is inconclusive.
Optimization strategy
objective Q(x) ← substitute constraint → optimize Q′(x) = 0 → test candidates and endpoints
A closed-interval extremum occurs at a critical point or an endpoint. Always justify which candidate wins.
Riemann sum and the integral
∫[a to b] f(x) dx = lim(n→∞) Σ f(xᵢ*)·Δx, where Δx = (b − a)/n
A left sum takes xᵢ* at left endpoints, a right sum at right endpoints. The limit is the exact net signed area.
Reverse power rule
∫xⁿ dx = xⁿ⁺¹/(n + 1) + C (n ≠ −1)
For n = −1, ∫(1/x) dx = ln|x| + C. Also ∫eˣ dx = eˣ + C and ∫cos x dx = sin x + C.
Fundamental Theorem of Calculus (Part 2)
∫[a to b] f(x) dx = F(b) − F(a), where F′ = f
Find an antiderivative, evaluate at the upper limit minus the lower limit. No + C needed for a definite integral.
U-substitution
∫ f(g(x))·g′(x) dx = ∫ f(u) du, where u = g(x), du = g′(x) dx
For definite integrals, either back-substitute to x, or change the limits: x = a, b become u = g(a), g(b).
Fundamental Theorem of Calculus (Part 1)
d/dx ∫[a to x] f(t) dt = f(x); with a variable limit, d/dx ∫[a to u(x)] f(t) dt = f(u(x))·u′(x)
Differentiating an accumulation function returns the integrand at the top limit, times the derivative of that limit.
Slope at a point
At (x₀, y₀), the segment slope is dy/dx evaluated at (x₀, y₀)
Horizontal segments where dy/dx = 0; steeper segments where |dy/dx| is large. Slope depends only on x ⇒ identical columns.
Separation of variables
dy/dx = g(x)·h(y) → ∫ (1/h(y)) dy = ∫ g(x) dx → solve for y, apply the initial condition
One constant C after integrating. Substitute the initial condition to find C, then solve for y.
Exponential growth/decay model
dy/dt = ky ⟹ y = y₀·e^(kt)
y₀ is the initial amount, k the relative rate. k > 0 grows, k < 0 decays. Half-life and doubling time follow from setting y = y₀/2 or 2y₀.
Solving for a characteristic time
Doubling: 2y₀ = y₀·e^(kt) ⟹ t = (ln 2)/k; Half-life: t = (ln 2)/|k|
The initial amount y₀ always cancels, so these times depend only on the rate constant k.
Area between curves
A = ∫[a to b] (top − bottom) dx or A = ∫[c to d] (right − left) dy
Always the larger function minus the smaller. Limits come from the intersection points of the curves.
Volume methods
Disk: V = π∫[a to b] R² dx · Washer: V = π∫[a to b] (R² − r²) dx · Cross sections: V = ∫[a to b] A(x) dx
Washers subtract the squares of the radii. For cross sections, integrate the area formula of the given shape.
Average value of a function
f_avg = (1/(b − a)) ∫[a to b] f(x) dx
The integral of f divided by the interval length. Different from the average rate of change [f(b) − f(a)]/(b − a).
Motion by integration
displacement = ∫[a to b] v(t) dt · total distance = ∫[a to b] |v(t)| dt · s(t) = s(a) + ∫[a to t] v(τ) dτ
Velocity integrates to displacement; speed |v| integrates to total distance. An initial condition pins down the position.

On the exam

How to get a 5

Key terms

Limit definition of the derivativef'(x) = lim(h→0) [f(x+h) − f(x)]/h.
Power, product, and quotient rulesPower: d/dx[xⁿ] = nxⁿ⁻¹. Product: (fg)' = f'g + fg'. Quotient: (f/g)' = (f'g − fg')/g².
Chain ruled/dx[f(g(x))] = f'(g(x))·g'(x).
Key derivativesd/dx[sin x] = cos x; [cos x] = −sin x; [tan x] = sec²x; [eˣ] = eˣ; [ln x] = 1/x.
Fundamental Theorem of CalculusPart 2: ∫ₐᵇ f dx = F(b) − F(a). Part 1: d/dx ∫ₐˣ f(t)dt = f(x).
Mean Value TheoremIf f is continuous on [a,b] and differentiable on (a,b), some c has f'(c) = [f(b)−f(a)]/(b−a).
Intermediate Value TheoremIf f is continuous on [a,b] and N is between f(a) and f(b), some c in (a,b) has f(c) = N.
Motion relationshipsv = x'; a = v'. Displacement = ∫v dt; total distance = ∫|v| dt. Speeding up when v and a share a sign.
Average value of a functionf_avg = (1/(b−a)) ∫ₐᵇ f(x) dx.
L'Hôpital's RuleIf lim f/g is 0/0 or ∞/∞, then lim f/g = lim f'/g'.
Disk/washer volume (about x-axis)Disk: V = π∫ R² dx. Washer: V = π∫ (R² − r²) dx (outer² − inner²).
Continuity at x = af(a) exists, lim(x→a) f(x) exists, and they are equal.