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 02MediumContinuity
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 03EasyChain 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 04MediumImplicit 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}\)
Key: Product rule on the right side is the tricky part!
Q 05MediumMVT
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\)
Since \(L < 1\), the series converges by Ratio Test.
Q 13MediumTaylor 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:
Key trick: Never re-derive — just substitute into known series!
Q 14MediumInterval 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}\).
p-series connection: \(\int_1^{\infty}\dfrac{1}{x^p}\,dx\) converges only if \(p > 1\). Here \(p = \tfrac{1}{2} < 1\) → diverges.
Q 18MediumLagrange 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.
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 19MediumArc 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: