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

Defining And Differentiating Vector-valued Functions

Defining and Differentiating Vector-Valued Functions

Introduction

students, imagine watching a drone fly across the sky 🚁. At any instant, the drone is not just at one number on a line; it has a position in the plane, and that position changes over time. In AP Calculus BC, a vector-valued function is a powerful way to describe that motion. It gives a position vector, usually written as $\mathbf{r}(t)$, that tells where an object is at each time $t$.

In this lesson, you will learn how to define vector-valued functions, interpret them, and differentiate them to study motion. You will see how these ideas connect to parametric equations, velocity, and acceleration, which are all important parts of the AP Calculus BC unit on Parametric Equations, Polar Coordinates, and Vector-Valued Functions 📘.

Objectives

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

  • Explain what a vector-valued function is and how it is written.
  • Interpret $\mathbf{r}(t)$ as a position vector in the plane.
  • Differentiate a vector-valued function by differentiating each component.
  • Connect $\mathbf{r}(t)$ to velocity and acceleration.
  • Use examples to describe motion in the plane.

What Is a Vector-Valued Function?

A vector-valued function assigns a vector to each input value. In two dimensions, it is often written as

$$\mathbf{r}(t)=\langle x(t),y(t)\rangle.$$

Here, $x(t)$ and $y(t)$ are ordinary real-valued functions, and together they describe the position of a moving point in the plane. The variable $t$ usually represents time, but it can also represent any parameter.

You can think of $\mathbf{r}(t)$ as an arrow from the origin to the point $(x(t),y(t))$. When $t$ changes, the arrow changes too. That is why vector-valued functions are useful for describing paths, motion, and curves.

For example, if

$$\mathbf{r}(t)=\langle t,t^2\rangle,$$

then the position at time $t$ is $(t,t^2)$. This means the object starts at $(0,0)$ when $t=0$, moves to $(1,1)$ when $t=1$, and to $(2,4)$ when $t=2$.

This representation is closely related to parametric equations. A parametric curve can be described by

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

which is the same information written in coordinate form instead of vector form. The vector form makes it especially easy to talk about motion.

Reading a Vector-Valued Function in Context

When students sees a vector-valued function on an AP Calculus BC problem, the first question should be: what does it represent? It might describe the position of a particle, the path of a robot, or the movement of a car on a road 🛣️.

If $\mathbf{r}(t)=\langle x(t),y(t)\rangle$, then:

  • $x(t)$ gives the horizontal position.
  • $y(t)$ gives the vertical position.
  • The point $\big(x(t),y(t)\big)$ is the location at time $t$.

For instance, suppose

$$\mathbf{r}(t)=\langle 3\cos t,3\sin t\rangle.$$

This describes a point moving in a circle of radius $3$ centered at the origin. Why? Because the coordinates satisfy

$$x(t)^2+y(t)^2=(3\cos t)^2+(3\sin t)^2=9\cos^2 t+9\sin^2 t=9.$$

So the point stays on the circle $x^2+y^2=9$. This shows how vector-valued functions connect to geometry and motion at the same time.

A big advantage of vector notation is that it clearly shows both the position and the direction of movement. The path is the curve, while the parameter tells how the point travels along that curve.

Differentiating Vector-Valued Functions

Differentiation of vector-valued functions follows one simple rule: differentiate each component separately.

If

$$\mathbf{r}(t)=\langle x(t),y(t)\rangle,$$

then

$$\mathbf{r}'(t)=\langle x'(t),y'(t)\rangle.$$

This derivative is called the velocity vector when $\mathbf{r}(t)$ describes position. It tells both speed and direction of motion.

If the velocity vector is

$$\mathbf{v}(t)=\mathbf{r}'(t)=\langle x'(t),y'(t)\rangle,$$

then the acceleration vector is

$$\mathbf{a}(t)=\mathbf{v}'(t)=\mathbf{r}''(t)=\langle x''(t),y''(t)\rangle.$$

Example 1

Let

$$\mathbf{r}(t)=\langle t^2,\,4t-1\rangle.$$

Then the derivative is

$$\mathbf{r}'(t)=\langle 2t,\,4\rangle.$$

At $t=3$,

$$\mathbf{r}'(3)=\langle 6,4\rangle.$$

This means the object is moving 6 units per unit time horizontally and 4 units per unit time vertically at that instant. The vector gives the direction of motion, while its size gives the speed.

Example 2

Let

$$\mathbf{r}(t)=\langle e^t,\sin t\rangle.$$

Then

$$\mathbf{r}'(t)=\langle e^t,\cos t\rangle.$$

This works because the derivative of $e^t$ is $e^t$, and the derivative of $\sin t$ is $\cos t$. Component-by-component differentiation is the key idea.

Why Velocity and Acceleration Matter

In many AP Calculus BC problems, the meaning of the derivative is more important than the computation alone. If $\mathbf{r}(t)$ is position, then $\mathbf{r}'(t)$ tells how the position changes.

The speed of the particle is the magnitude of the velocity vector:

$$\|\mathbf{v}(t)\|=\sqrt{\big(x'(t)\big)^2+\big(y'(t)\big)^2}.$$

This is always nonnegative. If $\|\mathbf{v}(t)\|$ is large, the particle is moving quickly. If $\|\mathbf{v}(t)\|=0$, the particle is momentarily at rest.

Acceleration measures how velocity changes. A particle can speed up, slow down, or change direction even if its speed stays the same. For example, in circular motion, the speed may be constant while the direction keeps changing. That is why velocity and acceleration are both needed to fully describe motion.

Suppose

$$\mathbf{r}(t)=\langle 2\cos t,2\sin t\rangle.$$

Then

$$\mathbf{r}'(t)=\langle -2\sin t,2\cos t\rangle$$

and

$$\mathbf{r}''(t)=\langle -2\cos t,-2\sin t\rangle.$$

Here, the velocity is tangent to the circle, and the acceleration points toward the center. This is a classic example of motion in the plane.

Connection to Parametric Equations and AP Calculus BC

Vector-valued functions and parametric equations are two ways to express the same curve. If

$$\mathbf{r}(t)=\langle x(t),y(t)\rangle,$$

then the parametric equations are

$$x=x(t)$$

and

$$y=y(t).$$

This connection is important on the AP exam because questions may present a curve in either form. students should be able to move back and forth between them.

For example, if a problem gives

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

then the vector-valued function is

$$\mathbf{r}(t)=\langle t^3-1,\,2t+5\rangle.$$

Differentiating gives

$$\mathbf{r}'(t)=\langle 3t^2,\,2\rangle.$$

If the question asks for the tangent direction at a specific time, use the velocity vector at that time. If it asks for the motion of the object, interpret the components and describe what they mean in context.

Another common AP Calculus BC skill is determining whether a particle is moving to the right, left, up, or down. For a position function $\mathbf{r}(t)=\langle x(t),y(t)\rangle$:

  • The particle moves right when $x'(t)>0$.
  • The particle moves left when $x'(t)<0$.
  • The particle moves up when $y'(t)>0$.
  • The particle moves down when $y'(t)<0$.

These ideas help analyze motion without drawing every point of the path.

Conclusion

Vector-valued functions give a compact and powerful way to describe motion in the plane. They combine position, direction, and change in a single formula. By writing $\mathbf{r}(t)=\langle x(t),y(t)\rangle$, you can track where an object is, differentiate to find velocity, and differentiate again to find acceleration.

For AP Calculus BC, the main skill is to interpret what the vector means and apply differentiation component by component. This lesson is a foundation for later topics such as arc length, speed, and motion along curves. With practice, students will be able to read vector-valued functions as stories of movement 📍.

Study Notes

  • A vector-valued function assigns a vector to each input, often written as $\mathbf{r}(t)=\langle x(t),y(t)\rangle$.
  • The functions $x(t)$ and $y(t)$ describe the coordinates of a moving point.
  • Vector-valued functions and parametric equations describe the same curve in different forms.
  • To differentiate a vector-valued function, differentiate each component separately: $\mathbf{r}'(t)=\langle x'(t),y'(t)\rangle$.
  • If $\mathbf{r}(t)$ is position, then $\mathbf{r}'(t)$ is velocity and $\mathbf{r}''(t)$ is acceleration.
  • Speed is the magnitude of velocity: $\|\mathbf{v}(t)\|=\sqrt{\big(x'(t)\big)^2+\big(y'(t)\big)^2}$.
  • A particle moves right when $x'(t)>0$, left when $x'(t)<0$, up when $y'(t)>0$, and down when $y'(t)<0$.
  • Circular motion can be modeled with functions like $\mathbf{r}(t)=\langle a\cos t,a\sin t\rangle$.
  • AP Calculus BC questions often ask you to interpret motion, not just compute derivatives.
  • Always connect the algebra to the geometry: the derivative shows direction, and the magnitude shows how fast the point moves.

Practice Quiz

5 questions to test your understanding