CALCULUS 2 • PARAMETRIC, POLAR & VECTOR FUNCTIONS

Vector-Valued Functions & Derivatives — Defining and Differentiating Vector-Valued Functions

Extend differentiation to functions that trace curves through space, unifying motion, geometry, and multivariable analysis.

Historical Context & Motivation

Throughout much of the history of mathematics, functions were understood as rules that map a single real number to another real number — the familiar y = f(x) paradigm. While enormously powerful, this scalar-valued framework struggles to describe phenomena that are inherently multidimensional: the trajectory of a planet, the velocity of a fluid particle, or the curvature of a wire in three-dimensional space. The mathematical language needed to handle such problems evolved gradually, driven by the intertwined demands of physics and geometry. The story of vector-valued functions is, in essence, the story of mathematicians learning to let calculus operate on objects richer than single numbers.

1687
Newton's Principia
Isaac Newton describes planetary motion using geometric constructions that implicitly treat position and velocity as directed quantities, foreshadowing vector-valued descriptions of curves in space.
1843
Hamilton's Quaternions
William Rowan Hamilton introduces quaternions, the first rigorous algebraic system for representing directed quantities in three dimensions, catalyzing the formal treatment of vectors.
1881
Gibbs & Heaviside Develop Vector Analysis
Josiah Willard Gibbs and Oliver Heaviside independently distill the quaternion framework into the modern vector algebra of dot products, cross products, and component notation still used today.
1900s
Vector Calculus in Physics & Engineering
Electromagnetic theory, fluid dynamics, and differential geometry adopt vector-valued functions and their derivatives as indispensable tools, embedding the concepts firmly in the undergraduate curriculum.

The central question this lesson addresses is deceptively simple: if a function's output is a vector rather than a scalar, what does it mean to take its derivative, and how do the familiar rules of single-variable calculus extend to this richer setting? Answering this question unlocks a powerful toolkit for analyzing curves, motion, and change in multiple dimensions simultaneously.

Core Principles & Definitions

A vector-valued function is a function whose domain is a subset of the real numbers and whose range consists of vectors. In two dimensions we write r(t) = ⟨f(t), g(t)⟩, and in three dimensions r(t) = ⟨f(t), g(t), h(t)⟩, where f, g, and h are ordinary real-valued functions called component functions. The parameter t often represents time, but it can be any real variable. As t varies over an interval, the tip of the position vector r(t) traces out a space curve — a continuous path through ℝ² or ℝ³.

1

Vector-Valued Function

A rule r(t) = ⟨f(t), g(t), h(t)⟩ assigning a vector to each value of the parameter t. The output lives in ℝ² or ℝ³ rather than on the real line.
2

Component Functions

The individual scalar functions f(t), g(t), h(t) whose outputs form the entries of the vector. Each component function is analyzed using standard single-variable calculus.
3

Domain & Continuity

The domain of r(t) is the intersection of the domains of its component functions. r is continuous at t₀ if and only if every component function is continuous at t₀.
4

Derivative (Tangent Vector)

r′(t) = ⟨f′(t), g′(t), h′(t)⟩, obtained by differentiating each component independently. The result is a vector tangent to the curve at the point r(t).
5

Unit Tangent Vector

T(t) = r′(t) / ‖r′(t)‖ normalizes the tangent vector to unit length, isolating the direction of motion from the speed along the curve.
KEY TAKEAWAY
Think of a vector-valued function as a set of synchronized instructions: one component tells you how far east to go, another how far north, and a third how high to climb — all as functions of the same clock. Differentiating the function is like reading three speedometers at once: each component's derivative reports the instantaneous rate of change in its own direction, and together they form the tangent vector pointing along the curve. This is precisely the mechanism by which GPS satellites compute your velocity from position data.

Visualizing a Vector-Valued Function

The diagram below illustrates the vector-valued function r(t) = ⟨cos t, sin t⟩ for t ∈ [0, 2π]. As the parameter t advances, the tip of the position vector traces a unit circle. At several sample points the position vector r(t) is drawn from the origin to the curve, and the tangent vector r′(t) = ⟨−sin t, cos t⟩ is attached at the corresponding point. Notice that each tangent vector is perpendicular to its position vector — a signature property of uniform circular motion.

The cyan arrows are position vectors r(t) from the origin; the pink arrows are the corresponding derivative (tangent) vectors r′(t). Each tangent vector is perpendicular to its position vector, reflecting the fact that the speed is constant and the direction alone is changing.

This geometric relationship — the tangent vector being perpendicular to the radius — is not a coincidence. When a curve lies on a circle of constant radius, the position and tangent vectors must be orthogonal because the magnitude of r(t) is constant. Differentiating ‖r(t)‖² = r(t) · r(t) = constant gives 2 r(t) · r′(t) = 0, confirming orthogonality. This is a prototype argument you will encounter repeatedly in differential geometry and physics.

Mathematical Framework

The formal definition of the derivative of a vector-valued function mirrors the limit definition from single-variable calculus. We define r′(t) as the limit of a difference quotient of vectors, and the result decomposes cleanly into derivatives of the component functions.

DEFINITION OF THE DERIVATIVE
r′(t) = lim[Δt→0] ( r(t + Δt) − r(t) ) / Δt
Here r(t + Δt) − r(t) is a secant vector connecting two points on the curve. As Δt → 0 the secant approaches the tangent direction.
COMPONENT-WISE DIFFERENTIATION
r′(t) = ⟨ f′(t), g′(t), h′(t) ⟩
Each component is differentiated independently using standard single-variable rules. This is valid because the limit of a vector equals the vector of limits when each component limit exists.
UNIT TANGENT VECTOR
T(t) = r′(t) / ‖r′(t)‖
T(t) preserves the direction of motion while normalizing the magnitude to 1. It is defined wherever r′(t) ≠ 0; a point where r′(t) = 0 is called a singular point of the parametrization.

Differentiation Rules for Vector-Valued Functions

Many differentiation rules carry over from scalar calculus, but the product rules require care because there are multiple types of vector products. Let u(t) and v(t) be differentiable vector-valued functions, c(t) a differentiable scalar function, and k a constant vector.

Key differentiation rules for vector-valued functions
RuleFormula
Constant multipled/dt [k] = 0
Sum / Difference[u(t) ± v(t)]′ = u′(t) ± v′(t)
Scalar–vector product[c(t) u(t)]′ = c′(t) u(t) + c(t) u′(t)
Dot product[u(t) · v(t)]′ = u′(t) · v(t) + u(t) · v′(t)
Cross product[u(t) × v(t)]′ = u′(t) × v(t) + u(t) × v′(t) (order matters!)
Chain ruled/dt [u(c(t))] = u′(c(t)) · c′(t)
⚠️ Order Matters in the Cross Product
Because the cross product is anti-commutative (u × v = −v × u), reversing the order of factors in the cross-product rule changes the sign. Always differentiate the first factor first and keep the original order in both terms: u′ × v + u × v′.

Tangent Vectors, Speed, and Smooth Curves

Once we have the derivative r′(t), we can extract two distinct pieces of information: the direction of motion and the speed. The direction is captured by the unit tangent vector T(t) = r′(t)/‖r′(t)‖, while the speed is the magnitude ‖r′(t)‖ itself. A curve is called smooth on an interval if r′(t) is continuous and r′(t) ≠ 0 on that interval — guaranteeing a well-defined tangent direction at every point. Smooth curves have no cusps, corners, or backtracking under the given parametrization.

A circular helix in three dimensions. The amber tangent vectors are computed by differentiating each component: r′(t) = ⟨−sin t, cos t, 1/3⟩. The constant z-component 1/3 produces a uniform upward drift, making the tangent vectors tilt away from the horizontal plane by the same angle at every point.

For the helix r(t) = ⟨cos t, sin t, t/3⟩, the speed is ‖r′(t)‖ = √(sin²t + cos²t + 1/9) = √(10/9) = √10/3, a constant. Constant-speed curves simplify many computations — in particular, the unit tangent vector is simply T(t) = (3/√10)⟨−sin t, cos t, 1/3⟩. The concept of arc-length parametrization generalizes this idea: any smooth curve can be re-parametrized so that ‖r′(s)‖ = 1 for all s, where s measures distance traveled along the curve. This parametrization is canonical and is the starting point for defining curvature and torsion.

SPEED AND ARC LENGTH
speed = ‖r′(t)‖ = √[ (f′(t))² + (g′(t))² + (h′(t))² ], L = ∫ₐᵇ ‖r′(t)‖ dt
L gives the total arc length of the curve from t = a to t = b. This integral is the natural generalization of the arc-length formula from parametric equations in the plane.

Worked Example

Let us work through a complete problem that ties together definition, differentiation, and geometric interpretation. We will find the derivative, unit tangent vector, and a tangent line for a vector-valued function in ℝ³.

Differentiating r(t) = ⟨t², e^(−t), 3t⟩ and Finding the Tangent Line at t = 1
1
Step 1 — Identify the Component FunctionsThe vector-valued function is r(t) = ⟨t², e−t, 3t⟩, so the component functions are f(t) = t², g(t) = e−t, and h(t) = 3t. All three are differentiable on all of ℝ, so the domain is (−∞, ∞).
2
Step 2 — Differentiate Component-WiseApplying standard rules: f′(t) = 2t, g′(t) = −e−t, h′(t) = 3. Therefore r′(t) = ⟨2t, −e−t, 3⟩.
r′(t) = ⟨2t, −e−t, 3⟩
3
Step 3 — Evaluate at t = 1The position at t = 1 is r(1) = ⟨1, e−1, 3⟩ ≈ ⟨1, 0.3679, 3⟩. The tangent vector is r′(1) = ⟨2, −e−1, 3⟩ ≈ ⟨2, −0.3679, 3⟩.
r′(1) = ⟨2, −e⁻¹, 3⟩
4
Step 4 — Compute the Speed and Unit Tangent Vector‖r′(1)‖ = √(4 + e⁻² + 9) = √(13 + e⁻²) ≈ √(13.1353) ≈ 3.624. The unit tangent vector at t = 1 is T(1) = r′(1)/‖r′(1)‖ = (1/√(13 + e⁻²)) ⟨2, −e⁻¹, 3⟩ ≈ ⟨0.552, −0.102, 0.828⟩.
T(1) ≈ ⟨0.552, −0.102, 0.828⟩
5
Step 5 — Write the Tangent LineThe tangent line at t = 1 passes through r(1) in the direction r′(1). Its parametric equation is ℓ(s) = r(1) + s · r′(1) = ⟨1 + 2s, e⁻¹ − se⁻¹, 3 + 3s⟩ for s ∈ ℝ. This line is the best linear approximation to the curve near t = 1.
ℓ(s) = ⟨1 + 2s, e⁻¹(1 − s), 3 + 3s⟩

Scalar Derivatives vs. Vector Derivatives

Students transitioning from single-variable calculus to vector-valued functions often wonder what genuinely changes. The comparison table below highlights where the concepts align and where they diverge, helping you leverage your existing knowledge while avoiding common pitfalls.

Comparison of scalar and vector differentiation
FeatureScalar Function y = f(t)Vector-Valued Function r(t)
OutputA single real numberA vector in ℝ² or ℝ³
Derivative outputA number (slope of tangent line)A vector (tangent to the space curve)
InterpretationRate of change of a quantityVelocity vector — direction and magnitude of change
Product ruleOne version: (fg)′ = f′g + fg′Three versions: scalar×vector, dot product, cross product
Mean Value TheoremApplies directlyDoes NOT hold for vector-valued functions in general
Zero derivative implies constant?Yes (on an interval)Yes — r′(t) = 0 for all t ⇒ r is constant (proof uses component-wise argument)
KEY TAKEAWAY
The derivative of a vector-valued function is richer than a scalar derivative because it encodes both speed (its magnitude) and direction (its orientation). Think of it like the difference between a car's speedometer reading (scalar) and its GPS velocity readout (vector): the speedometer tells you how fast, but the GPS tells you how fast and in which direction. Most of single-variable calculus carries over component-by-component, but the Mean Value Theorem is a notable exception — a fact with real consequences for existence-and-uniqueness proofs in ODE theory.

Connection to Advanced Theory

Defining and differentiating vector-valued functions is the first step in a rich hierarchy of ideas that extends through multivariable calculus, differential geometry, and mathematical physics. Understanding where this topic fits in the bigger picture helps motivate the careful definitions developed in this lesson.

From vector-valued derivatives to advanced topics
This Lesson's TopicAdvanced Extension
r′(t) — tangent vectorCurvature κ(t) = ‖T′(t)‖ / ‖r′(t)‖ measures how fast the curve bends
Unit tangent T(t)Frenet–Serret frame {T, N, B} — a moving coordinate system on the curve
Speed ‖r′(t)‖Arc-length parametrization s(t) = ∫₀ᵗ ‖r′(u)‖ du
r″(t) — second derivativeAcceleration decomposition: a = aₜT + aₙN (tangential + normal components)
Parametric curve in ℝ³Parametric surfaces r(u, v) and the calculus of surfaces (Calc 3, differential geometry)

In the next units of this course, you will use the machinery developed here to decompose acceleration into tangential and normal components, compute the curvature of space curves, and parametrize surfaces in ℝ³. In physics, the same ideas underpin Newton's second law in curvilinear coordinates: the equation F = ma becomes meaningful in three dimensions precisely because a(t) = r″(t) is a vector-valued derivative. Mastering the component-wise differentiation technique now will pay dividends across every branch of applied mathematics and engineering you encounter.

Practice Problems

PROBLEM 1CONCEPTUAL
Explain in your own words why the derivative r′(t) of a vector-valued function is itself a vector rather than a scalar. What geometric and physical information does r′(t) encode that a scalar derivative cannot?
PROBLEM 2BASIC CALCULATION
Let r(t) = ⟨sin(2t), t³, et⟩. Compute r′(t) and evaluate r′(0).
PROBLEM 3INTERMEDIATE
For r(t) = ⟨t − sin t, 1 − cos t⟩ (a cycloid), find the unit tangent vector T(t) and determine all values of t in [0, 2π] where T(t) is undefined. What happens geometrically at those points?
PROBLEM 4APPLIED
A particle's position is given by r(t) = ⟨4cos t, 4sin t, 3t⟩ (a helix on a cylinder of radius 4). (a) Find the velocity and speed. (b) Compute the total distance traveled from t = 0 to t = 6π. (c) Interpret the result in terms of the geometry of the helix.
PROBLEM 5CRITICAL THINKING
Prove that if ‖r(t)‖ = c (constant) for all t in an interval, then r(t) · r′(t) = 0 for all t in that interval. Discuss the geometric meaning of this result and give a concrete example.

Lesson Summary

A vector-valued function r(t) = ⟨f(t), g(t), h(t)⟩ assigns a vector to each scalar input t, and as t varies the tip of r traces a space curve. Its derivative is computed by differentiating each component function independently: r′(t) = ⟨f′(t), g′(t), h′(t)⟩. The resulting tangent vector points in the instantaneous direction of motion, and its magnitude ‖r′(t)‖ equals the speed along the curve.

All standard differentiation rules — sum, product (scalar×vector, dot product, cross product), and chain rule — extend to vector-valued functions, with the caveat that order matters for the cross product. The unit tangent vector T(t) = r′(t)/‖r′(t)‖ isolates the direction of motion, and arc length is obtained by integrating the speed. These ideas form the foundation for curvature, the Frenet–Serret frame, and the acceleration decomposition that follow in subsequent lessons.

Varsity Tutors • Calculus 2 • Vector-Valued Functions & Derivatives