From single variable function to parametric equation
In single-variable calculus, we usually describe a curve by
For example, the exponential function is easy to represent in this form:
A standard single-variable graph: y = e^x
This model is powerful, but it has a limitation: a single can only produce one .
That means many geometric trajectories cannot be represented by one equation , especially curves that loop back or self-intersect.
For example, this figure-eight style trajectory is easy to write parametrically but cannot be written as one single-valued function :
Self-intersection example (parametric curve)
Parametric equations and parametric curves
Precise definition
Instead of defining directly from , we introduce a parameter and define both coordinates as functions of :
The parametric curve is the set (trajectory) of points
as varies in the interval .
How the graph is generated from points
For the curve
we evaluate at sample parameter values from to with step size :
| point | |||
|---|---|---|---|
In the visualization below, the sample points from the table are marked in blue and each one is labeled with its coordinate. The graph is also zoomed in so these sampled points are easier to read.
Point sampling creates the parametric trajectory
Then we connect these sampled points in increasing order of . As sampling gets denser, the plotted polyline approaches the smooth parametric curve.
Elimination of parameters
Sometimes we want an equation that only involves and . The process is called eliminating the parameter.
For the curve
we use the identity
Substituting and gives
So after eliminating , the -relation is the unit circle.
Important note: this algebraic relation gives the geometric set of points, but the parameter interval controls which part of the set is traced and how it is traced.
Example: with different parameter ranges
Ponder this question: what changes when varies over different intervals?
Case 1: from to
x = cos t, y = sin t, t in [0, 2pi]
This traces the full circle exactly once.
Case 2: from to
x = cos t, y = sin t, t in [2pi, 4pi]
This gives the same geometric circle, again traced once.
Case 3: from to
x = cos t, y = sin t, t in [0, pi]
This traces only the upper semicircle.
Summary
- describes many curves, but not all trajectories.
- Parametric equations remove the single-valued restriction.
- A parametric curve is the trajectory traced by as changes.
- Computationally, plotting is: sample values -> compute points -> connect points.
- Eliminating parameters can produce an equation, but parameter ranges still determine how much of the curve is traced.