Parametric Equation Calculator
Parametric equations describe curves by expressing both x and y as functions of a parameter t. As t varies, the point (x(t), y(t)) traces out the curve. Select a preset curve and enter its parameters to generate a table of (t, x, y) values for t from 0 to 2pi in steps of pi/6 (13 points total). Choose from: circle (x = r*cos(t), y = r*sin(t)), ellipse (x = a*cos(t), y = b*sin(t)), lemniscate of Bernoulli, or cycloid (the curve traced by a rolling circle). Parametric form is more powerful than y = f(x) form because it can describe closed curves, curves that loop or cross themselves, and curves whose direction of traversal matters. For example, a circle cannot be written as a single function y = f(x), but parametrically it is x = cos(t), y = sin(t) for t in [0, 2*pi]. Parametric curves are used in computer graphics, physics, animation, and engineering to model paths, trajectories, and complex shapes.
Parametric values table (t: 0 to 2pi, step pi/6)
| t (radians) | t (degrees) | x(t) | y(t) |
|---|
Parametric equations: frequently asked questions
What are parametric equations?
Parametric equations describe a curve by expressing both x and y as functions of a third variable t (the parameter). For example, a circle of radius r is given by x(t) = r*cos(t) and y(t) = r*sin(t) for t from 0 to 2*pi. As t varies, the point (x(t), y(t)) traces the curve.
What is a cycloid?
A cycloid is the curve traced by a point on the rim of a rolling circle. If the circle has radius r and rolls along the x-axis, the parametric equations are x(t) = r*(t - sin(t)) and y(t) = r*(1 - cos(t)). The cycloid has special properties: a ball sliding down a cycloid-shaped ramp reaches the bottom in minimum time (brachistochrone problem).
What is a lemniscate?
The lemniscate of Bernoulli is a figure-eight shaped curve with polar equation r^2 = a^2*cos(2*theta). In parametric form it is x(t) = a*cos(t)/(1+sin^2(t)) and y(t) = a*sin(t)*cos(t)/(1+sin^2(t)). It is the locus of points whose product of distances to two foci equals a^2/4.
How are parametric equations different from y = f(x) equations?
A standard equation y = f(x) defines y as a function of x, which requires each x to map to exactly one y. Parametric equations have no such restriction: the curve can loop back on itself, cross itself, or fail the vertical line test entirely. Parametric form also encodes direction of travel as t increases, which y = f(x) does not.
How do you eliminate the parameter t from parametric equations?
For simple cases: from x = a*cos(t) and y = b*sin(t), use x^2/a^2 + y^2/b^2 = cos^2(t)+sin^2(t) = 1, giving the ellipse equation. For x = t, y = t^2, substitute to get y = x^2. In general, eliminating t may produce an implicit equation F(x,y) = 0 that describes the same curve.
Sources
- Parametric equations: NIST DLMF 1.7, Vectors and Parametric Curves.
- Cycloid and special curves: Wolfram MathWorld, Cycloid.
Reviewed by the CalculatorHub team, edited by James Graham, 14 June 2026. See our methodology.