9. Parametric Equations, Polar Coordinates, and Vector-Valued Functions

Defining And Differentiating Parametric Equations

Defining and Differentiating Parametric Equations

students, imagine a bug moving across a screen while a clock counts the seconds ⏱️. Instead of describing the bug by one equation like $y=f(x)$, we can track its position using two separate formulas, one for $x$ and one for $y$. That idea is the heart of parametric equations. In this lesson, you will learn what parametric equations are, how to differentiate them, and why they matter in AP Calculus BC.

What You Will Learn

By the end of this lesson, students, you should be able to:

  • explain the meaning of parametric equations and the role of the parameter $t$
  • interpret a curve described by $x=f(t)$ and $y=g(t)$
  • compute the slope of a parametric curve using $\frac{dy}{dx}$
  • understand why the chain rule is the main tool for parametric differentiation
  • connect parametric differentiation to motion in the plane, arc length, and other AP Calculus BC topics

1. What Are Parametric Equations?

A parametric curve is defined by a pair of equations:

$$x=f(t), \quad y=g(t)$$

Here, $t$ is called the parameter. Instead of using $x$ as the independent variable, we use $t$ to describe how both coordinates change over time or another input. This is useful when a curve is not easy to write as a function of $x$ alone.

For example, suppose

$$x=t^2, \quad y=t+1$$

As $t$ changes, the point $(x,y)$ moves along a path in the plane. If $t=0$, then $(x,y)=(0,1)$. If $t=2$, then $(x,y)=(4,3)$. If $t=-1$, then $(x,y)=(1,0)$. The parameter helps us see the order in which the points are traced, not just the shape of the curve.

This matters because the same curve can be traced in different ways depending on how $t$ is defined. The parameter can show direction, speed, and even whether the path is traveled forward or backward 🚗.

2. Why Parametric Equations Matter

Parametric equations are used when a single $y=f(x)$ description is not convenient or not possible. A circle is a classic example. The equation

$$x^2+y^2=1$$

passes the vertical line test twice for many $x$ values, so it is not a function of $x$. But we can describe the same circle parametrically by

$$x=\cos t, \quad y=\sin t$$

for $0\le t\le 2\pi$.

As $t$ increases, the point moves counterclockwise around the unit circle. This is a perfect example of how parametric equations describe both shape and motion.

In real life, parametric ideas appear in GPS tracking, computer animation, robotics, and physics. For example, if a drone’s horizontal and vertical positions are each given by formulas involving time, the drone’s path is naturally parametric. 📱

3. Thinking About the Parameter $t$

The parameter $t$ is often time, but it does not have to be. It can represent any input that helps define the motion or shape. Still, in calculus, $t$ is usually treated as time because that makes interpretations easier.

When you look at a parametric equation, ask:

  • What does $t$ represent?
  • What point is the curve at when $t$ has a certain value?
  • In what direction is the curve traced as $t$ increases?

For example, if

$$x=2t-1, \quad y=t^2$$

then when $t=1$, the point is $(1,1)$. When $t=2$, the point is $(3,4)$. These points move along a curve as $t$ increases. The sequence of points gives the motion of the curve.

Sometimes two different values of $t$ can produce the same point. That means the curve crosses itself or is traced more than once. Parametric equations make this easy to study.

4. Differentiating Parametric Equations

The biggest AP Calculus BC idea in this lesson is how to find the slope of a parametric curve. Suppose

$$x=f(t), \quad y=g(t)$$

To find the slope of the curve, we use the derivative of $y$ with respect to $x$:

$$\frac{dy}{dx}=\frac{\frac{dy}{dt}}{\frac{dx}{dt}}$$

This formula comes from the chain rule. Since both $x$ and $y$ depend on $t$, we think of $y$ as depending on $t$ and $x$ as depending on $t$. Then

$$\frac{dy}{dx}=\frac{dy/dt}{dx/dt}$$

as long as $\frac{dx}{dt}\ne 0$.

This formula is one of the most important tools in this topic. It tells us the slope of the tangent line to the parametric curve at a given value of $t$.

Example 1

Let

$$x=t^2+1, \quad y=t^3-2t$$

Find $\frac{dy}{dx}$.

First compute each derivative with respect to $t$:

$$\frac{dx}{dt}=2t$$

$$\frac{dy}{dt}=3t^2-2$$

Now divide:

$$\frac{dy}{dx}=\frac{3t^2-2}{2t}$$

This gives the slope of the curve at any value of $t$ where $t\ne 0$.

If you want the slope at a specific point, first find the value of $t$ that gives that point, then substitute into the expression. For example, at $t=1$, the slope is

$$\frac{dy}{dx}=\frac{3(1)^2-2}{2(1)}=\frac{1}{2}$$

5. Tangent Lines and Horizontal or Vertical Tangents

Once you know $\frac{dy}{dx}$, you can find tangent lines to parametric curves. A tangent line at a point uses the point-slope form:

$$y-y_1=m(x-x_1)$$

where $m=\frac{dy}{dx}$.

Example 2

Suppose

$$x=t^2, \quad y=t^3$$

Find the tangent line when $t=1$.

First find the point:

$$x=1^2=1, \quad y=1^3=1$$

So the point is $(1,1)$.

Next find the slope:

$$\frac{dx}{dt}=2t, \quad \frac{dy}{dt}=3t^2$$

So

$$\frac{dy}{dx}=\frac{3t^2}{2t}=\frac{3t}{2}$$

At $t=1$,

$$m=\frac{3}{2}$$

The tangent line is

$$y-1=\frac{3}{2}(x-1)$$

Parametric curves can also have horizontal or vertical tangents.

  • A horizontal tangent occurs when $\frac{dy}{dx}=0$, which usually means $\frac{dy}{dt}=0$ and $\frac{dx}{dt}\ne 0$.
  • A vertical tangent occurs when $\frac{dx}{dt}=0$ and $\frac{dy}{dt}\ne 0$.

These conditions are very useful on AP questions because they help identify the behavior of the curve at special points.

6. Why the Chain Rule Works Here

The formula

$$\frac{dy}{dx}=\frac{dy/dt}{dx/dt}$$

works because both $x$ and $y$ are connected through the same parameter $t$. You can think of it this way: if $t$ changes a little, then $x$ changes a little and $y$ changes a little too. The ratio of those changes gives the slope.

This is a direct use of the chain rule, one of the most important ideas in calculus. It is not a new derivative rule to memorize separately; it is a consequence of how derivatives work when one variable depends on another variable through a third variable.

If $x$ can be written as a function of $t$ and $y$ as a function of $t$, then the slope of the path is found by comparing their rates of change with respect to $t$.

7. Connection to Motion in the Plane

Parametric equations are not just about drawing curves. They also describe motion. If $x(t)$ and $y(t)$ give the position of an object at time $t$, then the object’s velocity components are

$$\frac{dx}{dt}, \quad \frac{dy}{dt}$$

The slope of the path is not the same as the speed, but both are related to how the object moves. In later lessons, you will use parametric ideas to study speed, acceleration, and arc length.

For example, if a particle has

$$x=t^2, \quad y=t^2-4t$$

then its motion in the plane can be analyzed by looking at where it is at each time and how quickly it changes position. This is one reason parametric equations are important in physics and engineering ⚙️.

Conclusion

students, parametric equations let us describe a curve using a parameter $t$ instead of only using $x$ and $y$ directly. This makes it possible to model curves that are hard to write as ordinary functions and to track the motion of a point along a path. Differentiating parametric equations uses the chain rule and gives the slope formula

$$\frac{dy}{dx}=\frac{dy/dt}{dx/dt}$$

This formula helps find tangent lines, horizontal and vertical tangents, and more advanced results later in AP Calculus BC. Parametric equations are a key part of the larger unit on parametric equations, polar coordinates, and vector-valued functions because they connect algebra, geometry, and motion in a single framework.

Study Notes

  • A parametric curve is given by

$$x=f(t), \quad y=g(t)$$

  • The parameter $t$ often represents time, but it can represent any input.
  • Parametric equations describe both the shape of a curve and the direction it is traced.
  • A circle can be written parametrically, such as

$$x=\cos t, \quad y=\sin t$$

  • The slope of a parametric curve is

$$\frac{dy}{dx}=\frac{\frac{dy}{dt}}{\frac{dx}{dt}}$$

  • This formula comes from the chain rule.
  • To find a tangent line, first find the point and then use the slope with point-slope form.
  • Horizontal tangents usually happen when $\frac{dy}{dt}=0$ and $\frac{dx}{dt}\ne 0$.
  • Vertical tangents usually happen when $\frac{dx}{dt}=0$ and $\frac{dy}{dt}\ne 0$.
  • Parametric equations are useful in motion, computer graphics, robotics, and physics.
  • This topic is an important foundation for arc length, velocity, acceleration, and polar coordinates in AP Calculus BC.

Practice Quiz

5 questions to test your understanding