2. Vector-Valued Functions

Vector Functions

Introduces vector-valued functions and their component functions with examples.

Vector Functions

Welcome, students! 🎉 Today’s lesson dives into the exciting world of vector functions. By the end, you’ll understand what vector-valued functions are, how they work, and how they relate to real-world motion and curves in space. Ready to explore how math describes the paths of rockets, roller coasters, and even particles? Let’s get started!

What Are Vector Functions?

A vector function is a function that outputs a vector. Instead of producing a single number, like a regular function, a vector function produces a whole set of numbers—each representing a component of a vector.

Here’s the general form of a vector function:

$$ \mathbf{r}(t) = \langle f(t), g(t), h(t) \rangle $$

where $f(t)$, $g(t)$, and $h(t)$ are the component functions. Each component is just a regular function of $t$ (the parameter), but together they form a vector.

Real-World Example: The Flight of a Drone

Imagine a drone flying through the air. Its position at any time $t$ can be described by three coordinates: $x(t)$, $y(t)$, and $z(t)$. So the position vector function might look like:

$$ \mathbf{r}(t) = \langle x(t), y(t), z(t) \rangle = \langle 2t, 3t^2, 5t - 1 \rangle $$

Here, $x(t) = 2t$, $y(t) = 3t^2$, and $z(t) = 5t - 1$. This means at time $t$, the drone is at the point $(2t, 3t^2, 5t - 1)$ in 3D space.

Key Idea: Vector Functions Describe Motion

Vector functions are often used to describe motion along curves. Each component function represents a coordinate, and as $t$ changes, the vector function traces out a path in space. Think of it as a pencil drawing a curve in mid-air! ✏️

Component Functions

Let’s break down the components of a vector function. We said that:

$$ \mathbf{r}(t) = \langle f(t), g(t), h(t) \rangle $$

Each of these component functions tells us something different:

  • $f(t)$ usually represents the $x$-coordinate.
  • $g(t)$ usually represents the $y$-coordinate.
  • $h(t)$ usually represents the $z$-coordinate (if we’re in 3D).

Example: A Spiral in 3D

Consider the vector function:

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

Let’s analyze the components:

  • $f(t) = \cos(t)$ gives the $x$-coordinate.
  • $g(t) = \sin(t)$ gives the $y$-coordinate.
  • $h(t) = t$ gives the $z$-coordinate.

As $t$ increases, the vector $(\cos(t), \sin(t), t)$ traces out a spiral in 3D. This is called a helix. 🌀

Fun Fact: Helices in Nature

Helical shapes appear in DNA molecules, springs, and even the paths of planets around stars. When you see a spiral staircase, you’re looking at a real-world example of a helix!

Differentiation of Vector Functions

Just like regular functions, vector functions can be differentiated. The derivative of a vector function gives us the velocity vector, which tells us the direction and speed of motion.

Definition of the Derivative

For a vector function $\mathbf{r}(t) = \langle f(t), g(t), h(t) \rangle$, the derivative is:

$$ \mathbf{r}'(t) = \langle f'(t), g'(t), h'(t) \rangle $$

We simply differentiate each component function separately.

Example: Velocity of the Helix

Let’s go back to our helix:

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

We’ll differentiate each component:

  • $f'(t) = \frac{d}{dt}[\cos(t)] = -\sin(t)$
  • $g'(t) = \frac{d}{dt}[\sin(t)] = \cos(t)$
  • $h'(t) = \frac{d}{dt}[t] = 1$

So the derivative (velocity vector) is:

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

This velocity vector shows the direction in which the point on the helix is moving at any time $t$. It’s like the drone’s speed and direction at that moment.

Speed of Motion

The magnitude of the velocity vector gives the speed:

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

So the speed of the motion along the helix is constant and equals $\sqrt{2}$. Pretty neat, right? ⚡

Integration of Vector Functions

We can also integrate vector functions. Integration gives us the position vector if we know the velocity vector, or it can describe the area under a curve in space.

Definition of the Integral

For a vector function $\mathbf{r}(t) = \langle f(t), g(t), h(t) \rangle$, the integral is:

$$ \int \mathbf{r}(t) \, dt = \langle \int f(t) \, dt, \int g(t) \, dt, \int h(t) \, dt \rangle + \mathbf{C} $$

Here, $\mathbf{C}$ is the constant vector of integration.

Example: Recovering the Position

Suppose we know the velocity vector of a moving object:

$$ \mathbf{v}(t) = \langle 3, 2t, -4 \rangle $$

We can find the position vector by integrating:

$$ \mathbf{r}(t) = \langle \int 3 \, dt, \int 2t \, dt, \int -4 \, dt \rangle = \langle 3t, t^2, -4t \rangle + \mathbf{C} $$

If we know the initial position at $t = 0$, say $\mathbf{r}(0) = \langle 0, 0, 0 \rangle$, then $\mathbf{C} = \langle 0, 0, 0 \rangle$. So the position function is:

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

This gives us the full path of the object.

Real-World Example: Rocket Trajectory

In physics, integrating the velocity vector gives the rocket’s trajectory. If you know how fast and in what direction the rocket is moving at all times, you can find out exactly where it will be after a given amount of time.

Curvature and Acceleration

So far, we’ve looked at velocity. But what if the object is speeding up or changing direction? That’s where acceleration and curvature come in.

Acceleration Vector

The acceleration vector is the derivative of the velocity vector:

$$ \mathbf{a}(t) = \mathbf{r}''(t) = \langle f''(t), g''(t), h''(t) \rangle $$

Example: Helix Acceleration

Let’s find the acceleration of the helix:

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

We already know the velocity:

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

Now differentiate the velocity:

  • $f''(t) = \frac{d}{dt}[-\sin(t)] = -\cos(t)$
  • $g''(t) = \frac{d}{dt}[\cos(t)] = -\sin(t)$
  • $h''(t) = \frac{d}{dt}[1] = 0$

So the acceleration vector is:

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

Curvature

Curvature measures how sharply a curve bends at a point. It’s defined as:

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

We use the cross product of the velocity and acceleration vectors to find curvature. This tells us how curved or straight the path is at each moment.

Example: Curvature of the Helix

Let’s compute the curvature of the helix. We have:

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

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

First, find the cross product $\mathbf{r}'(t) \times \mathbf{r}''(t)$:

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

$\begin{vmatrix}$

$\mathbf{i} & \mathbf{j} & \mathbf{k} \\$

$-\sin(t) & \cos(t) & 1 \\$

$-\cos(t) & -\sin(t) & 0$

$\end{vmatrix}$

Expanding this determinant:

$\mathbf{r}$'(t) $\times$ $\mathbf{r}$''(t) = $\mathbf{i}$(0 - (-$\sin($t))) - $\mathbf{j}$(0 - (-$\cos($t))) + $\mathbf{k}$((-$\sin($t))(-$\sin($t)) - $\cos($t)(-$\cos($t)))

= $\mathbf{i}$($\sin($t)) - $\mathbf{j}$($\cos($t)) + $\mathbf{k}$($\sin^2$(t) + $\cos^2$(t))

$= \langle \sin(t), -\cos(t), 1 \rangle$

Next, find the magnitude:

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

We already found that $\|\mathbf{r}'(t)\| = \sqrt{2}$.

Now, the curvature is:

$\kappa$ = $\frac{\sqrt{2}}{(\sqrt{2})^3}$ = $\frac{\sqrt{2}}{2\sqrt{2}}$ = $\frac{1}{2}$

So the curvature of the helix is constant and equals $\frac{1}{2}$. This tells us the helix bends at the same rate everywhere.

Conclusion

In this lesson, we explored vector functions and their components. We learned how they describe motion in space, and how to differentiate and integrate them. We saw how velocity and acceleration vectors give us insight into how objects move, and we even calculated curvature to see how curves bend. Keep practicing, students, and soon you’ll be using vector functions to solve all kinds of real-world problems!

Study Notes

  • A vector function outputs a vector:

$$ \mathbf{r}(t) = \langle f(t), g(t), h(t) \rangle $$

  • Each component function $f(t)$, $g(t)$, $h(t)$ represents a coordinate in space.
  • Derivative of a vector function:

$$ \mathbf{r}'(t) = \langle f'(t), g'(t), h'(t) \rangle $$

  • Velocity vector: $\mathbf{r}'(t)$ describes the direction and speed of motion.
  • Speed is the magnitude of the velocity vector:

$$ \|\mathbf{r}'(t)\| = \sqrt{f'(t)^2 + g'(t)^2 + h'(t)^2} $$

  • Integral of a vector function:

$$ \int \mathbf{r}(t) \, dt = \langle \int f(t) \, dt, \int g(t) \, dt, \int h(t) \, dt \rangle + \mathbf{C} $$

  • Acceleration vector:

$$ \mathbf{r}''(t) = \langle f''(t), g''(t), h''(t) \rangle $$

  • Curvature formula:

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

  • Helical path example:

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

  • Helix curvature: $\kappa = \frac{1}{2}$
  • Real-world applications: Vector functions describe trajectories of drones, rockets, roller coasters, and particles.

Keep these notes handy, students, and refer back to them as you practice! 🚀

Practice Quiz

5 questions to test your understanding

Vector Functions — High School Calculus 3 | A-Warded