Learning targets.

  1. Define curvature \(\kappa\) as a quantitative measure of turning.
  2. Construct the unit tangent \(T\) and show \(T\cdot T’=0\).
  3. Define arc length \(s\) and obtain the intrinsic formula \(\kappa = \left|\dfrac{dT}{ds}\right|\).
  4. Compute curvature for a line and for a circle (recovering \(\kappa=0\) and \(\kappa=1/R\)).

Board plan (five boxes).

  • (B1) Regular curve \(r(t)\) and unit tangent \(T(t)\).
  • (B2) Orthogonality: \(T\cdot T’=0\).
  • (B3) Arc length: \(s(t)=\int_{t_0}^t |r'(u)|\,du\), hence \(ds/dt=|r'(t)|\).
  • (B4) Curvature: \(\kappa=\left|dT/ds\right| = \left|T'(t)\right|/|r'(t)|\).
  • (B5) Examples: line \(\kappa=0\); circle \(\kappa=1/R\).

Active learning rhythm.

  • After each section: 30–60s “stop & check”.
  • Do one complete proof in class (orthogonality of \(T\) and \(T’\)).
  • Use reveal blocks for longer derivations.

Instructor pacing (suggested). 0–10 intuition; 10–25 unit tangent; 25–40 arc length; 40–55 curvature formula; 55–65 examples; 65–72 angle interpretation; 72–75 exit ticket.

Curvature \(\kappa\) measures how sharply a curve turns at a point.

Two benchmarks.

  • Straight line: no turning, so \(\kappa=0\).
  • Circle of radius \(R\): uniform turning; smaller \(R\) means sharper turning, so \(\kappa\) should scale like \(1/R\).

Setup. Let \(r:I\to\mathbb{R}^2\) or \(\mathbb{R}^3\) be a \(C^2\) curve.

Regular curve. The curve is regular if \(r'(t)\neq 0\) for all \(t\in I\). This ensures the direction of motion is well-defined.

Unit tangent. Define the unit tangent vector

\[ T(t) := \frac{r'(t)}{|r'(t)|}. \]

Then \(|T(t)|=1\) for all \(t\).

Key lemma. \(T(t)\cdot T'(t)=0\). Thus \(T'(t)\) is orthogonal to \(T(t)\).

Stop & check (45s). Explain in one sentence why \(T’\perp T\) should be geometrically reasonable.

Curvature is a geometric property of the traced curve; it should not depend on how fast we traverse the curve.

Arc length function. Fix \(t_0\in I\). Define

\[ s(t) := \int_{t_0}^{t} |r'(u)|\,du. \]

Then \(\dfrac{ds}{dt} = |r'(t)|\).

Consequences. If \(r\) is regular, then \(ds/dt>0\), hence \(s(t)\) is strictly increasing and can be used as a new parameter (“arc-length parametrization”).

Definition (Curvature). For a regular \(C^2\) curve, define curvature by

\[ \kappa(t) := \left|\frac{dT}{ds}\right|. \]

Main identity.

\[ \kappa(t)=\frac{|T'(t)|}{|r'(t)|}. \]

Computation-ready formulas.

Stop & check (60s). Why does curvature involve dividing by speed \( |r'(t)| \)?

Example (Line). Let \(r(t)=r_0 + tv\). Then \(r'(t)=v\) is constant, hence \(T\) is constant and \(T'(t)=0\). Therefore \(\kappa(t)=0\).

Example (Circle). Let \(r(t)=(R\cos t, R\sin t)\). Then

\[ r'(t)=(-R\sin t, R\cos t), \quad |r'(t)|=R. \]

Hence \(T(t)=(-\sin t,\cos t)\) and \(T'(t)=(-\cos t,-\sin t)\), so \(|T'(t)|=1\). Thus

\[ \kappa(t)=\frac{|T'(t)|}{|r'(t)|} = \frac{1}{R}. \]

In the plane, curvature is literally a “turning rate.”

Interpretation. If \(\varphi\) is the tangent angle, then curvature is the rate of change of that angle per unit arc length.

Practical computation. For curves given parametrically, the cross-product formula is typically the most robust.

(* Mathematica: curvature for r(t) in R^3 *)
r[t_] := {a Cos[t], a Sin[t], b t};
kappa[t_] := Norm[Cross[D[r[t], t], D[r[t], {t, 2}]]]/Norm[D[r[t], t]]^3;
Plot[kappa[t], {t, -10, 10}]

(* Mathematica: curvature for planar r(t) = {x(t), y(t)} *)
r2[t_] := {t, t^2};
kappa2[t_] := Abs[Det[{D[r2[t], t], D[r2[t], {t, 2}]}]]/Norm[D[r2[t], t]]^3;
Plot[kappa2[t], {t, -2, 2}]

Embedded lecture video. (VideoPress)

If your theme blocks iframes, embed the VideoPress URL using a WordPress Video block instead.

Answer quickly.

  1. State the definition \(\kappa = |dT/ds|\).
  2. Why do we assume \(r'(t)\neq 0\)?
  3. What is \(\kappa\) for a circle of radius \(R\)?
This page presents a standard differential-geometry definition of curvature for regular curves \(r:I\to\mathbb{R}^2\) or \(\mathbb{R}^3\).