Parametric equations let you describe curves by defining and separately as functions of an independent parameter, usually . This approach is especially useful when a curve can't be written as a single equation, or when you need to track how a point moves along a path over time. You'll see parametric equations used to model projectile motion, orbital paths, and any situation where position changes with time.
Parametric Equations and Their Graphs
Plotting parametric equation points
A parametric equation is actually a pair of equations that define the and coordinates of a point using an independent parameter :
- gives the x-coordinate at a given value of
- gives the y-coordinate at that same value of
Together, each value of produces a single point on the coordinate plane. As changes, the point traces out a curve.
How to plot a parametric curve:
- Choose a range of values (for example, ).
- Substitute each value into both and to get coordinate pairs.
- Plot the resulting points on the Cartesian plane.
- Connect the points smoothly in order of increasing . The order matters because it shows the direction the curve is traced.
For example, take , . Plugging in gives the point . Plugging in gives . Plugging in gives . These points fall on a straight line, which makes sense because both and are linear in .
For a circle, try , with from to . At you get ; at you get ; at you get . The curve traces a circle of radius 3, and the direction is counterclockwise.
_and_y(t)_in_College_Algebra%22-CNX_Precalc_Figure_08_07_241.jpg)
Shape analysis of parametric curves
Once you've plotted a few points, you'll want to understand the overall shape without plotting every single value. Here's how to analyze a parametric curve:
Examine each function separately:
- Find the domain and range of and . If both are bounded (like sine and cosine), the curve stays in a finite region.
- Check for periodicity. If both and are periodic with the same period, the curve is closed (it loops back to where it started).
Look at the relationship between the two functions:
- Can you eliminate to get a Cartesian equation? For example, with and , squaring and adding gives , confirming it's a circle.
- Check whether the curve is open (extends indefinitely) or closed (forms a loop).
Track direction and behavior:
- As increases, which way does the curve move? This is called the orientation of the curve.
- As approaches very large or very small values, does the curve approach an asymptote, spiral outward, or do something else?
Common parametric curve types to recognize:
| Curve | Parametric Form | Key Feature |
|---|---|---|
| Line | , | Straight; extends infinitely in both directions |
| Circle | , | Closed loop; radius |
| Ellipse | , | Closed loop; stretches horizontally, vertically |
| Cycloid | , | Arch-shaped; traces a point on a rolling circle |
| For the ellipse, and are the semi-major and semi-minor axes. When , you just get a circle. The cycloid is trickier: imagine a point on the rim of a wheel rolling along a flat surface. That point traces out a series of arches, and the parametric equations above describe exactly that path. |
_and_y(t)_in_College_Algebra%22-CNX_Precalc_Figure_08_07_004.jpg)
Real-world applications of parametric equations
Parametric equations are natural for modeling motion because the parameter usually represents time.
Projectile motion is the classic example. An object launched at angle with initial velocity follows:
Here is the acceleration due to gravity (about ). The -equation tracks horizontal distance (constant speed, no air resistance), while the -equation tracks height (gravity pulls the object down over time). You can't easily write this path as without first eliminating , which is why parametric form is so convenient.
Circular and orbital motion also fits naturally. A Ferris wheel with radius 20 feet and center 30 feet off the ground can be modeled as:
The shifts the entire circle up so the lowest point is 10 feet above the ground, not underground. Planetary orbits work similarly but use ellipses instead of circles.
Spirals appear when the "radius" grows with time. The equations , produce a spiral that winds outward because the factor of in front makes the distance from the origin increase as grows.
Alternative Coordinate Systems and Functions
Parametric equations aren't the only way to describe curves beyond . A few related tools you should be aware of:
- Polar coordinates describe a point by its distance from the origin () and angle from the positive x-axis (), rather than by . Curves like spirals and roses are often simpler in polar form.
- Vector-valued functions package the parametric equations into a single vector: . This notation is especially useful when you extend to three dimensions.
- Phase planes graph one variable against another (rather than against time) to visualize how a system evolves. You'll encounter these more in differential equations and dynamical systems courses.