A vector-valued function gives a point for each value of a parameter. In three dimensions, write
r(t)=⟨x(t),y(t),z(t)⟩.
The three component functions tell you where the point is along each axis. As t changes, the point moves and leaves a curve behind. It is useful to read t as time and r(t) as position at time t.
For example,
r(t)=⟨cost,sint⟩
moves around the unit circle. The identity cos2t+sin2t=1 tells us which path it follows. The order of the points tells us something extra: as t increases, the point travels counterclockwise.
The path is not the whole story
Now compare
r(t)=⟨cost,sint⟩
with
F(t)=⟨cos(2t),sin(2t)⟩.
Both trace the same geometric path, and both move counterclockwise. The second angle grows twice as quickly, though, so F goes around the circle twice as fast. A parametrization records the path, its direction, and how quickly the point moves along it.
A parameter gives a curve its direction
Increasing t sends the circle counterclockwise. For the helix, the same circular motion stays on x2+y2=1 while z=t raises the point through one full turn.
The derivative straightens the curve nearby
Take two nearby points on a curve, r(a) and r(a+h). Their difference
r(a+h)−r(a)
is the displacement from the first point to the second. Dividing by h turns it into an average rate of change:
hr(a+h)−r(a).
As h approaches zero, the two points come together and the secant direction settles toward the tangent direction. When the limit exists,
r′(a)=limh→0hr(a+h)−r(a).
This derivative is a vector. It points along the curve and its length measures speed.
Keep direction and speed separate
If r′(t)=0, the derivative gives a tangent direction. The tangent line through the point r(t0) is
L(s)=r(t0)+sr′(t0),s∈R.
Here t0 chooses the point on the curve, while s moves along the line. If we only want direction, divide the derivative by its length:
T(t)=∥r′(t)∥r′(t).
The result T(t) is the unit tangent vector. It points the same way as r′(t) but has length 1.
A secant direction becomes a tangent direction
The displacement between nearby points supplies the secant direction; its limit gives the tangent. On the unit circle at (−1,0), the counterclockwise tangent points in the direction ⟨0,−1⟩.
Vector-valued functions and parametric curves
A vector-valued function takes a real number as input and returns a vector. A function into three-dimensional space has the form
r:R→R3,
with
r(t)=⟨x(t),y(t),z(t)⟩=x(t)i+y(t)j+z(t)k.
The functions x(t), y(t), and z(t) are its component functions, while i, j, and k are the standard unit basis vectors. The same idea works in R2 or Rn.
The associated parametric curve is the set of points reached as the parameter varies:
{r(t):t∈R}={(x(t),y(t),z(t)):t∈R}.
The curve as a point set tells us where the motion goes. The parametrization also tells us the order in which the points are visited.
Reading a parametrization
A useful routine is:
Write out the component functions.
Plot a few easy parameter values.
Eliminate t when an identity reveals a familiar surface or curve.
Follow increasing values of t to find the direction of travel.
Example: the unit circle
Let
r(t)=⟨cost,sint⟩.
If x=cost and y=sint, then
x2+y2=cos2t+sin2t=1.
So the image is the unit circle. Starting at t=0, the points
(1,0),(0,1),(−1,0),(0,−1)
appear in that order, so the direction is counterclockwise.
Example: the helix
Consider
r(t)=⟨cost,sint,t⟩.
Five easy values show one full turn:
t
r(t)
0
⟨1,0,0⟩
π/2
⟨0,1,2π⟩
π
⟨−1,0,π⟩
3π/2
⟨0,−1,23π⟩
2π
⟨1,0,2π⟩
The first two components satisfy
x2+y2=cos2t+sin2t=1,
so the curve stays on the unit cylinder around the z-axis. At the same time, z=t rises steadily. Circular motion plus vertical motion produces a helix.
Example: a curve that is easier to graph by computer
Some component formulas do not reveal their shape quickly. For example,
The components still define the curve exactly, but a reliable sketch needs many points. This is where graphing software is more useful than trying to guess the three-dimensional shape from a handful of values.
Limits and continuity
Limits of vector-valued functions are taken one component at a time. If
Taking the limit componentwise gives the main rule:
r′(t)=⟨x′(t),y′(t),z′(t)⟩.
So a vector-valued function is differentiable when its component functions are differentiable. The calculation is familiar; what changes is the geometric meaning of the answer.
Tangent vectors, tangent lines, and speed
For a differentiable curve, the derivative r′(t) is its velocity vector. It contains two pieces of information:
speed=∥r′(t)∥,
while the direction comes from the derivative itself. When r′(t)=0, it is a tangent vector at r(t).
For the helix r(t)=⟨cost,sint,t⟩ discussed earlier, its derivative is
r′(t)=⟨−sint,cost,1⟩.
The speed is constant because
∥r′(t)∥=sin2t+cos2t+1=2.
At a fixed parameter value t0, the tangent line is
L(s)=r(t0)+sr′(t0),s∈R.
Any nonzero scalar multiple of r′(t0) describes the same geometric line. It only changes how the line parameter s runs along it.
The unit tangent vector removes the speed:
T(t)=∥r′(t)∥r′(t)
provided r′(t)=0. The nonzero condition matters because the zero vector has no direction and cannot be normalized.
Comparing two parametrizations at the same point
Example: the usual unit-circle parametrization
For
r(t)=⟨cost,sint⟩,
we have
r′(t)=⟨−sint,cost⟩.
At t=π,
r(π)=⟨−1,0⟩,r′(π)=⟨0,−1⟩.
The derivative already has length 1, so
T(π)=⟨0,−1⟩.
The tangent line is therefore
L(s)=⟨−1,0⟩+s⟨0,−1⟩,s∈R.
This is the vertical line x=−1.
Example: the same circle at a different speed
Now use
F(t)=⟨cos(2t),sin(2t)⟩.
This is the same geometric circle with the same counterclockwise direction, but its derivative is
F′(t)=⟨−2sin(2t),2cos(2t)⟩.
The point (−1,0) occurs sooner, at t=π/2:
F(π/2)=⟨−1,0⟩,F′(π/2)=⟨0,−2⟩.
The tangent vector points downward as before, but it is twice as long:
∥F′(π/2)∥=2.
After normalization,
T(π/2)=⟨0,−1⟩.
Both parametrizations reach the same point on the same path and have the same unit tangent direction. Their velocity vectors differ because the second motion has speed 2 instead of speed 1.