Parametric Curves
Parametric curves describe paths in two dimensions by defining and as separate functions of a parameter . Instead of writing as a function of , you let both coordinates depend on , which makes it possible to represent motions and shapes that a single equation can't capture.
With this setup, the standard calculus toolkit extends naturally. You can find slopes, enclosed areas, arc lengths, and surface areas of revolution, all through formulas built around and .
Derivatives of Parametric Curves
The slope of a parametric curve at a point isn't found by differentiating with respect to directly. Instead, you use the chain rule. Since both and depend on , the derivative comes from dividing the two rates:
This works whenever .
Once you have the slope at a specific parameter value , the tangent line equation at the point is:
Finding horizontal and vertical tangent lines:
- Horizontal tangent: Set (the numerator is zero) while confirming . For example, a cycloid has horizontal tangents where .
- Vertical tangent: Set (the denominator is zero) while confirming .
- If both and at the same , you have an indeterminate case and need to investigate further (often using L'Hรดpital's Rule on the ratio).
For the second derivative, which you'll need for concavity and curvature:
Differentiate with respect to first, then divide by . A common mistake is to just compute , which is not the same thing.
Area Within Parametric Curves
To find the area under a parametric curve (between the curve and the -axis), substitute the parametric equations into the standard area integral. The formula is:
This comes from replacing with and with in the integral .
A few things to watch for:
- Direction of tracing matters. The limits and should correspond to the curve being traced in the direction that keeps the enclosed region on the correct side. If the curve traces left to right as increases, you get positive area directly. If it traces right to left, you may need to negate the integral or swap limits.
- Simple closed curves. The formula works cleanly when the curve is traced exactly once. If the parametrization traces the curve multiple times over your interval, you'll overcount the area.
- Signed area. The integral can give a negative value depending on orientation. Take the absolute value if you need the geometric area.

Arc Length of Parametric Curves
The arc length of a parametric curve from to is:
The intuition here is the Pythagorean theorem applied to infinitesimal pieces of the curve. Over a tiny change , the curve moves horizontally and vertically, so the tiny arc length is .
Steps to compute arc length:
- Find and .
- Square each, add them, and simplify the expression under the radical. (Algebraic simplification here can save you a lot of pain in the integration step.)
- Integrate from to .
Many arc length integrals don't simplify to elementary functions, so don't be surprised if a problem asks you to set up the integral without evaluating it, or to use numerical methods.
Surface Area from Parametric Revolution
When you revolve a parametric curve around an axis, the surface area formulas mirror the arc length formula but include a factor for the radius of revolution.
Revolution around the -axis (radius of revolution is ):
Revolution around the -axis (radius of revolution is ):
The structure is the same in both cases: . The only difference is whether or serves as the distance from the axis.
Steps to set up a surface area integral:
- Identify which axis the curve revolves around.
- Write down the appropriate radius function ( for -axis, for -axis). Make sure this quantity is non-negative over the interval.
- Compute and , then form the arc length element .
- Determine the correct limits of integration from the parametrization.
- Assemble and evaluate the integral.

Vector-Valued Functions and Curvature
A parametric curve can be written as a vector-valued function:
This notation is compact and connects directly to the ideas of velocity and acceleration. The derivative gives the tangent (velocity) vector at each point.
Curvature measures how sharply a curve bends at a given point. For a parametric curve, the formula is:
- A straight line has everywhere (no bending).
- A circle of radius has constant curvature . Smaller circles curve more sharply.
The unit normal vector is perpendicular to the tangent vector and points toward the center of curvature (the center of the "best-fit circle" at that point). You find it by first computing the unit tangent vector , then taking .
Applications and Examples
Parametric equations show up whenever position depends on time or another independent variable.
- Projectile motion: A projectile launched at speed and angle has and . The arc length formula gives the total distance along the trajectory, which is longer than the horizontal range.
- Planetary orbits: An elliptical orbit can be parametrized as . The area formula lets you compute the area swept out over a portion of the orbit, connecting to Kepler's second law.
- Cycloids: The path traced by a point on the rim of a rolling circle is . This classic curve has interesting properties: its arc length over one full arch works out to exactly .
General problem-solving approach:
- Write down (or identify) the parametric equations and .
- Determine what the problem asks for: slope, area, arc length, or surface area.
- Choose the corresponding formula.
- Compute the necessary derivatives and .
- Set up the integral with correct limits (check what values of correspond to the portion of the curve you care about).
- Evaluate the integral, simplifying the integrand first when possible.
Some curves have natural connections to polar coordinates. For instance, a spiral in polar form can be converted to parametric form via , and then all the parametric calculus tools apply.