In a traditional Cartesian equation like $y = f(x)$, the curve is described by a direct relationship between $x$ and $y$. Parametric equations introduce a third variable $t$ (the parameter), allowing us to describe curves that are not functions, such as circles, loops, and curves that cross themselves.

🎯 In this section you will learn

📌 What Are Parametric Equations?

A pair of parametric equations is written as:

$$ x = f(t), \quad y = g(t) $$
where $t$ is the parameter, often representing time
💡 Key Idea

As $t$ varies, the point $(x, y)$ traces out a curve in the plane. This allows us to represent motion, direction, and curves that aren't functions.

📊 Visualizing Parametric Curves

Interactive graph below. See how the point moves as $t$ increases:

📌 Eliminating the Parameter

Often we can eliminate $t$ to find a Cartesian equation relating $x$ and $y$ directly.

Example 1Eliminating the Parameter (Line)

Given $x = t + 1$, $y = 2t - 3$, eliminate $t$.

Solve for $t$
$t = x - 1$
Substitute into $y$
$y = 2(x - 1) - 3 = 2x - 5$
Result
The curve is the line $y = 2x - 5$.
Example 2Eliminating the Parameter (Parabola)

Given $x = t^2$, $y = t + 1$, eliminate $t$.

Example 3Eliminating with Trig (Circle)

Given $x = 3\cos t$, $y = 3\sin t$, eliminate $t$.

Example 4Eliminating with Trig (Ellipse)

Given $x = 2\cos t$, $y = 5\sin t$, eliminate $t$.

📌 Sketching Parametric Curves

To sketch a parametric curve:

  1. Choose several values of $t$ (especially where direction changes).
  2. Compute the corresponding $(x, y)$ points.
  3. Plot the points and connect them in order of increasing $t$.
  4. Draw arrows to indicate the direction of motion as $t$ increases.
⚠️ Common Mistakes
🔍 Key Takeaways
← Back to Module Page