CALCULUS 2 • PARAMETRIC, POLAR & VECTOR FUNCTIONS

Parametric Equations & Derivatives — Defining and Differentiating Parametric Equations

How a single parameter unlocks the geometry and calculus of curves that defy standard function notation.

Historical Context & Motivation

The story of parametric equations is deeply intertwined with the evolution of coordinate geometry and the desire to describe motion, not merely shape. While René Descartes and Pierre de Fermat developed the Cartesian plane in the seventeenth century, their framework assumed that every curve could be expressed as y = f(x) — a restriction that immediately fails for curves that loop back on themselves, such as circles, cycloids, and spirals. Mathematicians realized that introducing a third variable, a parameter, could liberate curves from the vertical-line-test constraint, while simultaneously encoding the direction and speed with which a point traces the curve. This idea proved essential not only in pure mathematics but also in physics, engineering, and eventually computer graphics.

1637
Cartesian Coordinates Introduced
René Descartes publishes La Géométrie, establishing the algebraic description of curves in the xy-plane. However, the framework is limited to curves expressible as explicit or implicit functions of x and y.
1696
The Brachistochrone Problem
Johann Bernoulli poses the brachistochrone challenge: find the curve of fastest descent under gravity. The solution — a cycloid — is most naturally described parametrically, highlighting the inadequacy of y = f(x) for motion-based curves.
1748
Euler Formalizes Parametric Representation
Leonhard Euler systematically treats x and y as functions of an independent variable t in Introductio in analysin infinitorum, establishing the modern convention x = f(t), y = g(t).
1800s
Parametric Calculus Matures
Through the work of Cauchy, Riemann, and others, differentiation and integration of parametric curves are placed on rigorous footing, enabling arc-length formulas, curvature computations, and differential geometry.
1960s–Today
Computer Graphics & CAD
Bézier curves, B-splines, and NURBS — all parametric representations — become the backbone of computer-aided design, animation, and font rendering, demonstrating the enduring practical power of parametric thinking.

The central question this lesson addresses is deceptively simple: given a curve defined by x = f(t) and y = g(t), how do we compute dy/dx — the slope of the tangent line — without first eliminating the parameter? The answer, rooted in the chain rule, provides a powerful and general technique that extends naturally to higher-order derivatives, arc length, and curvature.

Core Principles & Definitions

A parametric curve in the plane is defined by a pair of functions x = f(t) and y = g(t), where the independent variable t — called the parameter — ranges over some interval I ⊆ ℝ. Rather than specifying y directly in terms of x, we let both coordinates evolve as t varies, thereby generating an oriented path through the plane. This framework captures information that a Cartesian equation alone cannot: the direction of traversal, the speed of traversal, and the ability to represent curves that fail the vertical-line test.

1

Parametric Definition

A curve C is specified by x = f(t), y = g(t) for t ∈ [a, b]. Each value of t yields a unique point (x, y) on C. The pair (f, g) is called a parametrization of C.
2

Orientation & Direction

As t increases from a to b, the point (f(t), g(t)) traces C in a specific direction. This orientation distinguishes parametric curves from static graphs and is critical in line integrals and physics.
3

Non-Uniqueness of Parametrization

A single geometric curve admits infinitely many parametrizations. For example, the unit circle can be described as (cos t, sin t) or (cos 2s, sin 2s), each tracing the same shape at different speeds.
4

Smoothness & Differentiability

A parametric curve is called smooth if f′(t) and g′(t) are continuous and not simultaneously zero. At points where both derivatives vanish, the curve may have a cusp or corner.
KEY TAKEAWAY
Think of parametric equations as a set of GPS coordinates that update over time. The parameter t acts like a clock: at each tick, the GPS reports an x-coordinate and a y-coordinate independently. The path on the map is the curve, while the timestamps encode how fast and in which direction you travel along it. A Cartesian equation y = f(x) is like a photograph of the path — you see the shape but lose all information about timing and direction.

Visual Explanation — Tracing a Parametric Curve

The following diagram illustrates how a parametric curve is generated by the equations x = 2cos t and y = sin t for t ∈ [0, 2π]. Each point on the ellipse corresponds to a specific value of t, shown as color-coded dots. The arrows indicate the direction of increasing t, providing the orientation of the curve.

An ellipse traced by x = 2cos t and y = sin t. The colored dots correspond to specific parameter values, and the arrows show the counter-clockwise orientation as t increases from 0 to 2π.

Notice how the parameter t does not appear explicitly in the Cartesian picture — you cannot "see" t on the axes. Rather, t governs which point the curve occupies at any given instant. At t = 0, the point sits at (2, 0); by t = π/2, it has moved to (0, 1). The orientation (counter-clockwise in this case) and the speed of traversal are encoded in the derivatives f′(t) and g′(t), which we will exploit in the next section to compute tangent slopes.

Mathematical Framework — Differentiating Parametric Equations

The key insight behind parametric differentiation is the chain rule. If y is a function of t and t is (locally) invertible as a function of x, then dy/dx = (dy/dt) ÷ (dx/dt). This quotient is valid at every point where dx/dt ≠ 0, which corresponds geometrically to the curve not having a vertical tangent at that point. The formula is elegant because it avoids the often impossible task of algebraically eliminating t from the parametric equations.

FIRST DERIVATIVE (PARAMETRIC)
dy/dx = (dy/dt) / (dx/dt) = g′(t) / f′(t), provided f′(t) ≠ 0
Here x = f(t) and y = g(t) are differentiable functions of the parameter t. The quantity dy/dx gives the slope of the tangent line to the curve at the point corresponding to the value t.

To find the second derivative d²y/dx², we apply the same principle: differentiate dy/dx — which is itself a function of t — with respect to x by dividing by dx/dt once more.

SECOND DERIVATIVE (PARAMETRIC)
d²y/dx² = (d/dt)[dy/dx] / (dx/dt)
First compute dy/dx = g′(t)/f′(t) as a function of t. Then differentiate that expression with respect to t and divide the result by f′(t). This yields the concavity of the curve at the point (f(t), g(t)).
Common Mistake
Students frequently compute d²y/dx² as g″(t)/f″(t). This is incorrect. The second derivative requires differentiating the first derivative dy/dx with respect to t, then dividing by dx/dt. Simply taking the ratio of second-order derivatives of the component functions ignores the chain rule entirely.
TANGENT LINE EQUATION
y − g(t₀) = [g′(t₀)/f′(t₀)] × (x − f(t₀))
The point-slope form of the tangent line to the parametric curve at the parameter value t = t₀. This requires f′(t₀) ≠ 0. When f′(t₀) = 0 and g′(t₀) ≠ 0, the tangent line is vertical: x = f(t₀).

The classification of tangent behavior at a point depends on the values of f′(t) and g′(t). When f′(t₀) = 0 but g′(t₀) ≠ 0, the curve has a vertical tangent. When g′(t₀) = 0 but f′(t₀) ≠ 0, the tangent is horizontal. When both derivatives vanish simultaneously, the point is called a singular point, and further analysis (such as L'Hôpital's rule or higher-order derivatives) is needed to determine the tangent behavior.

Tangent Line Classification & Visualization

Understanding the tangent behavior of a parametric curve requires systematic analysis of the derivatives dx/dt and dy/dt. The following diagram and table classify the possibilities, using the astroid x = cos³ t, y = sin³ t as an illustrative example — a curve rich in horizontal tangents, vertical tangents, and cusps.

The astroid x = cos³ t, y = sin³ t features cusps at t = 0, π/2, π, and 3π/2 where both dx/dt and dy/dt vanish. At regular points like t = π/4, the tangent line has a well-defined slope computed via dy/dx = g′(t)/f′(t).
Classification of tangent line behavior based on derivative conditions
ConditionGeometric MeaningExample (Unit Circle)
dx/dt ≠ 0, dy/dt existsTangent has finite slope dy/dx = (dy/dt)/(dx/dt)t = π/4: slope = −cos(π/4)/sin(π/4) = −1
dx/dt = 0, dy/dt ≠ 0Vertical tangentt = 0 on (cos t, sin t): dx/dt = −sin 0 = 0, dy/dt = cos 0 = 1
dx/dt ≠ 0, dy/dt = 0Horizontal tangentt = π/2 on (cos t, sin t): dx/dt = −1, dy/dt = 0
dx/dt = 0, dy/dt = 0Singular point — requires further analysisCusps of the astroid at t = 0, π/2, π, 3π/2

Worked Example — Cycloid Tangent Line

Consider the cycloid defined by x = t − sin t and y = 1 − cos t. We wish to find the equation of the tangent line at t = π/3 and determine where the curve has horizontal and vertical tangents.

Finding the Tangent Line to a Cycloid at t = π/3
1
Step 1 — Compute the component derivativesDifferentiate each coordinate with respect to t. We have dx/dt = 1 − cos t and dy/dt = sin t. These are the building blocks for the parametric derivative formula.
dx/dt = 1 − cos t, dy/dt = sin t
2
Step 2 — Form the first derivative dy/dxApply the parametric differentiation formula: dy/dx = (dy/dt) / (dx/dt) = sin t / (1 − cos t). This expression is valid wherever 1 − cos t ≠ 0, i.e., t ≠ 2nπ for integer n.
dy/dx = sin t / (1 − cos t)
3
Step 3 — Evaluate at t = π/3Substitute t = π/3. We know sin(π/3) = √3/2 and cos(π/3) = 1/2, so dy/dx = (√3/2) / (1 − 1/2) = (√3/2) / (1/2) = √3. The slope of the tangent line at t = π/3 is √3.
dy/dx|t=π/3 = √3
4
Step 4 — Find the point on the curveCompute the coordinates: x = π/3 − sin(π/3) = π/3 − √3/2 and y = 1 − cos(π/3) = 1 − 1/2 = 1/2. So the point is (π/3 − √3/2, 1/2).
Point: (π/3 − √3/2, 1/2)
5
Step 5 — Write the tangent line equationUsing point-slope form: y − 1/2 = √3 × (x − (π/3 − √3/2)). This is the equation of the tangent line to the cycloid at t = π/3.
y − 1/2 = √3 (x − π/3 + √3/2)
6
Step 6 — Identify horizontal and vertical tangentsHorizontal tangents occur where dy/dt = sin t = 0 and dx/dt ≠ 0, namely t = nπ for odd n (since at even multiples dx/dt also vanishes). Thus horizontal tangents appear at t = π, 3π, 5π, ... where the cycloid reaches its maximum height y = 2. Vertical tangents would require dx/dt = 1 − cos t = 0 (i.e., t = 2nπ) while dy/dt ≠ 0. However, at t = 2nπ, dy/dt = sin(2nπ) = 0 as well, so these are singular (cusp) points rather than vertical tangent points.
Horizontal tangent at t = (2k−1)π for k ∈ ℤ; cusps at t = 2kπ

Parametric vs. Cartesian vs. Polar Representations

Parametric equations are one of several ways to describe curves. Understanding their relative strengths and limitations helps you choose the right tool for a given problem. The following table compares parametric, Cartesian, and polar representations across several dimensions.

Comparison of curve representation methods
FeatureCartesian y = f(x)Parametric (x(t), y(t))Polar r = f(θ)
Multi-valued curvesNot allowed (fails vertical-line test)Fully supportedSupported via multiple r values
Orientation / directionNot encodedNaturally encoded via increasing tEncoded via increasing θ
Speed informationNot availableAvailable via |r′(t)|Not directly available
dy/dx computationDirect: f′(x)Via chain rule: g′(t)/f′(t)Requires conversion to parametric form
Best suited forSimple explicit functionsMotion, complex curves, computer graphicsCurves with rotational symmetry
KEY TAKEAWAY
A Cartesian equation is like sheet music that tells you which notes to play. A parametric equation is like a MIDI file — it tells you which notes to play, when to play them, and how fast to move between them. The parametric form carries strictly more information and is therefore the natural language for describing motion, animation, and any curve that doubles back on itself.

Connections to Arc Length, Curvature & Vector Calculus

The parametric derivative dy/dx is the gateway to a family of powerful formulas in Calculus 2 and beyond. Once you can differentiate parametric equations, computing arc length, curvature, and surface area of revolution for parametric curves becomes a matter of applying the right integral formula. Moreover, the parametric viewpoint generalizes seamlessly to vector-valued functions r(t) = ⟨f(t), g(t)⟩ in two dimensions and r(t) = ⟨f(t), g(t), h(t)⟩ in three dimensions.

How parametric differentiation connects to advanced topics
ConceptThis LessonAdvanced Extension
dy/dxg′(t) / f′(t) — slope of the tangentTangent vector r′(t) = ⟨f′(t), g′(t)⟩; unit tangent T̂(t)
d²y/dx²(d/dt)[dy/dx] / (dx/dt) — concavityCurvature κ = |x′y″ − y′x″| / (x′² + y′²)3/2
Speedds/dt = √(f′(t)² + g′(t)²)Arc-length parametrization s(t); 3D generalization
Area∫ y dx = ∫ g(t)f′(t) dtSurface area of revolution; line integrals

In multivariable and vector calculus, the parametric viewpoint becomes indispensable. Curves in three-dimensional space cannot be expressed as y = f(x) in general, so the parametric form r(t) = ⟨x(t), y(t), z(t)⟩ is the default representation. The derivative r′(t) gives the velocity vector, and its magnitude |r′(t)| gives the speed. The techniques you learn here — applying the chain rule to compute ratios of derivatives — form the conceptual core of that more general theory.

Practice Problems

PROBLEM 1CONCEPTUAL
Explain in your own words why a parametric curve can fail the vertical-line test even when both x(t) and y(t) are perfectly well-behaved functions of t. Give a specific example.
PROBLEM 2BASIC CALCULATION
Given x = t² + 1 and y = t³ − 3t, find dy/dx as a function of t. At what value(s) of t does the curve have a horizontal tangent?
PROBLEM 3INTERMEDIATE
For the parametric equations x = et cos t and y = et sin t, find dy/dx and simplify. Then find the equation of the tangent line at t = 0.
PROBLEM 4APPLIED
A projectile is launched from the origin with initial speed v₀ = 20 m/s at an angle of 60° above the horizontal. Its parametric equations are x = (v₀ cos 60°)t and y = (v₀ sin 60°)t − (1/2)(9.8)t². Find dy/dx as a function of t, determine the time at which the trajectory reaches its peak, and compute the slope of the trajectory at t = 1 s.
PROBLEM 5CRITICAL THINKING
Consider the curve x = t² and y = t³. Show that the origin is a singular point (both dx/dt and dy/dt vanish at t = 0). Use the limit definition to determine the tangent slope at the origin, and discuss whether the curve has a cusp or a smooth tangent there.

Lesson Summary

A parametric curve is defined by a pair of functions x = f(t) and y = g(t), where the parameter t governs both coordinates simultaneously. This representation encodes orientation and speed of traversal, handles curves that fail the vertical-line test, and is the standard framework for describing motion in physics and computer graphics. The first derivative dy/dx = (dy/dt)/(dx/dt) follows from the chain rule and gives the slope of the tangent line at any regular point where dx/dt ≠ 0.

The second derivative d²y/dx² = (d/dt)[dy/dx] / (dx/dt) determines concavity and is a common source of errors when students incorrectly compute g″(t)/f″(t). Horizontal tangents occur where dy/dt = 0 with dx/dt ≠ 0, and vertical tangents occur where dx/dt = 0 with dy/dt ≠ 0. When both derivatives vanish, a singular point arises, requiring limit analysis. These parametric differentiation techniques generalize naturally to arc length, curvature, and vector-valued functions in higher dimensions.

Varsity Tutors • Calculus 2 • Parametric Equations & Derivatives — Defining and Differentiating Parametric Equations