Parametric Equations
So far, you’ve written equations as y = f(x) — y depends directly on x. But what if both x and y depend on a third variable? That variable is called a parameter, usually written as t. Welcome to parametric equations.
Part 1: What Are Parametric Equations?
Instead of one equation, you get two:
As t changes, the point (x, y) traces out a curve. Think of t as time: at each moment, you have a position (x, y).
A Simple Example: A Straight Line
This is just y = 2x + 1 in disguise. But parametric form lets us do much more.
Part 2: Circles — Where Parametric Shines
Try writing a circle as y = f(x). You can’t do it with a single function (you’d need the top half and bottom half separately). But parametrically, a circle is elegant:
As t goes from 0 to 2pi, the point traces a full circle of radius r.
The green curve shows x(t) = rcos(t), and the red shows y(t) = rsin(t). Together they create circular motion.
Why cos and sin? Remember the unit circle: at angle t, the point on the circle is (cos t, sin t). Multiplying by r just scales the circle up. Drag the radius slider and watch all curves scale together.
Part 3: Ellipses — Stretched Circles
An ellipse is a circle that’s been stretched differently in x and y:
When a = b, you get a circle. When a and b differ, the shape stretches.
Planets orbit in ellipses! Kepler discovered that planetary orbits are elliptical, not circular. The Sun sits at one focus of the ellipse. Parametric equations are exactly how astronomers describe these orbits.
Part 4: Speed Along the Curve
The parameter t often represents time. How fast t changes affects how fast you move along the curve. Compare these two parameterizations of the same line:
Both trace the same path (y = x), but the second one covers it three times as fast. The direction can change too:
Set speed to -1. Now the point traces the same line but in the opposite direction. Parametric equations encode not just the shape of a curve, but the direction and speed of travel along it.
Part 5: Lissajous Figures — Fancy Parametric Art
When both x and y are sinusoidal with different frequencies, you get beautiful patterns called Lissajous figures:
When a = 1 and b = 2, the y-component oscillates twice as fast as x. The combined (x, y) path creates a figure-eight. Different frequency ratios create different patterns — try a = 3, b = 2 for a pretzel shape!
Challenge:
- Set a = 1 and b = 1. What shape do you expect? (Hint: same frequency means the point oscillates back and forth on a line.)
- Set a = 2 and b = 3. How many “loops” does the resulting Lissajous figure have?
- Can you find settings that create a pattern with exactly 4 crossings?
Wrapping Up
| Concept | Key Idea |
|---|---|
| Parametric equations | x and y both depend on a parameter t |
| Circle | x = r cos(t), y = r sin(t) |
| Ellipse | x = a cos(t), y = b sin(t) |
| Direction & speed | Encoded in how t maps to (x, y) |
| Lissajous figures | Different frequencies create intricate patterns |
Parametric equations let you describe curves that regular y = f(x) can’t handle. They’re essential in physics (projectile motion), engineering (CNC machining paths), and computer graphics (Bezier curves). Once you think parametrically, a whole new world of curves opens up.