Andromeda
Note

Parametric Equations

Definition

Parametric equations describe a curve by expressing both the xx and yy coordinates as functions of a third variable, called the parameter (usually tt). This allows for the representation of curves that are not functions in the Cartesian sense (e.g., loops or vertical lines).

  • How to read: “The variable x is equal to the function f evaluated at t; and the variable y is equal to the function g evaluated at t.”
  • Meaning: The curve is traced over time (or angle)—decoupling horizontal and vertical motion from a single y=f(x)y = f(x) constraint.

Why It Matters

The world does not move in y=f(x)y = f(x) lines. Most natural and engineered motions—from the orbit of a satellite to the path of a fly—involve loops, vertical segments, and self-intersections that are mathematically impossible to describe with a single Cartesian function. Parametric equations are the solution to this “functionality crisis,” allowing us to decouple horizontal and vertical motion. Without them, robotics, ballistics, and animation would be restricted to primitive, non-looping paths.

Core Concepts

  • Definition: x=f(t)x = f(t) and y=g(t)y = g(t) for tt in some interval.
    • How to read: “The variable x is equal to the function f of t and the variable y is equal to the function g of t.”
    • Meaning: Both coordinates are functions of a parameter tt—the curve is a path traced as tt varies.
  • Parametric Differentiation: The slope of the curve is dydx=dy/dtdx/dt\frac{dy}{dx} = \frac{dy/dt}{dx/dt}, provided dx/dt0dx/dt \neq 0.
    • How to read: “The derivative of y with respect to x is equal to the derivative of y with respect to t divided by the derivative of x with respect to t, provided the derivative of x with respect to t is not zero.”
    • Meaning / when to use: Chain rule for parametric curves—tangent slope from velocity components.
  • Second Derivative: d2ydx2=ddt(dydx)dx/dt\frac{d^2y}{dx^2} = \frac{\frac{d}{dt}(\frac{dy}{dx})}{dx/dt}.
    • How to read: “The second derivative of y with respect to x is equal to the derivative with respect to t of the first derivative of y with respect to x, all divided by the derivative of x with respect to t.”
    • Meaning: Curvature/concavity of the parametric path—differentiate slope with respect to tt, then normalize.
  • Arc Length: The distance traveled along the curve from t=at=a to t=bt=b is L=ab(dxdt)2+(dydt)2dtL = \int_{a}^{b} \sqrt{(\frac{dx}{dt})^2 + (\frac{dy}{dt})^2} dt.
    • How to read: “The arc length L is equal to the integral from a to b of the square root of the quantity the derivative of x with respect to t squared plus the quantity the derivative of y with respect to t squared, integrated with respect to t.”
    • Meaning: Integrate speed v(t)||\mathbf{v}(t)|| to get total path length.

Connected Concepts