πŸ“ Calculus BC
Self-Study Notes & Quiz β€” 20 Essential Problems
⚠️ Tricky Spots ✏️ Write-in Space 🎯 AP Exam Focus
Progress:
0 / 20
Q1 Limits β˜… Easy
L'HΓ΄pital β†’ only when you get 0/0 or ∞/∞ !
πŸ“Ž Quick Example:
\(\lim_{x \to 0} \dfrac{\sin x}{x} = 1\) β€” memorize this!
What is \(\displaystyle\lim_{x \to 0} \dfrac{1 - \cos x}{x^2}\) ?
πŸ“ Explanation
Apply L'HΓ΄pital's Rule (0/0 form): differentiate top and bottom.
\(\lim_{x\to 0}\dfrac{\sin x}{2x} = \dfrac{1}{2}\lim_{x\to 0}\dfrac{\sin x}{x} = \dfrac{1}{2}(1) = \boxed{\dfrac{1}{2}}\)
Trick: Also works via Taylor series β€” \(1-\cos x \approx \frac{x^2}{2}\) near 0.
Q2 Continuity β˜…β˜… Tricky
Continuity = Limit EXISTS + equals f(c) + f(c) defined
For \(f(x) = \begin{cases} \dfrac{x^2 - 4}{x - 2} & x \neq 2 \\ k & x = 2 \end{cases}\), what value of \(k\) makes \(f\) continuous at \(x = 2\)?
πŸ“ Explanation
Factor: \(\dfrac{x^2-4}{x-2} = \dfrac{(x-2)(x+2)}{x-2} = x+2\)
So \(\lim_{x\to 2}(x+2) = 4\). For continuity, \(k = 4\). βœ“
Q3 Chain Rule β˜… Easy
Chain Rule β†’ "Outer' Γ— Inner'"
πŸ“Ž Quick Example:
\(\dfrac{d}{dx}[\sin(x^2)] = \cos(x^2)\cdot 2x\)
Find \(\dfrac{d}{dx}\left[e^{\sin x}\right]\).
πŸ“ Explanation
Outer function: \(e^u\), derivative = \(e^u\). Inner function: \(u = \sin x\), \(u'=\cos x\).
Answer: \(e^{\sin x} \cdot \cos x\). βœ“
Q4 Implicit Differentiation β˜…β˜… Tricky
Implicit β†’ treat y as function of x, slap dy/dx after differentiating y
If \(x^2 + y^2 = 25\), find \(\dfrac{dy}{dx}\).
πŸ“ Explanation
Differentiate both sides: \(2x + 2y\dfrac{dy}{dx} = 0\)
Solve: \(\dfrac{dy}{dx} = -\dfrac{2x}{2y} = -\dfrac{x}{y}\) βœ“
Q5 Related Rates β˜…β˜… Medium
Related Rates β†’ differentiate equation with respect to TIME (t)
πŸ“Ž Setup Tip:
Draw a diagram. Label what's changing. Write equation. Differentiate w.r.t. \(t\).
A ladder 10 ft long leans against a wall. The bottom slides away at 2 ft/sec. How fast is the top sliding down when the bottom is 6 ft from the wall?
πŸ“ Explanation
\(x^2+y^2=100\). At \(x=6\): \(y=8\).
Differentiate: \(2x\dfrac{dx}{dt}+2y\dfrac{dy}{dt}=0\)
\(2(6)(2)+2(8)\dfrac{dy}{dt}=0 \Rightarrow \dfrac{dy}{dt}=-\dfrac{3}{2}\) ft/sec βœ“
Q6 MVT β˜…β˜… Tricky
MVT β†’ "Secant slope = Tangent slope somewhere inside"
\(f(x) = x^3\) on \([0, 3]\). By the Mean Value Theorem, at what value of \(c\) does \(f'(c)\) equal the average rate of change?
πŸ“ Explanation
Average rate = \(\dfrac{f(3)-f(0)}{3-0}=\dfrac{27}{3}=9\)
\(f'(c)=3c^2=9 \Rightarrow c^2=3 \Rightarrow c=\sqrt{3}\) βœ“ (only positive value in (0,3))
Q7 Concavity β˜…β˜… Medium
f'' > 0 β†’ Concave UP (cup β˜•) | f'' < 0 β†’ Concave DOWN (frown πŸ™)
If \(f(x) = x^4 - 4x^2\), on which interval is \(f\) concave up?
πŸ“ Explanation
\(f'=4x^3-8x\), \(f''=12x^2-8\)
\(f''>0\) when \(x^2>\dfrac{2}{3}\), i.e. \(|x|>\dfrac{\sqrt{6}}{3}\)
So concave up on \(\left(-\infty,-\dfrac{\sqrt{6}}{3}\right)\cup\left(\dfrac{\sqrt{6}}{3},\infty\right)\) βœ“
Q8 U-Substitution β˜… Easy
u-sub β†’ "Let u = inside, find du, swap everything"
πŸ“Ž Quick Example:
\(\int 2x\cos(x^2)\,dx\): let \(u=x^2\), \(du=2x\,dx\) β†’ \(\int\cos u\,du = \sin u + C\)
Evaluate \(\displaystyle\int x\sqrt{x^2+1}\,dx\).
πŸ“ Explanation
Let \(u = x^2+1\), \(du=2x\,dx\), so \(x\,dx=\dfrac{du}{2}\)
\(\int\sqrt{u}\cdot\dfrac{du}{2} = \dfrac{1}{2}\cdot\dfrac{2}{3}u^{3/2}+C = \dfrac{1}{3}(x^2+1)^{3/2}+C\) βœ“
Q9 Integration by Parts β˜…β˜… Medium
IBP β†’ LIATE (Log, Inverse trig, Algebraic, Trig, Exponential) β€” pick u first!
Evaluate \(\displaystyle\int x e^x\,dx\).
πŸ“ Explanation
Let \(u=x\), \(dv=e^x dx\). Then \(du=dx\), \(v=e^x\).
\(\int xe^x\,dx = xe^x - \int e^x\,dx = xe^x - e^x + C = e^x(x-1)+C\) βœ“
Q10 FTC β˜…β˜… Tricky
FTC Part 1 β†’ d/dx ∫f(t)dt = f(x) Β· (chain rule if upper limit is not just x!)
If \(F(x) = \displaystyle\int_1^{x^2} \sin(t)\,dt\), find \(F'(x)\).
πŸ“ Explanation
FTC Part 1 with chain rule: \(F'(x) = \sin(x^2)\cdot\dfrac{d}{dx}(x^2) = \sin(x^2)\cdot 2x\) βœ“
The chain rule multiplier \(2x\) is the most commonly forgotten step!
Q11 Separable ODE β˜… Easy
Separable β†’ "y's to one side, x's to the other, then integrate both sides"
Solve \(\dfrac{dy}{dx} = \dfrac{x}{y}\) with \(y(0) = 3\).
πŸ“ Explanation
\(y\,dy = x\,dx \Rightarrow \dfrac{y^2}{2} = \dfrac{x^2}{2}+C\)
\(y(0)=3\): \(\dfrac{9}{2}=C\), so \(y^2 = x^2+9 \Rightarrow y=\sqrt{x^2+9}\) βœ“
Q12 Euler's Method β˜…β˜… Medium
Euler β†’ y_new = y_old + f(x,y)Β·Ξ”x (always approximate, never exact!)
Given \(\dfrac{dy}{dx}=x+y\), \(y(0)=1\), use Euler's method with step \(\Delta x = 0.1\) to estimate \(y(0.1)\).
πŸ“ Explanation
At \((0,1)\): slope = \(0+1=1\)
\(y(0.1)\approx 1 + 1\cdot(0.1) = 1.1\) βœ“
Q13 Convergence Tests β˜…β˜… Medium
Ratio Test β†’ L = lim|a_(n+1)/a_n|: L<1 converge, L>1 diverge, L=1 inconclusive
Does \(\displaystyle\sum_{n=1}^{\infty} \dfrac{n!}{n^n}\) converge or diverge? Use Ratio Test!
πŸ“ Explanation
\(\dfrac{a_{n+1}}{a_n}=\dfrac{(n+1)!\cdot n^n}{(n+1)^{n+1}\cdot n!}=\dfrac{n^n}{(n+1)^n}=\left(\dfrac{n}{n+1}\right)^n\to\dfrac{1}{e}\)
Since \(L=\dfrac{1}{e}<1\), the series converges βœ“
Q14 Taylor Series β˜…β˜… Tricky
e^x series β†’ \(\sum \frac{x^n}{n!}\) β€” memorize this and substitute!
Which of the following is the Maclaurin series for \(e^{-x^2}\)?
πŸ“ Explanation
Start with \(e^u = \sum\dfrac{u^n}{n!}\). Substitute \(u=-x^2\):
\(e^{-x^2}=\sum\dfrac{(-x^2)^n}{n!}=\sum\dfrac{(-1)^n x^{2n}}{n!}\) βœ“
Q15 Interval of Convergence β˜…β˜… Tricky
IoC β†’ Ratio Test for radius, then CHECK ENDPOINTS separately!
Find the interval of convergence of \(\displaystyle\sum_{n=1}^{\infty}\dfrac{(x-2)^n}{n}\).
πŸ“ Explanation
Ratio test gives \(|x-2|<1\), so center=2, radius=1: open interval \((1,3)\).
Check endpoints:
β€’ \(x=3\): \(\sum\dfrac{1}{n}\) β†’ harmonic series β†’ diverges
β€’ \(x=1\): \(\sum\dfrac{(-1)^n}{n}\) β†’ alternating harmonic β†’ converges
Interval: \([1,3)\) βœ“
Q16 Parametric Derivatives β˜…β˜… Medium
dy/dx parametric β†’ (dy/dt) Γ· (dx/dt)
Given \(x=t^2\), \(y=t^3\), find \(\dfrac{dy}{dx}\) at \(t=2\).
πŸ“ Explanation
\(\dfrac{dx}{dt}=2t\), \(\dfrac{dy}{dt}=3t^2\)
\(\dfrac{dy}{dx}=\dfrac{3t^2}{2t}=\dfrac{3t}{2}\)
At \(t=2\): \(\dfrac{dy}{dx}=\dfrac{3(2)}{2}=3\) βœ“
Q17 Arc Length β˜…β˜… Tricky
Arc length (param) β†’ \(\int\sqrt{(dx/dt)^2+(dy/dt)^2}\,dt\)
The arc length of the curve \(x=3t\), \(y=4t\) from \(t=0\) to \(t=1\) is:
πŸ“ Explanation
\(\dfrac{dx}{dt}=3\), \(\dfrac{dy}{dt}=4\)
\(L=\int_0^1\sqrt{9+16}\,dt=\int_0^1 5\,dt = 5\) βœ“
(This is just a straight line β€” 3-4-5 triangle!)
Q18 Area Between Curves β˜… Easy
Area = ∫(TOP βˆ’ BOTTOM)dx β€” always subtract the lower function!
Find the area between \(y = x^2\) and \(y = x\) from \(x=0\) to \(x=1\).
πŸ“ Explanation
On \([0,1]\): \(x \geq x^2\), so area = \(\int_0^1(x-x^2)\,dx\)
\(=\left[\dfrac{x^2}{2}-\dfrac{x^3}{3}\right]_0^1 = \dfrac{1}{2}-\dfrac{1}{3} = \dfrac{1}{6}\) βœ“
Q19 Disk/Washer Method β˜…β˜… Medium
Disk β†’ Ο€βˆ«[R(x)]Β²dx | Washer β†’ Ο€βˆ«([R(x)]Β²βˆ’[r(x)]Β²)dx
The volume of the solid formed by rotating \(y = \sqrt{x}\) from \(x=0\) to \(x=4\) about the \(x\)-axis is:
πŸ“ Explanation
\(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 8 = 8\pi\) βœ“
Q20 Improper Integrals β˜…β˜… Tricky
Improper β†’ replace ∞ with limit variable b, then let bβ†’βˆž
Does \(\displaystyle\int_1^{\infty}\dfrac{1}{x^2}\,dx\) converge? If so, find the value.
πŸ“ Explanation
\(\int_1^b x^{-2}\,dx = \left[-\dfrac{1}{x}\right]_1^b = -\dfrac{1}{b}+1\)
As \(b\to\infty\): \(-\dfrac{1}{b}\to 0\), so the integral = \(1\). Converges! βœ“
p-series: \(\int_1^\infty x^{-p}dx\) converges iff \(p>1\)