Parametric Equations
Parametric equations describe curves by expressing both and as separate functions of an independent parameter, usually . Instead of writing directly as a function of , you let both coordinates change with , which makes it possible to represent curves that loop, backtrack, or trace complex paths. This is especially useful for modeling motion, where often represents time.
Plotting Parametric Curves
A parametric curve is defined by a pair of functions and . As varies over some interval, the point traces out a curve in the -plane.
To plot a parametric curve:
- Choose a range of values (for example, ).
- Evaluate and at several values of to get coordinate pairs.
- Plot those points on the coordinate plane and connect them in order of increasing .
The direction you connect the points matters. The curve has an orientation determined by the direction of increasing , which you can indicate with arrows.
- Circle: , , traces the unit circle counterclockwise starting at .
- Spiral: , , traces a spiral that moves outward from the origin as increases, since the factor of grows the radius over time.

Conversion to Rectangular Form
Converting parametric equations to rectangular form means eliminating the parameter to get a single equation relating and . This can help you recognize what type of curve you're dealing with (a line, ellipse, parabola, etc.).
Common elimination strategies:
- Solve and substitute: Solve one parametric equation for , then plug that expression into the other equation.
- Use trig identities: When and involve and , the Pythagorean identity is your best friend.
- Algebraic manipulation: Square, add, or rearrange the equations to cancel .
Example: Convert , to rectangular form.
- Isolate the trig functions: , .
- Apply the Pythagorean identity: .
- Substitute: .
This is the equation of an ellipse with semi-major axis 3 (along ) and semi-minor axis 2 (along ).
One thing to watch: the rectangular form sometimes includes more of the curve than the parametric version traces. Always check whether the parametric equations restrict the domain (for instance, only tracing the top half of an ellipse).

Parametric Equations for Basic Shapes
Lines:
A parametric line through the point with direction vector is written as:
The slope of this line is (provided ). For example, , passes through with slope . You can verify by eliminating : solving the first equation gives , and substituting into the second gives .
Circles:
A circle with center and radius has parametric equations:
Here represents the angle measured from the positive -direction. For example, , traces a circle centered at with radius 3. Changing the interval of lets you trace just an arc instead of the full circle.
Interpretation of Cycloid Equations
A cycloid is the curve traced by a point on the rim of a circle as that circle rolls along a straight line without slipping. Picture a reflector on a bicycle tire as the bike moves forward.
The parametric equations for a cycloid are:
where is the radius of the rolling circle and is the angle (in radians) through which the circle has rotated.
Key properties:
- The curve is periodic. Each full rotation ( increases by ) produces one arch.
- The -coordinate advances by per arch, which equals the circumference of the rolling circle.
- The -coordinate oscillates between (where the point touches the line) and (the top of each arch).
- At the cusps (where is a multiple of ), the point touches the ground and the curve has a sharp point.
Example: For , each arch spans units horizontally, and the point rises to a maximum height of .
Cycloids show up in physics: the brachistochrone problem asks for the curve of fastest descent between two points under gravity, and the answer is an inverted cycloid. They also appear in gear tooth design and pendulum clocks.
Motion Analysis with Parametric Equations
When represents time, parametric equations naturally describe the motion of an object. You can extract velocity, acceleration, and tangent line information directly from and .
Velocity vector: The velocity at time is
This vector points in the direction of motion. Its magnitude, , gives the speed of the object at that instant.
Acceleration vector: The acceleration is the derivative of velocity:
Tangent line slope: The slope of the tangent line to the curve at any point is found using the chain rule:
If but , the tangent line is vertical. If both derivatives are zero simultaneously, you need further analysis (such as L'Hรดpital's Rule or examining limits) to determine the behavior at that point.