IB MATHEMATICS: ANALYSIS AND APPROACHES • FUNCTIONS

Parametric Functions — AHL 2.10 Parametric functions and graphs (HL)

Describe complex curves by letting x and y each depend on an independent parameter.

Historical Context & Motivation

For centuries mathematicians described curves using a single equation relating x and y directly, like y = x² for a parabola. This works well for many curves, but some shapes — spirals, cycloids, and the paths of planets — are difficult or impossible to capture with a single y = f(x) equation. The idea of introducing a third variable, called a parameter, to describe both coordinates independently opened up an entirely new way of thinking about curves. Instead of asking "what is y when x is 3?", we ask "where is the point when the parameter is 3?"

1637
Descartes & Coordinate Geometry
René Descartes published La Géométrie, uniting algebra and geometry on the coordinate plane and making y = f(x) the standard way to describe curves.
1696
The Brachistochrone Problem
Johann Bernoulli posed the challenge of finding the fastest-descent curve. The solution, a cycloid, is most naturally described using parametric equations — showing that some curves need a parameter.
1748
Euler's Parametric Approach
Leonhard Euler systematically used parameters to describe motion along curves, linking the parameter to time and laying groundwork for modern parametric analysis.
1800s
Applications in Physics & Engineering
Parametric descriptions became essential for projectile motion, planetary orbits, and later for computer graphics, where curves are rendered parametrically in real time.

The central question this topic addresses is: how can we describe curves that fail the vertical-line test, or curves where position depends on time, using a pair of functions that work together? Parametric functions provide the answer, and they are a core tool in the IB HL curriculum.

Core Principles & Definitions

A parametric function defines a curve by expressing both x and y as separate functions of an independent variable, usually called t. As t changes, the point (x(t), y(t)) traces out a path on the coordinate plane. The variable t is the parameter, and it often represents time, an angle, or any other quantity that drives the motion.

1

The Parameter t

An independent variable that controls both x and y. It does not appear on the final graph; it acts behind the scenes to generate the curve.
2

Component Functions

x = f(t) and y = g(t) are the two equations that together define every point on the curve. Each is a function in its own right.
3

Direction & Orientation

As t increases, the point moves along the curve in a specific direction. This orientation distinguishes parametric curves from static Cartesian equations.
4

Eliminating the Parameter

Sometimes you can solve one equation for t and substitute into the other, converting back to a Cartesian equation y = f(x). This is not always possible or desirable.
KEY TAKEAWAY
Think of parametric equations like GPS coordinates being broadcast over time. Your phone's x-position and y-position are each a separate function of time. At any instant t, the pair (x(t), y(t)) tells you exactly where you are. If you plot all those points, you get the path you walked — that path is the parametric curve.

Visualising Parametric Curves

The diagram below shows how the parametric equations x = 2cos(t) and y = 2sin(t) generate a circle. On the left, you can see how x and y each vary as functions of t. On the right, the resulting curve is plotted on the xy-plane with arrows indicating the direction of travel as t increases from 0 to 2π.

Left: the cyan curve is x(t) = 2cos(t) and the pink curve is y(t) = 2sin(t), both plotted against t. Right: the resulting circle on the xy-plane with direction of travel (counter-clockwise) shown by the arrow. Yellow dots mark key parameter values.

Notice that neither the cyan curve nor the pink curve alone is a circle. It is only when we combine x(t) and y(t) into ordered pairs that the circular shape emerges. This illustrates the power of parametric representation: individual component functions can be simple waves, yet together they generate complex and beautiful curves.

Mathematical Framework

The formal definition is straightforward. Given two functions f and g, the parametric equations x = f(t) and y = g(t) define a curve C in the plane. The variable t ranges over some interval, often [0, 2π] for closed curves or all real numbers for open curves.

PARAMETRIC DEFINITION
x = f(t), y = g(t), t ∈ [a, b]
f(t) controls the horizontal position, g(t) controls the vertical position, and t is the parameter that drives both.

Eliminating the Parameter

To convert parametric equations into a Cartesian equation, solve one equation for t and substitute into the other. For the circle example, use the Pythagorean identity: cos²(t) + sin²(t) = 1. Since x = 2cos(t) means cos(t) = x/2 and y = 2sin(t) means sin(t) = y/2, substitution gives the familiar Cartesian form.

ELIMINATION — CIRCLE EXAMPLE
(x/2)² + (y/2)² = 1 → x² + y² = 4
This confirms the curve is a circle of radius 2 centred at the origin. However, the Cartesian form loses the direction and speed information that the parametric form carries.

Gradient of a Parametric Curve

To find the slope dy/dx without eliminating the parameter, use the chain rule. Since dy/dx = (dy/dt) ÷ (dx/dt), you can differentiate each component function with respect to t and divide.

PARAMETRIC GRADIENT
dy/dx = (dy/dt) ÷ (dx/dt), provided dx/dt ≠ 0
When dx/dt = 0 and dy/dt ≠ 0, the tangent line is vertical. When both are zero, the point may be a cusp or self-intersection.
SECOND DERIVATIVE
d²y/dx² = (d/dt)(dy/dx) ÷ (dx/dt)
This formula lets you determine concavity of the parametric curve. First find dy/dx as a function of t, differentiate that with respect to t, then divide by dx/dt.

Important Parametric Curves

Several families of curves appear frequently in the IB syllabus and beyond. Understanding these standard examples helps you recognise patterns and quickly set up parametric equations for new situations.

Common parametric curves and their Cartesian equivalents
CurveParametric EquationsCartesian Form
Circlex = r cos(t), y = r sin(t)x² + y² = r²
Ellipsex = a cos(t), y = b sin(t)x²/a² + y²/b² = 1
Line Segmentx = x₁ + t(x₂ − x₁), y = y₁ + t(y₂ − y₁), t ∈ [0,1]y − y₁ = m(x − x₁)
Parabolax = t, y = t²y = x²
Cycloidx = r(t − sin t), y = r(1 − cos t)No simple Cartesian form
Three standard parametric curves: a circle (cyan), an ellipse (violet), and a parabola (pink). Each is generated by a pair of parametric equations shown below the graph.

The ellipse is a generalisation of the circle: when a = b, the ellipse becomes a circle. The line segment is particularly useful in IB problems involving vectors, since the parametric form x = x₁ + t(x₂ − x₁) is equivalent to a vector equation of a line. The cycloid is famous for being the curve of fastest descent — a result that can only be elegantly expressed parametrically.

Worked Example

Let us work through a complete IB-style problem. We are given the parametric equations x = 3cos(t) + 1 and y = 2sin(t) − 2 for 0 ≤ t ≤ 2π. We will sketch the curve, eliminate the parameter, and find the gradient at t = π/4.

Sketching, Eliminating, and Differentiating a Parametric Curve
1
Step 1 — Identify the ShapeThe equations x = 3cos(t) + 1 and y = 2sin(t) − 2 follow the pattern x = a cos(t) + h, y = b sin(t) + k. This is an ellipse centred at (h, k) = (1, −2) with semi-major axis a = 3 (horizontal) and semi-minor axis b = 2 (vertical).
Ellipse centred at (1, −2), a = 3, b = 2
2
Step 2 — Build a Table of Key ValuesSubstitute key values of t to find reference points. At t = 0: x = 3(1) + 1 = 4, y = 2(0) − 2 = −2 → (4, −2). At t = π/2: x = 3(0) + 1 = 1, y = 2(1) − 2 = 0 → (1, 0). At t = π: x = 3(−1) + 1 = −2, y = 2(0) − 2 = −2 → (−2, −2). At t = 3π/2: x = 1, y = 2(−1) − 2 = −4 → (1, −4). These four points are the ends of the axes of the ellipse.
Key points: (4, −2), (1, 0), (−2, −2), (1, −4)
3
Step 3 — Eliminate the ParameterIsolate the trig functions: cos(t) = (x − 1)/3 and sin(t) = (y + 2)/2. Apply the Pythagorean identity cos²(t) + sin²(t) = 1.
((x − 1)/3)² + ((y + 2)/2)² = 1 → (x − 1)²/9 + (y + 2)²/4 = 1
4
Step 4 — Find the Gradient at t = π/4Differentiate: dx/dt = −3sin(t) and dy/dt = 2cos(t). Therefore dy/dx = (2cos(t)) / (−3sin(t)) = −2cos(t) / (3sin(t)). At t = π/4: cos(π/4) = sin(π/4) = √2/2, so dy/dx = −2(√2/2) / (3(√2/2)) = −2/3.
dy/dx at t = π/4 is −2/3
5
Step 5 — Interpret the ResultThe slope −2/3 tells us that at the point corresponding to t = π/4, which is approximately (3.12, −0.59), the curve is falling to the right. The curve is traversed counter-clockwise, consistent with the standard parametric circle/ellipse orientation.
The tangent line slopes downward at a rate of 2 units vertically for every 3 units horizontally.

Parametric vs Cartesian: Strengths & Limitations

You might wonder: if we can often convert back to Cartesian form, why bother with parametric equations at all? The two representations have distinct advantages depending on the situation.

Comparison of parametric and Cartesian representations
FeatureParametric FormCartesian Form
Vertical-line testNot required — can describe any curve, even those that double backy = f(x) must pass the test (one y per x)
Direction / motionBuilt in — as t increases, you see which way the curve is tracedNo inherent direction information
Complex curvesHandles spirals, cycloids, Lissajous figures naturallyMany complex curves have no simple Cartesian equation
SimplicityRequires two equationsA single equation — often easier for basic curves
Finding intersectionsMore complex — must check if curves pass through the same point at the same or different t valuesStraightforward — solve simultaneous equations
KEY TAKEAWAY
Parametric equations are like giving someone turn-by-turn driving directions ("at time t, go here"), while a Cartesian equation is like handing them a map of the entire road. Directions carry timing and direction; the map shows the whole shape but loses the journey. Use whichever form best fits the problem you are solving.

Connections to Advanced Topics

Parametric functions in AHL 2.10 connect directly to several advanced areas you will encounter later in the IB and in university mathematics. Understanding these links helps you see why mastering the basics now pays off.

How AHL 2.10 concepts extend into more advanced mathematics
AHL 2.10 ConceptAdvanced Extension
Parametric equations x = f(t), y = g(t)Vector-valued functions r(t) = ⟨f(t), g(t), h(t)⟩ in 3D (multivariable calculus)
Gradient dy/dx = (dy/dt)/(dx/dt)Arc length: L = ∫√((dx/dt)² + (dy/dt)²) dt (calculus option)
Eliminating the parameterPolar coordinates r = f(θ) — another alternative coordinate system
Direction of traversalVelocity and acceleration vectors in physics and kinematics
📝 IB Exam Tip
In Paper 1 (no calculator), you may be asked to sketch a parametric curve from a table of values or eliminate the parameter algebraically. In Paper 2, expect GDC-based questions where you graph parametric equations and use your calculator to find intersection points or gradients at specific values of t. Practice both approaches.

Practice Problems

PROBLEM 1CONCEPTUAL
A curve is defined by x = t² and y = t³. Does this curve pass the vertical-line test? Explain why parametric representation is useful here.
PROBLEM 2BASIC CALCULATION
A curve is given by x = 4cos(t) and y = 4sin(t). Eliminate the parameter to find the Cartesian equation, and state the radius and centre of the curve.
PROBLEM 3INTERMEDIATE
Given x = 2t + 1 and y = t² − 3, find dy/dx in terms of t. Then determine the exact coordinates of the point where the tangent line is horizontal.
PROBLEM 4APPLIED
A Ferris wheel has its centre 15 metres above the ground and a radius of 12 metres. It completes one revolution every 40 seconds, and riders board at the lowest point. Write parametric equations for a rider's position (x, y) where x is horizontal displacement from the centre and y is height above the ground, using t in seconds. Where is the rider after 10 seconds?
PROBLEM 5CRITICAL THINKING
Two curves are defined parametrically: Curve A has x = cos(t), y = sin(2t), and Curve B has x = cos(s), y = sin(2s) where the parameter for B is s = π − t. Show that both curves produce the same set of points on the xy-plane, but describe the difference in how each curve is traced. What does this reveal about the relationship between a parametric curve and its underlying point set?

Lesson Summary

Parametric functions describe curves by expressing both x and y as separate functions of a parameter t. This approach captures curves that fail the vertical-line test, encodes direction of traversal, and naturally models real-world motion. Standard examples include circles (x = r cos t, y = r sin t), ellipses (x = a cos t, y = b sin t), and line segments. You can convert to Cartesian form by eliminating the parameter, though this may lose direction and timing information.

The gradient of a parametric curve is found using dy/dx = (dy/dt) ÷ (dx/dt), which applies the chain rule without needing to eliminate t first. Horizontal tangents occur when dy/dt = 0 (and dx/dt ≠ 0), and vertical tangents occur when dx/dt = 0 (and dy/dt ≠ 0). These tools connect directly to vector-valued functions and arc length in more advanced courses. Master the interplay between parametric and Cartesian forms, and you will have a powerful toolkit for describing any curve you encounter.

Varsity Tutors • IB Mathematics: Analysis and Approaches • Parametric Functions — AHL 2.10