Parametric, Polar, and Vector Functions — AP Calculus BC
1. Parametric Derivatives and Tangent Lines ★★☆☆☆ ⏱ 4 min
Parametric curves define $x$ and $y$ as separate functions of an independent parameter $t$ (usually time for motion problems): $x = x(t)$, $y = y(t)$. This framework lets you model curves that do not pass the vertical line test, like circles.
A common exam point of confusion is the second parametric derivative $\frac{d^2y}{dx^2}$. It is *not* the ratio of the second derivatives of $y$ and $x$ with respect to $t$. Instead, you differentiate the first derivative $\frac{dy}{dx}$ with respect to $t$, then divide by $\frac{dx}{dt}$:
\frac{d^2y}{dx^2} = \frac{\frac{d}{dt}\left(\frac{dy}{dx}\right)}{\frac{dx}{dt}}
Horizontal tangents occur where $\frac{dy}{dt} = 0$ and $\frac{dx}{dt} \neq 0$, while vertical tangents occur where $\frac{dx}{dt} = 0$ and $\frac{dy}{dt} \neq 0$.
2. Arc Length of Parametric Curves ★★☆☆☆ ⏱ 3 min
Arc length is the total distance traveled along a parametric curve over an interval of $t$, not the straight-line distance between the start and end points. It is derived by substituting parametric derivatives into the Cartesian arc length formula.
L = \int_{t_1}^{t_2} \sqrt{\left(\frac{dx}{dt}\right)^2 + \left(\frac{dy}{dt}\right)^2} dt
3. Polar Curves: Area and Intersections ★★★☆☆ ⏱ 4 min
Polar coordinates represent points as $(r, \theta)$, where $r$ is the radial distance from the origin, and $\theta$ is the angle from the positive x-axis. Conversion to Cartesian coordinates uses $x = r\cos\theta$, $y = r\sin\theta$, and $r^2 = x^2 + y^2$.
For the area between two polar curves, the formula becomes $A = \frac{1}{2}\int_\alpha^\beta (r_{outer}^2 - r_{inner}^2) d\theta$, where $r_{outer}$ is the curve further from the origin over the interval. A key quirk of polar coordinates is that single points can have multiple representations: the origin can be written as $(0, \theta)$ for any $\theta$, and negative $r$ corresponds to the point opposite the given angle.
4. Vector-Valued Functions: Velocity and Acceleration ★★☆☆☆ ⏱ 3 min
Vector-valued functions represent the position of an object in 2D space as a vector with parametric components: $\vec{r}(t) = \langle x(t), y(t) \rangle$. All calculus operations are performed component-wise — you never mix $x$ and $y$ terms during differentiation or integration.
- **Velocity**: First derivative of position, a vector quantity: $\vec{v}(t) = \vec{r}'(t) = \langle x'(t), y'(t) \rangle$
- **Speed**: Magnitude of velocity, a scalar quantity: $|\vec{v}(t)| = \sqrt{(x'(t))^2 + (y'(t))^2}$
- **Acceleration**: Second derivative of position, a vector quantity: $\vec{a}(t) = \vec{v}'(t) = \vec{r}''(t) = \langle x''(t), y''(t) \rangle$
- **Total Distance Traveled**: Integral of speed over time, identical to parametric arc length: $D = \int_a^b |\vec{v}(t)| dt$
- **Displacement**: Net change in position, a vector quantity: $\vec{r}(b) - \vec{r}(a)$
5. Concept Check ★★★☆☆ ⏱ 2 min
Common Pitfalls
Why: Students incorrectly extend the first derivative ratio rule to the second derivative
Why: Students mix up polar area and Cartesian area formula conventions
Why: Polar points have multiple representations, and the origin can be represented as $(0, \theta)$ for any $\theta$, so it does not always appear when solving for equal $r$ values
Why: Students confuse the vector nature of velocity and acceleration with the scalar magnitude speed
Why: Students treat arc length like a standard definite integral that can be negative, but arc length is always a positive quantity