MULTIVARIABLE CALCULUS • LINE INTEGRALS

Parametrizing Curves — Parametrize curves for line integrals

Learn to describe curves with a single variable so you can evaluate integrals along any path.

Historical Context & Motivation

Mathematicians and physicists have always needed ways to describe motion along curved paths. Whether tracking a planet around the sun or calculating work done by a force along a wire, the key challenge is the same: how do you describe a curve precisely enough to perform calculations on it? The answer lies in parametrization — expressing the coordinates of every point on a curve as functions of a single variable, usually called t.

The idea of describing curves through parameters developed over several centuries, driven by problems in physics and geometry. Early work on planetary orbits, the mathematics of fluid flow, and the study of electricity all demanded tools that could handle curves more complex than simple lines or circles.

1637
Descartes & Analytic Geometry
René Descartes published La Géométrie, introducing coordinate systems that let mathematicians describe curves with algebraic equations. This was the first step toward parametrization.
1687
Newton's Principia
Isaac Newton used time as a parameter to describe the motion of objects along curves. His approach to calculus naturally treated position as a function of time — essentially parametrizing trajectories.
1760s
Euler & Parametric Equations
Leonhard Euler formalized the concept of writing x and y as separate functions of a parameter t. This gave mathematicians a flexible tool for describing curves that couldn't be expressed as y = f(x).
1820s–1850s
Cauchy & Line Integrals
Augustin-Louis Cauchy developed rigorous foundations for integrating functions along curves in the complex plane, cementing the role of parametrization in calculus.
Modern Era
Applications Everywhere
Today, parametrized curves are essential in computer graphics, robotics, physics simulations, and engineering — anywhere a path through space must be described mathematically.

The central question this lesson addresses is: How do we convert a curve described by an equation into a form suitable for computing a line integral? Once you learn to parametrize curves, you unlock the ability to integrate functions along any path — straight, curved, or looping.

Core Principles & Definitions

Before diving into calculations, you need to understand what parametrization really means and why it matters for line integrals. A parametric curve is a curve in the plane (or in space) described by equations that express each coordinate as a function of a single variable t. Think of t as a clock: as it ticks from some starting value to an ending value, it traces out the curve point by point.

1

Parametric Equations

A curve C is described by x = f(t) and y = g(t), where t ranges over an interval [a, b]. Each value of t gives a specific point (x, y) on the curve.
2

Direction & Orientation

As t increases from a to b, the parametrization traces the curve in a specific direction. This orientation matters because reversing it can change the sign of a line integral.
3

Smooth Curves

A curve is called smooth if f′(t) and g′(t) are continuous and never simultaneously zero on (a, b). This ensures the curve has no sharp corners or stops.
4

Arc-Length Element ds

The infinitesimal arc length is ds = √[(dx/dt)² + (dy/dt)²] dt. This converts a geometric measurement along the curve into something you can integrate over t.
5

Multiple Parametrizations

The same curve can be parametrized in many ways. For example, a circle can use angle, arc length, or a time-based parameter. The value of a line integral with respect to arc length is independent of the choice.
KEY TAKEAWAY
Parametrization is like giving GPS directions to a cursor. Instead of describing a whole curve at once with an equation like y = x², you say: "At time t = 0 start here, at time t = 1 be there, at time t = 2 arrive there." The parameter t acts as a remote control that moves a point along the curve from start to finish, and that sequential description is exactly what integration needs.

Visual Explanation — Tracing a Parametric Curve

The diagram below shows a parabola y = x² parametrized as x = t, y = t² for t ∈ [0, 2]. Several points along the curve are labeled with their t-values, and an arrow shows the direction the curve is traced as t increases. Notice how equal steps in t do not necessarily correspond to equal distances along the curve — the points bunch together near the vertex where the curve is flatter.

The parabola y = x² parametrized by r(t) = (t, t²). Colored dots mark specific t-values, and the arrow indicates the direction the curve is traced as t increases from 0 to 2.

In the diagram, each colored dot represents a moment in "parametric time." The cyan dot at the origin is where the journey begins at t = 0, and the green dot at (2, 4) is where it ends at t = 2. The gradient-colored curve connecting these points is traced in one continuous motion, and the arrow confirms the direction. This is precisely the kind of information a line integral needs: a starting point, an ending point, a path connecting them, and a direction of travel.

Mathematical Framework

Once you have a parametrization of a curve, you can set up a line integral. There are two main types of line integrals you will encounter: scalar line integrals (integrating a function with respect to arc length) and vector line integrals (integrating a vector field along the curve). Both rely on the same parametrization skills.

Parametric Representation

PARAMETRIC CURVE IN 2D
r(t) = ( x(t), y(t) ), a ≤ t ≤ b
r(t) is the position vector. x(t) and y(t) are component functions. The parameter t runs from a (start) to b (end).

Arc-Length Element

DIFFERENTIAL ARC LENGTH
ds = √[ (dx/dt)² + (dy/dt)² ] dt
This converts a tiny change in t into the actual distance traveled along the curve. The expression under the square root is the speed at which the point moves along the curve, often written ‖r′(t)‖.

Scalar Line Integral

SCALAR LINE INTEGRAL
∫_C f ds = ∫_a^b f(x(t), y(t)) · √[ (dx/dt)² + (dy/dt)² ] dt
Here f is a scalar function (like temperature or density) evaluated along the curve. You substitute the parametric expressions for x and y, multiply by ds, and integrate over t.

Vector Line Integral

VECTOR LINE INTEGRAL (WORK)
∫_C F · dr = ∫_a^b F(r(t)) · r′(t) dt
F is a vector field, r′(t) = (dx/dt, dy/dt) is the velocity vector of the parametrization, and the dot denotes the dot product. This integral computes work done by the field along the curve.
💡 Why parametrization matters
Without a parametrization, you have no way to express ds or dr in terms of a single integration variable. The parametrization converts a problem defined on a curved path into an ordinary single-variable integral that you already know how to evaluate.

Common Parametrizations You Should Know

Certain curves come up so frequently in line integral problems that their parametrizations are worth memorizing. The table below summarizes the most common cases, followed by a visual comparison of several standard parametrizations.

Standard parametrizations for common curves
CurveParametrizationParameter RangeNotes
Line segment from P₁ to P₂r(t) = (1 − t)P₁ + tP₂0 ≤ t ≤ 1Linear interpolation between two points
Circle of radius r centered at (h, k)x = h + r cos t, y = k + r sin t0 ≤ t ≤ 2πCounterclockwise; for clockwise, swap sin/cos or reverse limits
Parabola y = x²x = t, y = t²a ≤ t ≤ bSimplest: let x itself be the parameter
Ellipse with semi-axes a, bx = a cos t, y = b sin t0 ≤ t ≤ 2πReduces to circle when a = b
Graph y = f(x)x = t, y = f(t)a ≤ t ≤ bWorks for any explicit function; t simply replaces x
Four standard parametrizations: a line segment, a unit circle, a parabola, and an ellipse. Each panel shows the curve, direction of traversal, and the parametric formula.

The key pattern to notice is that for any curve given as y = f(x), the simplest parametrization is to set x = t and y = f(t). For closed curves like circles and ellipses, trigonometric functions naturally trace the shape because sin²t + cos²t = 1. For line segments, linear interpolation using r(t) = (1 − t)P₁ + tP₂ smoothly slides from the start point to the end point as t goes from 0 to 1.

Worked Example — Evaluating a Scalar Line Integral

Let's evaluate ∫C (x² + y) ds, where C is the quarter of the unit circle from (1, 0) to (0, 1). We'll walk through every step: parametrize, compute ds, substitute, and integrate.

Scalar Line Integral Over a Quarter Circle
1
Step 1 — Identify the Curve & Choose a ParametrizationThe curve C is the portion of the unit circle x² + y² = 1 from (1, 0) to (0, 1). This arc sweeps counterclockwise through the first quadrant. The natural parametrization for a circle of radius 1 centered at the origin is x = cos t, y = sin t.
r(t) = (cos t, sin t), 0 ≤ t ≤ π/2
2
Step 2 — Find the Derivatives dx/dt and dy/dtDifferentiate each component with respect to t. Since x = cos t, we get dx/dt = −sin t. Since y = sin t, we get dy/dt = cos t.
dx/dt = −sin t, dy/dt = cos t
3
Step 3 — Compute the Arc-Length Element dsApply the formula ds = √[(dx/dt)² + (dy/dt)²] dt. Substituting: ds = √[sin²t + cos²t] dt = √1 dt = dt. This makes sense because the unit circle has radius 1, so the speed is constant at 1.
ds = dt
4
Step 4 — Substitute into the IntegralReplace x with cos t, y with sin t, and ds with dt. The integral becomes ∫₀^(π/2) (cos²t + sin t) dt.
∫₀^(π/2) (cos²t + sin t) dt
5
Step 5 — Evaluate the IntegralSplit into two integrals: ∫₀^(π/2) cos²t dt + ∫₀^(π/2) sin t dt. For the first, use the identity cos²t = (1 + cos 2t)/2, giving ∫₀^(π/2) (1 + cos 2t)/2 dt = [t/2 + sin 2t / 4]₀^(π/2) = π/4 + 0 = π/4. For the second, ∫₀^(π/2) sin t dt = [−cos t]₀^(π/2) = −cos(π/2) + cos(0) = 0 + 1 = 1. Adding: π/4 + 1.
∫_C (x² + y) ds = π/4 + 1 ≈ 1.785
Check Your Work
It's a good habit to verify that your parametrization traces the correct curve in the correct direction. Plug in the endpoints: at t = 0, r(0) = (cos 0, sin 0) = (1, 0) ✓. At t = π/2, r(π/2) = (cos π/2, sin π/2) = (0, 1) ✓. The direction is counterclockwise, consistent with increasing t.

Tips, Pitfalls & Comparisons

When you're learning to parametrize curves, certain mistakes come up again and again. Understanding these common pitfalls — and knowing useful strategies to avoid them — will save you time and frustration.

Parametrization strategies and common mistakes
Strategy / PitfallGood Practice ✓Common Mistake ✗
Check endpointsPlug t = a and t = b into r(t) to confirm they match the given start and end points.Assuming the parametrization is correct without verifying endpoints — leading to the wrong curve or reversed direction.
Direction mattersIf the problem specifies a direction (e.g., from A to B), ensure t increases in that direction.Ignoring orientation. For vector line integrals, reversing direction changes the sign of the answer.
Simplify ds earlyCompute (dx/dt)² + (dy/dt)² and simplify before integrating — trig identities often clean things up.Carrying messy square roots all the way to the end, making the integral much harder than necessary.
Piecewise curvesBreak a non-smooth curve into smooth segments, parametrize each separately, and add the integrals.Trying to parametrize a curve with corners (like a triangle) with a single smooth function.
Parameter rangeMatch the parameter range to the portion of the curve you need. A full circle is 0 to 2π; a semicircle is 0 to π.Using the wrong range and integrating over too much or too little of the curve.
KEY TAKEAWAY
Think of parametrization as programming a drone's flight path. You need to specify exactly where it starts, where it ends, which route it takes, and which direction it flies. If any of those four things is wrong, the drone goes somewhere unintended — and your integral gives the wrong answer.

Connection to 3D Curves & Advanced Topics

Everything you've learned about parametrizing curves in two dimensions extends naturally to three dimensions. Instead of two component functions, you simply add a third: r(t) = (x(t), y(t), z(t)). The arc-length element gains one more term under the square root, and line integrals work exactly the same way. This is how you calculate work done by a force field on a particle moving through space, or the mass of a wire twisted into a helix.

2D parametrization vs. 3D extension
Feature2D Curves (This Lesson)3D Curves (Next Steps)
Parametrizationr(t) = (x(t), y(t))r(t) = (x(t), y(t), z(t))
Arc-length elementds = √[(dx/dt)² + (dy/dt)²] dtds = √[(dx/dt)² + (dy/dt)² + (dz/dt)²] dt
Typical curveCircle, parabola, line segment in a planeHelix, space curve, path on a surface
ApplicationsWork in 2D, mass of a flat wire, circulationWork in 3D, electromagnetic fields, fluid dynamics
Advanced theoremsGreen's TheoremStokes' Theorem, Divergence Theorem

Looking ahead, the parametrization skills you build now are the foundation for Green's Theorem, which relates a line integral around a closed curve to a double integral over the region it encloses. In three dimensions, Stokes' Theorem generalizes this relationship further. Both require you to parametrize the boundary curves, making this lesson a crucial stepping stone.

Practice Problems

Try these five problems to solidify your understanding. They increase in difficulty from conceptual questions to multi-step calculations.

PROBLEM 1CONCEPTUAL
Explain in your own words why the parametrization r(t) = (cos t, sin t) for 0 ≤ t ≤ 2π traces a circle counterclockwise. What would you change to trace the same circle clockwise?
PROBLEM 2BASIC CALCULATION
Parametrize the line segment from (1, 3) to (4, 7). Then compute ds in terms of dt.
PROBLEM 3INTERMEDIATE
Evaluate ∫_C y ds, where C is the semicircle x² + y² = 4 from (2, 0) to (−2, 0) traversed counterclockwise through the upper half-plane.
PROBLEM 4APPLIED
A wire has the shape of the curve y = x² from (0, 0) to (2, 4). The density at any point is δ(x, y) = 3x grams per unit length. Find the total mass of the wire.
PROBLEM 5CRITICAL THINKING
Consider the curve C given by y = x³ from (0, 0) to (1, 1). Someone proposes the parametrization r(t) = (t², t⁶) for 0 ≤ t ≤ 1. (a) Verify that this traces the same curve with the same endpoints. (b) Set up ∫_C ds using both parametrizations (x = t and x = t²) and show they produce the same arc length. (c) Explain why this must be true in general.

Lesson Summary

Parametrizing a curve means writing its coordinates as functions of a single variable t: r(t) = (x(t), y(t)) for t in [a, b]. This converts a geometric object into a form suitable for calculus. The arc-length element ds = √[(dx/dt)² + (dy/dt)²] dt measures distance along the curve, and it is the key ingredient for setting up scalar line integrals of the form ∫_C f ds.

You should know standard parametrizations for line segments (linear interpolation), circles and ellipses (trigonometric functions), and graphs y = f(x) (set x = t). Always check that your parametrization matches the correct endpoints and direction of traversal. These skills extend directly to 3D curves and form the foundation for Green's Theorem and Stokes' Theorem.

Varsity Tutors • Multivariable Calculus • Parametrizing Curves — Parametrize curves for line integrals