Linear Algebra
13.810 min read

Geometry of Trajectories

The tangent vector γ(t)\boldsymbol{\gamma}'(t) encodes the local geometry of the trajectory. The tangent line to the curve at γ(t0)\boldsymbol{\gamma}(t_0) is the line through γ(t0)\boldsymbol{\gamma}(t_0) in direction γ(t0)\boldsymbol{\gamma}'(t_0): {γ(t0)+sγ(t0):sR}\{\boldsymbol{\gamma}(t_0) + s\boldsymbol{\gamma}'(t_0) : s \in \mathbb{R}\}.

The arc length from t=at=a to t=bt=b is L=abγ(t)dtL = \int_a^b \|\boldsymbol{\gamma}'(t)\|\,dt — the integral of speed over time. Curvature κ=T(t)/γ(t)\kappa = \|\mathbf{T}'(t)\|/\|\boldsymbol{\gamma}'(t)\| (where T=γ/γ\mathbf{T} = \boldsymbol{\gamma}'/\|\boldsymbol{\gamma}'\| is the unit tangent) measures how quickly the curve turns.

Two key geometric facts about curves in the plane: (1) Constant speed (γ=c\|\boldsymbol{\gamma}'\| = c) means the speed vector has no tangential acceleration: γ(t)γ(t)=0\boldsymbol{\gamma}'(t) \cdot \boldsymbol{\gamma}''(t) = 0. (2) Circular trajectories have constant nonzero curvature.

Formal View

Definition 13.7 — Arc Length
The arc length of γ:[a,b]Rm\boldsymbol{\gamma}: [a,b] \to \mathbb{R}^m is
L(γ)=abγ(t)dtL(\boldsymbol{\gamma}) = \int_a^b \|\boldsymbol{\gamma}'(t)\|\,dt

Arc length is parametrization-independent: different parametrizations of the same geometric curve give the same arc length.

Interactive Visualization

Span Visualizer

Why This Matters

Arc length and curvature are fundamental to differential geometry and appear throughout physics and engineering.

  • Robot path planning: minimizing path length subject to curvature constraints
  • Computer graphics: Bézier curves and splines characterized by their curvature profiles
  • Geodesics on manifolds generalize arc-length minimization to curved spaces

Quiz

Question 1

The arc length of γ(t)=(3cost,3sint)\boldsymbol{\gamma}(t) = (3\cos t, 3\sin t) for t[0,2π]t \in [0, 2\pi] is:

Question 2

Two different parametrizations of the same geometric curve always give the same arc length.

Common Mistakes

  • Computing arc length as abγ(t)dt\int_a^b \boldsymbol{\gamma}'(t)\,dt (a vector integral) instead of abγ(t)dt\int_a^b \|\boldsymbol{\gamma}'(t)\|\,dt (an integral of the speed).
  • Confusing speed (scalar) with velocity (vector).
  • Assuming arc length equals the parameter range bab-a — this is only true for unit-speed parametrizations.