2. Vector-Valued Functions

Derivatives Of Vector Functions

Covers the derivative of vector-valued functions and its physical meaning in motion.

Derivatives of Vector Functions

Welcome, students! Today’s lesson dives into the world of vector functions and their derivatives. By the end of this lesson, you’ll understand how to differentiate vector-valued functions and interpret their physical meanings, particularly in describing motion. Ready to explore how math captures movement in space? Let’s go! 🚀

Understanding Vector-Valued Functions

Before we jump into derivatives, let’s get a solid grasp of what a vector-valued function is.

A vector-valued function is a function where the output is a vector. Instead of returning a single real number (like a standard function), it returns a vector with multiple components. Typically, we write a vector-valued function in terms of a parameter, often denoted as $t$ (which can represent time in many applications).

A general form of a vector-valued function in three dimensions is:

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

Here, $x(t)$, $y(t)$, and $z(t)$ are real-valued functions of $t$. Each of these describes a coordinate function: $x(t)$ for the $x$-coordinate, $y(t)$ for the $y$-coordinate, and $z(t)$ for the $z$-coordinate.

Example: A Simple Vector Function

Let’s take a simple example:

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

This means at any given value of $t$, the vector is:

  • $x(t) = t$
  • $y(t) = t^2$
  • $z(t) = \sin(t)$

So, at $t = 0$, the vector is $\langle 0, 0, 0 \rangle$, and at $t = 1$, the vector is $\langle 1, 1, \sin(1) \rangle$. This vector-valued function traces out a path in 3D space as $t$ changes.

Real-World Example: Position in Space

Imagine a small drone flying through the air. Its position at any time $t$ can be described by a vector-valued function $\mathbf{r}(t)$. The three components of the function tell you where the drone is along the $x$, $y$, and $z$ axes at any given moment. This is a great way to think about vector functions—they’re like a map that shows how something moves through space over time.

The Derivative of a Vector Function

Now, what does it mean to take the derivative of a vector-valued function?

The derivative of a vector function gives us another vector function. This new vector function represents the rate of change of the original vector function with respect to $t$. In other words, it tells us how fast and in what direction the original vector is changing.

Definition of the Derivative

If $\mathbf{r}(t) = \langle x(t), y(t), z(t) \rangle$, the derivative of $\mathbf{r}(t)$ with respect to $t$ is:

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

Each component is simply the derivative of the corresponding coordinate function.

Example: Differentiating a Vector Function

Let’s differentiate the vector function we introduced earlier:

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

We’ll find the derivative of each component:

  • $x'(t) = \frac{d}{dt}(t) = 1$
  • $y'(t) = \frac{d}{dt}(t^2) = 2t$
  • $z'(t) = \frac{d}{dt}(\sin(t)) = \cos(t)$

So the derivative is:

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

This new vector function $\mathbf{r}'(t)$ gives us the velocity of the original vector function. It tells us how fast the position is changing in each direction.

Physical Meaning: Velocity and Speed

The derivative of a position vector function is often called the velocity vector. Why velocity? Because it tells us both the direction and the rate of change of the position.

For example, if $\mathbf{r}(t)$ describes the position of a car driving on a track, $\mathbf{r}'(t)$ describes the car’s velocity. If we want to know how fast the car is moving at any instant, we can find the magnitude of the velocity vector, which is called the speed.

The magnitude of the velocity vector is:

$$ \|\mathbf{r}'(t)\| = \sqrt{x'(t)^2 + y'(t)^2 + z'(t)^2} $$

For our example:

$$ \|\mathbf{r}'(t)\| = \sqrt{1^2 + (2t)^2 + (\cos(t))^2} = \sqrt{1 + 4t^2 + \cos^2(t)} $$

This gives us the speed of the object at any time $t$.

Fun Fact: Speed vs. Velocity

Here’s a fun fact, students: Speed is a scalar quantity (it has only magnitude), while velocity is a vector (it has both magnitude and direction). So, while velocity tells you which way you’re going and how fast, speed just tells you how fast you’re going, regardless of direction. That’s why the magnitude of the velocity vector is called speed.

Higher-Order Derivatives: Acceleration

Just as we can take the derivative of a position vector function to get velocity, we can take the derivative of the velocity vector function to get acceleration.

Definition of Acceleration

The acceleration vector is the derivative of the velocity vector. If $\mathbf{r}(t)$ is the position function, then:

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

This gives us the rate of change of velocity with respect to time, which is exactly what acceleration is.

Example: Finding the Acceleration

Let’s continue with our previous example. We already found the velocity:

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

Now, let’s find the acceleration by differentiating again:

  • $x''(t) = \frac{d}{dt}(1) = 0$
  • $y''(t) = \frac{d}{dt}(2t) = 2$
  • $z''(t) = \frac{d}{dt}(\cos(t)) = -\sin(t)$

So the acceleration vector is:

$$ \mathbf{a}(t) = \langle 0, 2, -\sin(t) \rangle $$

This tells us that at any time $t$, the acceleration in the $x$-direction is zero, in the $y$-direction it’s constant at $2$, and in the $z$-direction it oscillates as $-\sin(t)$.

Real-World Example: Roller Coaster Ride

Imagine you’re on a roller coaster. Your position at any time can be described by a vector function. The velocity vector tells you how fast and in what direction you’re moving. But what about when you feel a sudden jerk or push? That’s your acceleration vector at work. The acceleration tells you how your velocity is changing—whether you’re speeding up, slowing down, or changing direction. When you feel that thrill on the roller coaster, it’s the acceleration vector that’s responsible! 🎢

Tangent Vectors and Motion Along a Curve

The velocity vector $\mathbf{r}'(t)$ is also known as the tangent vector to the curve described by $\mathbf{r}(t)$. It’s called the tangent vector because it points in the direction of the curve at any given point.

Tangent Vector Example

Let’s go back to our earlier example:

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

We found the velocity vector:

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

At $t = 1$, the position is:

$$ \mathbf{r}(1) = \langle 1, 1, \sin(1) \rangle $$

And the velocity (tangent) vector is:

$$ \mathbf{r}'(1) = \langle 1, 2, \cos(1) \rangle $$

So at $t = 1$, the tangent vector $\langle 1, 2, \cos(1) \rangle$ shows us the direction in which the curve is heading. If you were traveling along the curve at $t = 1$, you’d be moving in the direction of that vector.

Unit Tangent Vector

Sometimes, we want to know just the direction of the tangent vector, not its magnitude. To do that, we find the unit tangent vector.

The unit tangent vector is the velocity vector divided by its magnitude:

$$ \mathbf{T}(t) = \frac{\mathbf{r}'(t)}{\|\mathbf{r}'(t)\|} $$

This gives us a vector with a magnitude of 1 that points in the direction of the velocity. It’s useful for understanding the direction of motion without worrying about how fast the object is moving.

Example: Unit Tangent Vector

Let’s find the unit tangent vector for our example at $t = 1$.

First, we find the magnitude of the velocity vector at $t = 1$:

$$ \|\mathbf{r}'(1)\| = \sqrt{1^2 + 2^2 + (\cos(1))^2} = \sqrt{1 + 4 + \cos^2(1)} $$

Now, we divide each component of the velocity vector by this magnitude:

$$ \mathbf{T}(1) = \frac{\langle 1, 2, \cos(1) \rangle}{\sqrt{1 + 4 + \cos^2(1)}} $$

This gives us the unit tangent vector at $t = 1$.

Curvature and the Second Derivative

The second derivative $\mathbf{r}''(t)$ not only gives us acceleration but also helps us understand curvature—how sharply a curve bends.

Curvature Formula

Curvature $\kappa(t)$ is a measure of how quickly the direction of the tangent vector changes. It’s defined as:

$$ \kappa(t) = \frac{\|\mathbf{r}'(t) \times \mathbf{r}''(t)\|}{\|\mathbf{r}'(t)\|^3} $$

Here, $\mathbf{r}'(t) \times \mathbf{r}''(t)$ is the cross product of the velocity and acceleration vectors. The cross product gives a vector that’s perpendicular to both. The magnitude of this cross product tells us how much the two vectors differ in direction.

Example: Curvature of a Simple Curve

Let’s find the curvature of a simpler curve, say:

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

First, find the derivatives:

$$ \mathbf{r}'(t) = \langle 1, 2t, 0 \rangle $$

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

Next, find the cross product:

$$ \mathbf{r}'(t) \times \mathbf{r}''(t) = \langle 1, 2t, 0 \rangle \times \langle 0, 2, 0 \rangle = \langle 0, 0, 2 \rangle $$

Now find the magnitudes:

$$ \|\mathbf{r}'(t)\| = \sqrt{1^2 + (2t)^2 + 0^2} = \sqrt{1 + 4t^2} $$

$$ \|\mathbf{r}'(t) \times \mathbf{r}''(t)\| = \sqrt{0^2 + 0^2 + 2^2} = 2 $$

Finally, we find the curvature:

$$ \kappa(t) = \frac{2}{(1 + 4t^2)^{3/2}} $$

This tells us how much the curve bends at any point $t$. Notice that as $t$ gets larger, the curvature gets smaller. That makes sense because the curve $\langle t, t^2, 0 \rangle$ looks like a parabola, and it flattens out as $t$ increases.

Real-World Example: Curvature in Roads

Think about a winding road. When you’re driving, the sharper the turn, the greater the curvature. On a straight highway, the curvature is close to zero. On a hairpin turn, the curvature is large. Engineers use curvature to design safe roads, making sure that curves aren’t too sharp for drivers to handle.

Conclusion

Congratulations, students! You’ve covered a lot of ground in this lesson. We started by understanding vector-valued functions and their components. Then we moved on to finding the derivatives of these functions and interpreting them as velocity and acceleration. We explored the physical meaning of these derivatives—how they describe motion in space—and even touched on more advanced concepts like curvature.

By now, you should have a strong grasp of how derivatives of vector functions work and how they’re used to understand movement. Keep practicing, and soon you’ll be able to visualize and analyze all kinds of motion using vector calculus! 🌟

Study Notes

  • A vector-valued function has the form:

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

  • The derivative of a vector function is:

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

  • Velocity is the first derivative of the position vector function:

$$ \mathbf{v}(t) = \mathbf{r}'(t) $$

  • Speed is the magnitude of the velocity vector:

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

  • Acceleration is the second derivative of the position vector function:

$$ \mathbf{a}(t) = \mathbf{r}''(t) $$

  • The unit tangent vector is the velocity vector divided by its magnitude:

$$ \mathbf{T}(t) = \frac{\mathbf{r}'(t)}{\|\mathbf{r}'(t)\|} $$

  • Curvature $\kappa(t)$ measures how sharply a curve bends:

$$ \kappa(t) = \frac{\|\mathbf{r}'(t) \times \mathbf{r}''(t)\|}{\|\mathbf{r}'(t)\|^3} $$

  • The cross product $\mathbf{r}'(t) \times \mathbf{r}''(t)$ is used in the curvature formula to find how much the direction is changing.

Keep these key points handy as you continue your journey through calculus 3. You’ve got this, students! 🚀

Practice Quiz

5 questions to test your understanding

Derivatives Of Vector Functions — Calculus 3 | A-Warded