Vector Functions and Motion
Vector functions describe curves and motion in the plane or in space. Instead of tracking one output, a vector function tracks several coordinates at once. The derivative of a vector function gives velocity, and the second derivative gives acceleration. This makes vector calculus a natural extension of parametric calculus.
Motion problems become clearer when position, velocity, acceleration, speed, tangent direction, and curvature are separated. The vector notation keeps direction and magnitude together while still allowing ordinary differentiation component by component.
Definitions
A vector-valued function in space has form
Its derivative is
For motion, position is , velocity is
and acceleration is
Speed is the magnitude of velocity:
The unit tangent vector is
when .
Arc length from to is
Curvature measures how quickly the tangent direction changes with respect to arc length. In space,
when the denominator is nonzero.
Key results
Vector differentiation is componentwise:
Dot and cross products obey product rules:
and
If speed is constant, then velocity and acceleration are orthogonal. This follows by differentiating
If is constant, the derivative of the left side is
so .
Acceleration splits into tangential and normal components:
The tangential component changes speed:
The normal component changes direction. One formula is
Projectile motion without air resistance has constant acceleration
in the plane. Integrating gives velocity and position, with constants determined by initial velocity and initial position.
A curve is regular at if . Regularity matters because tangent direction and curvature require a nonzero velocity vector. A parametrization may stop momentarily even when the geometric curve continues smoothly, so conclusions about tangents should distinguish the parametrization from the curve itself.
Arc length can be used to reparametrize a curve. Define
If can be inverted, the curve can be written in terms of arc length. In an arc-length parametrization, speed is , and curvature simplifies to
This is conceptually important even when the inversion is algebraically difficult.
The unit normal vector points in the direction the curve is turning:
when . The binormal vector is
Together, , , and form the moving frame used to describe space curves.
Tangential and normal acceleration separate speed change from direction change. If an object moves at constant speed around a circle, its tangential acceleration is zero but its normal acceleration is not. This is the vector reason uniform circular motion still has acceleration.
Vector integrals are componentwise. If
then
Constants of integration become constant vectors, fixed by initial position.
A smooth curve can be studied as geometry or as motion. The same set of points may have different parametrizations with different speeds. For example, and trace the same unit circle, but the second moves twice as fast. Curvature is geometric and does not depend on speed, while velocity and acceleration do depend on the parametrization.
For plane curves, curvature can also be written in terms of coordinate functions:
This is the two-dimensional version of the cross-product formula.
The tangent line to a vector curve at is
provided . The normal plane in space is
These formulas mirror line and plane geometry: the tangent line uses the velocity as direction, and the normal plane uses velocity as normal.
Energy intuition can also help. Acceleration parallel to velocity changes speed; acceleration perpendicular to velocity changes direction. The dot product detects the tangential part. If it is positive, speed is increasing; if negative, speed is decreasing; if zero, speed is momentarily constant.
Line integrals later use the same parametrized motion language. A vector field evaluated along a path becomes , and the differential displacement is . Thus the work integral
is built from velocity along a vector-parametrized curve.
For numerical work, vector functions are sampled componentwise. A small time step estimates displacement by
More accurate methods use acceleration and higher derivatives, but the geometric interpretation remains: velocity gives the local tangent displacement.
When acceleration is constant, the vector kinematic formula is
This is just the componentwise antiderivative of constant acceleration. It works in two or three dimensions as long as the acceleration vector is constant. Projectile motion is the standard example, with gravity contributing only to the vertical component in the simplest model.
Speed controls arc length but not position alone. Two particles can pass through the same point at the same time with different velocities, or trace the same curve with different timing. The vector function includes both the geometric path and the schedule along that path, which is why the parameter interval and initial conditions are part of the model.
Visual
| Quantity | Formula | Meaning |
|---|---|---|
| Position | location | |
| Velocity | rate of change of position | |
| Speed | scalar rate of travel | |
| Acceleration | rate of change of velocity | |
| Unit tangent | direction of motion | |
| Curvature | turning per unit length |
Worked example 1: helix motion
Problem. Let
Find velocity, speed, acceleration, and curvature.
Method.
- Differentiate position:
- Compute speed:
- Differentiate velocity:
- Compute the cross product:
- Its magnitude is
- Curvature is
Checked answer. The helix has constant speed and constant curvature . Constant speed also implies , which can be checked directly.
Indeed,
The acceleration is not zero; it points inward toward the axis of the helix's circular projection. This illustrates the difference between changing direction and changing speed.
Worked example 2: projectile motion
Problem. A projectile starts at the origin with initial velocity
ft/s and acceleration
ft/s. Find position and the time when it returns to ground level.
Method.
- Integrate acceleration:
- Use :
- Integrate velocity:
-
Since the projectile starts at the origin, , so .
-
The height is
- Return to ground level means :
- The positive return time is
Checked answer. Position is
and the projectile returns to ground level at seconds.
The horizontal range is found by substituting into :
So the projectile lands ft from the starting point. The vertical velocity at impact is
which has the same magnitude as the initial vertical velocity but opposite sign because the launch and landing heights match.
The speed at impact is therefore
This equals the initial speed ft/s in the ideal no-air-resistance model, another consistency check.
If launch and landing heights differed, that equality would generally fail because gravity would change kinetic energy relative to the starting height.
Code
from math import sin, cos, sqrt
def helix(t):
r = (cos(t), sin(t), t)
v = (-sin(t), cos(t), 1)
a = (-cos(t), -sin(t), 0)
speed = sqrt(sum(component * component for component in v))
return r, v, a, speed
for t in [0, 1, 2]:
print(t, helix(t))
Common pitfalls
- Confusing velocity with speed. Velocity is a vector; speed is its magnitude.
- Differentiating vector magnitudes as if . This is not generally true.
- Forgetting that constant speed does not mean zero acceleration. Direction can change.
- Using scalar projectile formulas without tracking vector components and units.
- Computing curvature when without checking regularity.
- Treating parameter as arc length when speed is not .
Connections
- Vectors and Geometry of Space: vector operations support motion formulas.
- Parametric Polar and Conic Curves: vector functions generalize parametric curves.
- Partial Derivatives and the Gradient: curves through surfaces support directional derivatives.
- Vector Calculus: line integrals use vector fields along vector-parametrized curves.