Parametric Equations

Parametric to rectangular conversion
Parametric equations define a curve using two separate equations, and , where is the parameter that links them together. Instead of writing directly as a function of , you let both coordinates depend on a third variable. This is especially useful for curves that fail the vertical line test or for describing motion over time.
Converting parametric โ rectangular means eliminating the parameter so you're left with a single equation in and :
- Pick whichever parametric equation is easier to solve for
- Solve that equation for
- Substitute the result into the other equation
For example, given and :
- Solve for : since , you get (assuming )
- Substitute into :
For parametric equations involving trig, use identities instead of solving for directly. If and , square both and add them: . That gives you the rectangular equation of a circle.
Converting rectangular โ parametric means introducing a parameter . The simplest approach: let , then rewrite in terms of . For , you'd write and . Note that parametric representations aren't unique; you could also use and for the same parabola.

Modeling with parametric equations
Parametric equations are a natural fit for modeling 2D motion, where and give the horizontal and vertical position at time .
Projectile motion is the classic example. An object launched with initial speed at angle from the ground follows:
Here is the acceleration due to gravity (approximately or ). The horizontal component has constant velocity, while the vertical component is affected by gravity, which is why these are easier to handle as two separate equations rather than one rectangular equation.
Modeling curves and shapes is another major use. A cycloid, the path traced by a point on the rim of a rolling circle of radius , has the parametric form:
This curve would be extremely difficult to express as a single rectangular equation, which is exactly why parametric form is so valuable.

Calculus of parametric curves
Note: Depending on your course, this section may be preview material for AP Calculus BC. Check with your instructor on how much depth you need here.
The derivatives of and with respect to give you velocity components:
- is the horizontal velocity
- is the vertical velocity
To find the slope of the tangent line to a parametric curve at a given point, use the chain rule:
This works as long as at that point.
The arc length of a parametric curve from to is:
Think of this as adding up tiny distances along the curve, where each small piece has a horizontal component and a vertical component .
Geometric interpretation of parameters
What actually represents depends on the context:
- In motion problems, is usually time
- In shape problems, might represent an angle (like for circles and ellipses) or a proportion along the curve
The domain of controls which portion of the curve you trace out. For the unit circle , :
- traces exactly one full revolution
- traces only the upper semicircle
- traces the circle twice
Changing constants in the parametric equations affects the curve's size and shape. In the cycloid equations, increasing produces a larger cycloid. For an ellipse written as , , the values of and control the width and height.
Advanced parametric representations
Polar-to-parametric conversion: Any polar equation can be written parametrically by using as the parameter:
This is useful when you need to apply rectangular-coordinate techniques (like finding tangent lines) to polar curves.
Parametric surfaces extend the idea to three dimensions. Instead of one parameter, you use two ( and ) to define a surface with three equations: , , and . This is a concept you'll encounter more in multivariable calculus, but it's worth knowing that parametric thinking scales beyond 2D.