In this lesson you’ll learn about vector-valued functions, which describe curves in 3D space. You’ll see how to differentiate and integrate them component by component.
traces a helix. It circles around in x and y while climbing steadily in z.
The derivative (tangent/velocity vector) is
r′(t)=⟨−sint,cost,1⟩
The speed is constant
∣r′(t)∣=sin2t+cos2t+1=2
Drag to rotate · Scroll to zoom
The blue curve is the helix spiraling upward. The orange arrow is the tangent vector at one point, showing the direction of motion. The green dot marks the point on the curve. As you rotate the view, you can see how the helix wraps around the vertical axis.
Example 2: Tangent line at a point
For the vector function
r(t)=⟨t2,t,t⟩
find the tangent line at t = 1.
First, the point on the curve
r(1)=⟨1,1,1⟩
The derivative
r′(t)=⟨2t,1,2t1⟩
At t = 1
r′(1)=⟨2,1,0.5⟩
The tangent line is
L(s)=⟨1,1,1⟩+s⟨2,1,0.5⟩=⟨1+2s,1+s,1+0.5s⟩
Drag to rotate · Scroll to zoom
The blue curve is r(t) = (t², t, √t). The green dot marks the point (1, 1, 1) at t = 1. The orange arrow is the tangent vector r’(1) = (2, 1, 0.5), and the red line is the tangent line extending through that point in both directions.
Example 3: Integrating a vector function
∫⟨et,sint,t2⟩dt=⟨et,−cost,3t3⟩+C
Each component is integrated independently. The constant of integration is a constant vector (three constants, one per component).