Self-Study Quiz

Core Problems for
AP Calculus BC

20 high-priority questions across all major topics. Choose the best answer — instant feedback included.

Limits & Continuity Derivatives Integration Series & Sequences Parametric & Polar
Limits & Continuity
Foundation of calculus — often appears in tricky indeterminate forms
Quick Memory Point
L'HÔPITAL = 0/0 or ∞/∞ only
Keywords: indeterminate → differentiate top & bottom separately.
For ∞ · 0 or ∞ − ∞, always rewrite as fraction first.
Q 01 Easy Limits
L'HÔPITAL RULE
Example first
\(\lim_{x \to 0} \dfrac{\sin x}{x} = 1\) — a classic limit students memorize. Apply L'Hôpital: \(\dfrac{\cos x}{1} \to 1\). ✓
Evaluate the limit: \[\lim_{x \to 0} \frac{\tan(3x)}{5x}\]
Solution
This is 0/0 indeterminate form — apply L'Hôpital's Rule (differentiate top and bottom separately).
  • Numerator derivative: \(\dfrac{d}{dx}[\tan(3x)] = 3\sec^2(3x)\)
  • Denominator derivative: \(\dfrac{d}{dx}[5x] = 5\)
  • Evaluate at \(x=0\): \(\dfrac{3\sec^2(0)}{5} = \dfrac{3 \cdot 1}{5} = \dfrac{3}{5}\)
Key insight: Any limit of the form \(\lim_{x\to 0}\dfrac{\tan(kx)}{mx} = \dfrac{k}{m}\).
Q 02 Medium Continuity
CONTINUITY = LIMIT = VALUE
Example first
For \(f\) to be continuous at \(x=a\): (1) \(f(a)\) exists, (2) \(\lim_{x \to a}f(x)\) exists, (3) they are equal.
Let \(f(x) = \begin{cases} x^2 + 2 & x < 3 \\ kx - 1 & x \geq 3 \end{cases}\). For what value of \(k\) is \(f\) continuous at \(x = 3\)?
Solution
Set left-hand limit = right-hand limit at \(x=3\):
  • Left: \(\lim_{x \to 3^-}(x^2+2) = 9+2 = 11\)
  • Right: \(f(3) = k(3)-1 = 3k-1\)
  • Set equal: \(3k - 1 = 11 \Rightarrow 3k = 12 \Rightarrow k = 4\)
Trap: Students forget to check that \(f(3)\) also equals 11 — here \(f(3) = 4(3)-1 = 11\). ✓
Derivatives
Chain rule, implicit differentiation, and related rates are heavily tested
Quick Memory Point
CHAIN RULE: "outside · inside' "
f(g(x))' = f'(g(x)) · g'(x). Always multiply by derivative of inner function.
Implicit: treat y as y(x), so dy/dx appears when differentiating y-terms.
Q 03 Easy Chain Rule
CHAIN: OUTSIDE · INSIDE'
Example first
If \(h(x) = \sin(x^2)\), then \(h'(x) = \cos(x^2) \cdot 2x\). The outer derivative \(\cos(\cdot)\) keeps its inside unchanged; then multiply by \(2x\).
Find \(\dfrac{d}{dx}\left[e^{3x^2 - 1}\right]\).
Solution
Apply chain rule: outer function is \(e^u\), inner is \(u = 3x^2-1\).
  • Outer derivative: \(e^u\) (stays the same)
  • Inner derivative: \(u' = 6x\)
  • Result: \(e^{3x^2-1} \cdot 6x = 6xe^{3x^2-1}\)
Common mistake: Writing just \(e^{3x^2-1}\) — forgetting the inner derivative \(6x\)!
Q 04 Medium Implicit Diff.
IMPLICIT: EVERY y-TERM GETS dy/dx
Example first
Given \(x^2 + y^2 = 25\): differentiate both sides → \(2x + 2y\dfrac{dy}{dx} = 0\), so \(\dfrac{dy}{dx} = -\dfrac{x}{y}\).
Given \(x^3 + y^3 = 6xy\), find \(\dfrac{dy}{dx}\).
Solution
Differentiate both sides with respect to \(x\):
  • Left: \(3x^2 + 3y^2\dfrac{dy}{dx}\)
  • Right (product rule on \(6xy\)): \(6y + 6x\dfrac{dy}{dx}\)
  • Collect \(\dfrac{dy}{dx}\): \(3y^2\dfrac{dy}{dx} - 6x\dfrac{dy}{dx} = 6y - 3x^2\)
  • Factor: \(\dfrac{dy}{dx}(3y^2 - 6x) = 6y - 3x^2\)
  • Result: \(\dfrac{dy}{dx} = \dfrac{6y - 3x^2}{3y^2 - 6x} = \dfrac{2y - x^2}{y^2 - 2x}\)
Key: Product rule on the right side is the tricky part!
Q 05 Medium MVT
MVT: SLOPE OF SECANT = SLOPE OF TANGENT
Example first
Mean Value Theorem: If \(f\) is continuous on \([a,b]\) and differentiable on \((a,b)\), then there exists \(c\) such that \(f'(c) = \dfrac{f(b)-f(a)}{b-a}\).
Let \(f(x) = x^3 - 3x\) on \([0,2]\). By the Mean Value Theorem, find the value of \(c\) in \((0,2)\) where the instantaneous rate of change equals the average rate of change.
Solution
  • Average rate: \(\dfrac{f(2)-f(0)}{2-0} = \dfrac{(8-6)-0}{2} = \dfrac{2}{2} = 1\)
  • Set \(f'(c) = 1\): \(f'(x) = 3x^2-3\), so \(3c^2-3=1\)
  • \(3c^2 = 4 \Rightarrow c^2 = \dfrac{4}{3} \Rightarrow c = \dfrac{2}{\sqrt{3}} = \dfrac{2\sqrt{3}}{3}\)
  • Check: \(\dfrac{2\sqrt{3}}{3} \approx 1.15 \in (0,2)\) ✓
Integration
u-substitution, integration by parts, and FTC are essential BC topics
Quick Memory Point
IBP: "LIATE" picks u
Logarithm · Inverse trig · Algebraic · Trig · Exponential — pick \(u\) from left side.
Formula: ∫u dv = uv − ∫v du
Q 06 Easy u-sub
u-SUB: SPOT THE INNER FUNCTION
Example first
\(\int 2x \cdot (x^2+1)^3\,dx\): Let \(u = x^2+1\), \(du=2x\,dx\). Then \(\int u^3\,du = \dfrac{u^4}{4}+C = \dfrac{(x^2+1)^4}{4}+C\).
Evaluate: \(\displaystyle\int \frac{6x^2}{(x^3+4)^2}\,dx\)
Solution
  • Let \(u = x^3+4\), then \(du = 3x^2\,dx\), so \(6x^2\,dx = 2\,du\)
  • Rewrite: \(\displaystyle\int \dfrac{2}{u^2}\,du = 2\int u^{-2}\,du\)
  • \(= 2 \cdot \dfrac{u^{-1}}{-1} + C = -\dfrac{2}{u} + C\)
  • Back-substitute: \(-\dfrac{2}{x^3+4}+C\)
Q 07 Medium IBP
LIATE: LOG ALWAYS u
Example first
\(\int x e^x\,dx\): \(u=x\), \(dv=e^x\,dx\) → \(du=dx\), \(v=e^x\). Answer: \(xe^x - e^x + C\).
Evaluate: \(\displaystyle\int x\ln x\,dx\)
Solution
LIATE says: \(\ln x\) is a Logarithm → choose \(u = \ln x\).
  • \(u = \ln x \Rightarrow du = \dfrac{1}{x}dx\)
  • \(dv = x\,dx \Rightarrow v = \dfrac{x^2}{2}\)
  • \(\int x\ln x\,dx = \dfrac{x^2}{2}\ln x - \int \dfrac{x^2}{2} \cdot \dfrac{1}{x}\,dx\)
  • \(= \dfrac{x^2}{2}\ln x - \int \dfrac{x}{2}\,dx = \dfrac{x^2}{2}\ln x - \dfrac{x^2}{4} + C\)
Q 08 Medium FTC Part 2
FTC II: d/dx ∫ₐˣ f(t)dt = f(x)
Example first
\(\dfrac{d}{dx}\!\int_1^x \cos t\,dt = \cos x\). If upper limit is \(g(x)\), multiply by \(g'(x)\) via chain rule.
Find \(\dfrac{d}{dx}\!\displaystyle\int_0^{x^3} \sqrt{1+t^2}\,dt\).
Solution
FTC Part 2 + Chain Rule (upper limit is \(x^3\), not just \(x\)):
  • Apply FTC: result is \(\sqrt{1+(x^3)^2}\) … then multiply by \(\dfrac{d}{dx}[x^3] = 3x^2\)
  • Answer: \(3x^2\sqrt{1+x^6}\)
Trap: Forgetting to multiply by the derivative of the upper limit!
Q 09 Medium Area / Volume
DISK: π∫[f(x)]² dx
Example first
Volume by disk around x-axis: \(V = \pi\int_a^b [f(x)]^2\,dx\). Around y-axis, integrate in terms of \(y\).
The region bounded by \(y = \sqrt{x}\), \(y=0\), and \(x=4\) is revolved about the \(x\)-axis. Find the volume of the solid generated.
Solution
  • Disk method: \(V = \pi\int_0^4 (\sqrt{x})^2\,dx = \pi\int_0^4 x\,dx\)
  • \(= \pi\left[\dfrac{x^2}{2}\right]_0^4 = \pi \cdot \dfrac{16}{2} = 8\pi\)
Note: \((\sqrt{x})^2 = x\) simplifies nicely. Don't overcomplicate!
Differential Equations
Separable equations and slope fields appear every year
Quick Memory Point
SEPARATE → INTEGRATE → SOLVE for y
Move all y-terms to left, all x-terms to right, then integrate both sides.
Don't forget +C — then use initial condition to find it.
Q 10 Easy Sep. Variables
SEPARATE: y-SIDE LEFT, x-SIDE RIGHT
Example first
\(\dfrac{dy}{dx} = xy\): separate → \(\dfrac{dy}{y} = x\,dx\) → \(\ln|y| = \dfrac{x^2}{2}+C\) → \(y = Ae^{x^2/2}\).
Solve the differential equation \(\dfrac{dy}{dx} = \dfrac{x}{y}\) with initial condition \(y(0) = 3\).
Solution
  • Separate: \(y\,dy = x\,dx\)
  • Integrate: \(\dfrac{y^2}{2} = \dfrac{x^2}{2} + C\) → \(y^2 = x^2 + K\)
  • Apply \(y(0)=3\): \(9 = 0 + K \Rightarrow K = 9\)
  • Answer: \(y = \sqrt{x^2+9}\) (positive root since \(y(0)=3 > 0\))
Series & Sequences
The most BC-specific topic — convergence tests and Taylor series
Quick Memory Point
CONVERGENCE TESTS — Pick the right one
Geometric: \(|r|<1\) → converges. p-series: \(p>1\) → converges.
Ratio test: L<1 converge, L>1 diverge, L=1 inconclusive.
Alternating: decreasing → \(0\) = converges.
Q 11 Easy Geometric Series
GEO SUM: a/(1−r) when |r|<1
Example first
\(\sum_{n=0}^{\infty} \left(\dfrac{1}{3}\right)^n = \dfrac{1}{1-1/3} = \dfrac{3}{2}\). First term \(a=1\), ratio \(r=\dfrac{1}{3}\).
Find the sum of the series \(\displaystyle\sum_{n=0}^{\infty} \frac{4}{3^n}\).
Solution
This is a geometric series with first term \(a=4\), common ratio \(r=\dfrac{1}{3}\).
  • Since \(|r| = \dfrac{1}{3} < 1\), it converges.
  • Sum \(= \dfrac{a}{1-r} = \dfrac{4}{1-\frac{1}{3}} = \dfrac{4}{\frac{2}{3}} = 4 \cdot \dfrac{3}{2} = 6\)
Q 12 Medium Ratio Test
RATIO TEST: L = lim |a_{n+1}/a_n|
Example first
For \(\sum \dfrac{n!}{2^n}\): \(L = \lim \dfrac{(n+1)!}{2^{n+1}} \cdot \dfrac{2^n}{n!} = \lim \dfrac{n+1}{2} = \infty \gt 1\) → diverges.
Determine whether \(\displaystyle\sum_{n=1}^{\infty} \frac{n^2}{3^n}\) converges or diverges using the Ratio Test.
Solution
Compute \(L = \lim_{n \to \infty}\left|\dfrac{a_{n+1}}{a_n}\right|\):
  • \(\dfrac{a_{n+1}}{a_n} = \dfrac{(n+1)^2}{3^{n+1}} \cdot \dfrac{3^n}{n^2} = \dfrac{(n+1)^2}{3n^2}\)
  • \(L = \lim_{n \to \infty} \dfrac{(n+1)^2}{3n^2} = \dfrac{1}{3} < 1\)
  • Since \(L < 1\), the series converges by Ratio Test.
Q 13 Medium Taylor Series
TAYLOR: eˣ = Σ xⁿ/n! for all x
Example first
Known series: \(e^x = \sum_{n=0}^{\infty}\dfrac{x^n}{n!}\). Substitute \(x \to -x^2\) to get \(e^{-x^2} = \sum_{n=0}^{\infty}\dfrac{(-1)^n x^{2n}}{n!}\).
The Maclaurin series for \(\sin x\) is \(\sin x = x - \dfrac{x^3}{3!} + \dfrac{x^5}{5!} - \cdots\). Use this to find the Maclaurin series for \(\sin(2x)\) up to the \(x^5\) term.
Solution
Simply substitute \(2x\) in place of \(x\) in the known series:
  • \(\sin(2x) = (2x) - \dfrac{(2x)^3}{3!} + \dfrac{(2x)^5}{5!} - \cdots\)
  • \(= 2x - \dfrac{8x^3}{6} + \dfrac{32x^5}{120} - \cdots\)
  • \(= 2x - \dfrac{4x^3}{3} + \dfrac{4x^5}{15} - \cdots\)
Key trick: Never re-derive — just substitute into known series!
Q 14 Medium Interval of Conv.
POWER SERIES: RATIO TEST → RADIUS → CHECK ENDPOINTS
Example first
For \(\sum \dfrac{x^n}{n}\): ratio test gives \(|x| < 1\). Then check \(x=1\) (harmonic → diverges) and \(x=-1\) (alternating → converges). IOC: \([-1, 1)\).
Find the interval of convergence of the power series \(\displaystyle\sum_{n=1}^{\infty} \frac{(x-2)^n}{n \cdot 4^n}\).
Solution
  • Ratio test: \(L = \lim\left|\dfrac{(x-2)^{n+1}}{(n+1)\cdot 4^{n+1}} \cdot \dfrac{n \cdot 4^n}{(x-2)^n}\right| = \dfrac{|x-2|}{4}\)
  • Converges when \(\dfrac{|x-2|}{4} < 1 \Rightarrow |x-2| < 4 \Rightarrow -2 < x < 6\)
  • \(x = -2\): \(\sum \dfrac{(-4)^n}{n \cdot 4^n} = \sum \dfrac{(-1)^n}{n}\) → Alternating, converges ✓
  • \(x = 6\): \(\sum \dfrac{4^n}{n \cdot 4^n} = \sum \dfrac{1}{n}\) → Harmonic, diverges ✗
  • IOC: \([-2, 6)\)
Parametric & Polar
BC-exclusive: arc length, polar area, and parametric derivatives
Quick Memory Point
PARAMETRIC dy/dx = (dy/dt)/(dx/dt)
dy/dx = divide derivatives. d²y/dx² = \(\dfrac{d}{dt}(dy/dx) \div (dx/dt)\).
Polar area: A = ½∫r² dθ. Arc length: L = ∫√(r² + (dr/dθ)²) dθ.
Q 15 Easy Parametric Deriv.
dy/dx = (dy/dt) ÷ (dx/dt)
Example first
If \(x = t^2\), \(y = t^3\): \(\dfrac{dy}{dx} = \dfrac{3t^2}{2t} = \dfrac{3t}{2}\). At \(t=1\): slope \(= \dfrac{3}{2}\).
A curve is defined parametrically by \(x = t^2 + 1\), \(y = 2t^3 - 3t\). Find \(\dfrac{dy}{dx}\) at \(t = 2\).
Solution
  • \(\dfrac{dx}{dt} = 2t\), \(\quad \dfrac{dy}{dt} = 6t^2-3\)
  • \(\dfrac{dy}{dx} = \dfrac{6t^2-3}{2t}\)
  • At \(t=2\): \(\dfrac{6(4)-3}{2(2)} = \dfrac{24-3}{4} = \dfrac{21}{4}\)
Q 16 Medium Polar Area
POLAR AREA = ½∫r² dθ
Example first
Area enclosed by \(r = 2\cos\theta\), \(0 \leq \theta \leq \pi\): \(A = \tfrac{1}{2}\int_0^{\pi}4\cos^2\theta\,d\theta = \pi\).
Find the area enclosed by one petal of \(r = 3\sin(2\theta)\).
Solution
One petal of \(r = 3\sin(2\theta)\) exists from \(\theta = 0\) to \(\theta = \dfrac{\pi}{2}\):
  • \(A = \dfrac{1}{2}\int_0^{\pi/2} [3\sin(2\theta)]^2\,d\theta = \dfrac{9}{2}\int_0^{\pi/2}\sin^2(2\theta)\,d\theta\)
  • Use identity: \(\sin^2(2\theta) = \dfrac{1-\cos(4\theta)}{2}\)
  • \(= \dfrac{9}{2} \cdot \dfrac{1}{2}\int_0^{\pi/2}(1-\cos(4\theta))\,d\theta = \dfrac{9}{4}\left[\theta - \dfrac{\sin(4\theta)}{4}\right]_0^{\pi/2}\)
  • \(= \dfrac{9}{4} \cdot \dfrac{\pi}{2} = \dfrac{9\pi}{8}\)
Mixed Challenge Problems
Problems that combine multiple topics — most commonly missed on the exam
Q 17 Medium Improper Integral
IMPROPER: REPLACE ∞ WITH LIMIT
Example first
\(\int_1^{\infty}\dfrac{1}{x^2}\,dx = \lim_{b\to\infty}\left[-\dfrac{1}{x}\right]_1^b = \lim_{b\to\infty}\left(-\dfrac{1}{b}+1\right) = 1\).
Determine whether \(\displaystyle\int_1^{\infty} \frac{1}{x^{1/2}}\,dx\) converges or diverges.
Solution
  • \(\int_1^{\infty} x^{-1/2}\,dx = \lim_{b\to\infty}\left[2x^{1/2}\right]_1^b = \lim_{b\to\infty}(2\sqrt{b}-2)\)
  • As \(b \to \infty\), \(2\sqrt{b} \to \infty\)
  • The integral diverges.
p-series connection: \(\int_1^{\infty}\dfrac{1}{x^p}\,dx\) converges only if \(p > 1\). Here \(p = \tfrac{1}{2} < 1\) → diverges.
Q 18 Medium Lagrange Error
LAGRANGE: |error| ≤ M·|x−a|ⁿ⁺¹/(n+1)!
Example first
Lagrange bound: \(|R_n(x)| \leq \dfrac{M|x-a|^{n+1}}{(n+1)!}\) where \(M\) is the maximum of \(|f^{(n+1)}|\) on the interval.
The 3rd-degree Taylor polynomial for \(\cos x\) centered at \(0\) is \(P_3(x) = 1 - \dfrac{x^2}{2}\). What is the Lagrange error bound when approximating \(\cos(0.1)\) using \(P_3\)?
Solution
The next term is degree 4. For \(\cos x\), all derivatives are bounded by 1 in absolute value.
  • Error bound: \(|R_3| \leq \dfrac{M \cdot |x|^4}{4!} = \dfrac{1 \cdot (0.1)^4}{24}\)
  • \(= \dfrac{0.0001}{24} \approx 4.17 \times 10^{-6}\)
Note: \(\cos x\) Taylor polynomial centered at 0 only has even-degree terms, so \(P_3 = P_2 = 1 - \dfrac{x^2}{2!}\). The next term is \(\dfrac{x^4}{4!}\).
Q 19 Medium Arc Length
ARC LENGTH: ∫√(1+(dy/dx)²) dx
Example first
Arc length of \(y=f(x)\) from \(a\) to \(b\): \(L = \int_a^b \sqrt{1+[f'(x)]^2}\,dx\). For parametric: \(L = \int\sqrt{(dx/dt)^2+(dy/dt)^2}\,dt\).
The arc length of a curve given parametrically by \(x = \cos t\), \(y = \sin t\) for \(0 \leq t \leq \dfrac{\pi}{2}\) is:
Solution
  • \(\dfrac{dx}{dt} = -\sin t\), \(\quad \dfrac{dy}{dt} = \cos t\)
  • \(L = \int_0^{\pi/2}\sqrt{(-\sin t)^2 + (\cos t)^2}\,dt = \int_0^{\pi/2}\sqrt{\sin^2 t + \cos^2 t}\,dt\)
  • \(= \int_0^{\pi/2} 1\,dt = \dfrac{\pi}{2}\)
Geometric check: This is a quarter circle of radius 1, whose arc length is \(\dfrac{1}{4}(2\pi \cdot 1) = \dfrac{\pi}{2}\). ✓
Q 20 Medium Alternating Series
AST: DECREASING TO 0 → CONVERGES
Example first
Alternating Series Test: \(\sum (-1)^n b_n\) converges if (1) \(b_n > 0\), (2) \(b_{n+1} \leq b_n\) (decreasing), (3) \(\lim_{n \to \infty} b_n = 0\).
Which of the following series converges by the Alternating Series Test but not absolutely?
Solution
We need a series that is conditionally convergent — alternating series converges, but the series of absolute values diverges.
  • \(\displaystyle\sum_{n=1}^{\infty} \dfrac{(-1)^n}{n}\): alternating harmonic series
  • Alternating: ✓ (decreasing, \(1/n \to 0\)) → converges by AST
  • Absolute: \(\sum \dfrac{1}{n}\) = harmonic series → diverges
  • Therefore it is conditionally convergent
Key distinction: Absolute convergence ≠ Conditional convergence.
🎉
Quiz Complete!
0/20
Keep going!