Parametric Equations Formula

The Formula

x = f(t), \quad y = g(t), \quad t \in [a, b]
Slope of tangent: \frac{dy}{dx} = \frac{dy/dt}{dx/dt} (when dx/dt \neq 0).

When to use: Instead of saying 'y depends on x,' parametric equations say 'both x and y depend on time t.' Imagine an ant walking on a table—at each moment t, the ant has an x-position and a y-position. The path it traces is the parametric curve, and t is the clock ticking forward.

Quick Example

A circle: x = \cos t, y = \sin t, for t \in [0, 2\pi].
A line: x = 1 + 2t, y = 3 - t.
A parabola: x = t, y = t^2.

Notation

The parameter is usually t (for time) but can be any variable. The curve is described by the pair (x(t), y(t)).

What This Formula Means

A way of defining a curve by expressing both x and y as separate functions of a third variable (parameter), typically t: x = f(t), y = g(t).

Instead of saying 'y depends on x,' parametric equations say 'both x and y depend on time t.' Imagine an ant walking on a table—at each moment t, the ant has an x-position and a y-position. The path it traces is the parametric curve, and t is the clock ticking forward.

Formal View

\gamma\colon [a,b] \to \mathbb{R}^2 defined by \gamma(t) = (f(t),\, g(t)); slope \frac{dy}{dx} = \frac{g'(t)}{f'(t)} when f'(t) \neq 0

Worked Examples

Example 1

easy
Eliminate the parameter from x = 2t + 1 and y = t - 3 to find the rectangular equation.

Solution

  1. 1
    Solve the x-equation for t: t = \frac{x - 1}{2}.
  2. 2
    Substitute into the y-equation: y = \frac{x - 1}{2} - 3.
  3. 3
    Simplify: y = \frac{x - 1}{2} - 3 = \frac{x - 1 - 6}{2} = \frac{x - 7}{2}.

Answer

y = \frac{x - 7}{2}
Eliminating the parameter converts parametric equations back to a single rectangular equation. Solve one equation for t and substitute into the other. The result here is a line with slope \frac{1}{2} and y-intercept -\frac{7}{2}.

Example 2

medium
Eliminate the parameter from x = 3\cos(t) and y = 3\sin(t).

Common Mistakes

  • Confusing the parameter t with a spatial coordinate: t is not a third dimension—it's an auxiliary variable that generates the (x, y) curve.
  • Forgetting that the derivative \frac{dy}{dx} = \frac{dy/dt}{dx/dt}, NOT \frac{dy}{dt}. You must divide the two rates to get the slope of the curve.
  • Ignoring the parameter range: x = \cos t, y = \sin t for t \in [0, \pi] is only a semicircle, not a full circle.

Why This Formula Matters

Parametric equations describe motion (projectiles, orbits, animation paths), allow curves that aren't functions (circles, figure-eights), and are essential for computer graphics, robotics, and physics simulations.

Frequently Asked Questions

What is the Parametric Equations formula?

A way of defining a curve by expressing both x and y as separate functions of a third variable (parameter), typically t: x = f(t), y = g(t).

How do you use the Parametric Equations formula?

Instead of saying 'y depends on x,' parametric equations say 'both x and y depend on time t.' Imagine an ant walking on a table—at each moment t, the ant has an x-position and a y-position. The path it traces is the parametric curve, and t is the clock ticking forward.

What do the symbols mean in the Parametric Equations formula?

The parameter is usually t (for time) but can be any variable. The curve is described by the pair (x(t), y(t)).

Why is the Parametric Equations formula important in Math?

Parametric equations describe motion (projectiles, orbits, animation paths), allow curves that aren't functions (circles, figure-eights), and are essential for computer graphics, robotics, and physics simulations.

What do students get wrong about Parametric Equations?

The same curve can have many different parametrizations. x = \cos t, y = \sin t and x = \cos(2t), y = \sin(2t) trace the same circle but at different speeds.

What should I learn before the Parametric Equations formula?

Before studying the Parametric Equations formula, you should understand: function definition, trigonometric functions.