Parametric equations let you describe curves by defining and separately as functions of a third variable (usually ). Instead of writing directly in terms of , you let both coordinates depend on a parameter, which makes it much easier to represent motion, direction, and curves that loop or cross themselves.
This approach is especially useful for modeling projectile motion, orbits, and other situations where position changes over time. It also shows up in computer graphics and animation. For a College Algebra course, the focus is on understanding what parametric equations are, how to graph them, and how to convert between parametric and rectangular form.
Parametric Equations
Parametric vs rectangular equations
A rectangular equation relates and directly, like or . You get one equation connecting the two variables.
A parametric equation introduces a third variable, the parameter , and defines each coordinate as its own function:
As changes, the pair traces out a curve. The parameter often represents time, but it can also represent an angle or any other quantity.
Why bother? Some curves are awkward or impossible to write as a single rectangular equation. A circle like isn't a function of (it fails the vertical line test), but parametrically it's clean: , . Parametric form also naturally encodes direction, telling you which way the curve is traced as increases.

Graphing parametric curves
The most reliable way to graph a parametric curve by hand:
- Build a table. Choose several values of (often evenly spaced). Plug each into the equations for and to get coordinate pairs.
- Plot the points. Place each pair on the coordinate plane.
- Connect in order. Draw the curve by connecting points in the order of increasing . Add arrows to show the direction of travel.
For example, given and :
Plotting these gives a parabola opening upward, traced from left to right as increases.
A few things to watch for:
- Direction: The arrows matter. For , , the circle is traced counterclockwise.
- Self-intersections: The curve can cross itself if different values produce the same point.
- Restricted domain: Sometimes is limited to an interval, so you only get part of the curve.

Eliminating the parameter
Converting from parametric to rectangular form is called eliminating the parameter. This helps you recognize the shape of the curve.
-
Solve one equation for . Pick whichever equation is simpler. For , you get .
-
Substitute into the other equation. Replace in the equation: .
-
Simplify. Now you have a rectangular equation you can analyze directly.
For trig parametrics, use identities instead of solving for . If and , you know . So:
which simplifies to , a circle of radius 3.
When you eliminate the parameter, you lose the direction and timing information. The rectangular equation tells you the shape but not how or when the curve is traced.
Applications of parametric equations
Parametric equations are a natural fit for any situation where position changes over time.
Projectile motion is the classic example. An object launched at speed and angle from ground level has:
(using for gravity). At any time , you can find the object's exact position. You can also find when it hits the ground by setting and solving for .
Other applications include:
- Planetary orbits: Elliptical paths are cleanly described with parametric trig equations
- Lissajous figures: Curves formed by , , which model oscillations
- Computer graphics: Curves in animation software and CAD programs are built from parametric equations (Bรฉzier curves, for instance)
Motion analysis with parametrics
If your course covers derivatives with parametric equations, here's how motion analysis works.
Velocity comes from the first derivatives:
- Horizontal velocity:
- Vertical velocity:
- Speed (how fast, regardless of direction):
Acceleration comes from the second derivatives:
To analyze motion at a specific moment, plug that value into the position, velocity, and acceleration expressions. For instance, if and , then at : position is , horizontal velocity is , and vertical velocity is .
The slope of the tangent line to a parametric curve is:
This is useful for finding the direction of motion at any point along the curve.
Note: Arc length, tangential/normal acceleration components, and vector-valued functions are typically covered in calculus courses rather than College Algebra. If your course includes them, check with your instructor on the expected depth.