MathBored

Essential Math Primer
← Back to Primer Overview
A08 • Lesson 78 of 105

Parametric Equations and Polar Coordinates Introduction

Representing curves and points using alternative coordinate systems. Covers parametric equations: defining x(t) and y(t) to trace curves (lines, circles, projectile paths), eliminating the parameter to find Cartesian equations. Introduces polar coordinates (r, theta), converting between polar and Cartesian forms, and graphing basic polar curves.

High School Advanced • 9-12

Prerequisites: H43, H44, R54, H36

Key Concepts

  • parametric equations for lines, circles, and projectile motion
  • eliminating the parameter to convert to Cartesian form
  • polar coordinate system and polar-Cartesian conversion
  • graphing basic polar curves

Parametric Equations and Polar Coordinates Introduction

Until now, you have described curves as y = f(x), where y is explicitly a function of x. But many curves cannot be expressed this way -- a full circle, for instance, fails the vertical line test. Parametric equations and polar coordinates offer two powerful alternatives. Parametric equations describe motion by letting both x and y depend on a third variable (time). Polar coordinates describe position by distance and direction rather than horizontal and vertical displacement. Together, they vastly expand what you can describe and analyze.

Parametric Equations

A parametric curve is defined by a pair of equations:

x = f(t),   y = g(t)

where t is the parameter (often representing time). As t varies, the point (x, y) traces out a curve in the plane. The parameter gives you something Cartesian equations do not: a sense of direction and speed along the curve.

Common Parametric Curves

CurveParametric EquationsParameter Range
Line through (x_0, y_0) with direction (a, b)x = x_0 + at,   y = y_0 + btall real t
Circle centered at origin, radius rx = r cos(t),   y = r sin(t)0 ≤ t < 2π
Ellipse with semi-axes a, bx = a cos(t),   y = b sin(t)0 ≤ t < 2π
Projectile (initial velocity v_0, angle α)x = v_0 cos(α) t,   y = v_0 sin(α) t - (1/2)g t^2t ≥ 0

Eliminating the Parameter

To convert parametric equations to a single Cartesian equation, solve one parametric equation for t and substitute into the other.

  1. Choose the simpler parametric equation and solve for t in terms of x or y.
  2. Substitute this expression for t into the other equation.
  3. Simplify to get y in terms of x (or a relation between x and y).

For trigonometric parametrizations, use the Pythagorean identity sin^2(t) + cos^2(t) = 1 instead.

Polar Coordinates

Polar coordinates describe a point by its distance from the origin (r) and angle from the positive x-axis (θ):

Point: (r, θ)

Unlike Cartesian coordinates, the same point can have multiple polar representations (by adding 2π to θ, or by using negative r with a shifted angle).

Converting Between Polar and Cartesian

Polar to Cartesian:
x = r cos(θ)
y = r sin(θ)
Cartesian to Polar:
r = √(x^2 + y^2)
θ = arctan(y/x)

(Adjust θ for the correct quadrant.)

Basic Polar Curves

Some standard polar curves and their equations:

Worked Example 1: Eliminating the Parameter (Linear)

Problem: Eliminate the parameter from x = 2t + 1, y = 3t - 4.

Solution: Solve the first equation for t:

x = 2t + 1 → t = (x - 1)/2

Substitute into the second equation:

y = 3 · (x - 1)/2 - 4 = (3x - 3)/2 - 4 = (3x - 3 - 8)/2 = (3x - 11)/2

Cartesian equation: y = (3/2)x - 11/2. This is a line with slope 3/2.

Worked Example 2: Eliminating the Parameter (Circle)

Problem: Eliminate the parameter from x = 5 cos(t), y = 5 sin(t).

Solution: From the equations: cos(t) = x/5 and sin(t) = y/5.

Use the Pythagorean identity:

cos^2(t) + sin^2(t) = 1
(x/5)^2 + (y/5)^2 = 1
x^2 + y^2 = 25

This is a circle of radius 5 centered at the origin.

Worked Example 3: Polar-Cartesian Conversion

Problem: (a) Convert the polar point (4, π/3) to Cartesian. (b) Convert the Cartesian point (-3, 3) to polar.

Solution (a):

x = 4 cos(π/3) = 4 · (1/2) = 2
y = 4 sin(π/3) = 4 · (√3/2) = 2√3

Cartesian point: (2, 2√3).

Solution (b):

r = √((-3)^2 + 3^2) = √(9 + 9) = √18 = 3√2
θ = arctan(3/(-3)) = arctan(-1)

Since the point is in Quadrant II (x < 0, y > 0), θ = π - π/4 = 3π/4.

Polar point: (3√2, 3π/4).

Common Mistakes

  • Wrong quadrant for θ: The arctan function only gives values in (-π/2, π/2). If the point is in Quadrant II or III, you must add π to the arctan result. Always check which quadrant (x, y) is in.
  • Losing direction when eliminating the parameter: The Cartesian equation x^2 + y^2 = 25 does not tell you that the circle is traced counterclockwise starting at (5, 0). Parametric form carries directional information that Cartesian form loses.
  • Restricting r to positive values: In polar coordinates, r can be negative. The point (-r, θ) is the same as (r, θ + π) -- it reflects through the origin.

Why Parametric and Polar?

Parametric equations are indispensable in physics and computer graphics. Every animation, every simulated trajectory, every robot path is described parametrically. Polar coordinates simplify problems with circular or rotational symmetry -- radar systems, orbital mechanics, and antenna radiation patterns all use polar coordinates naturally. Mastering both systems gives you the flexibility to choose the best tool for each problem.

Practice Problems

Problem 1: Eliminate the parameter from x = t^2, y = 2t + 1. What type of curve is this?

Show Solution

From y = 2t + 1: t = (y - 1)/2.

Substitute: x = ((y - 1)/2)^2 = (y - 1)^2/4.

Rewrite: 4x = (y - 1)^2, or equivalently x = (1/4)(y - 1)^2.

This is a parabola opening to the right with vertex at (0, 1).

Problem 2: Convert the polar point (6, 5π/6) to Cartesian coordinates.

Show Solution

x = 6 cos(5π/6) = 6 · (-√3/2) = -3√3

y = 6 sin(5π/6) = 6 · (1/2) = 3

Cartesian point: (-3√3, 3).

Problem 3: Convert the Cartesian equation x^2 + y^2 = 16 to polar form.

Show Solution

Since x^2 + y^2 = r^2 in polar coordinates:

r^2 = 16, so r = 4.

The polar equation is simply r = 4 (a circle of radius 4 centered at the origin).

Problem 4: A projectile is launched at 30 m/s at an angle of 60 degrees above horizontal (g = 10 m/s^2). Write parametric equations for its position. How long is it in the air, and how far does it travel horizontally?

Show Solution

x = 30 cos(60°) t = 30(1/2)t = 15t

y = 30 sin(60°) t - (1/2)(10)t^2 = 15√3 t - 5t^2

The projectile lands when y = 0: 15√3 t - 5t^2 = 0 → t(15√3 - 5t) = 0.

t = 0 (launch) or t = 3√3 seconds (landing).

Horizontal distance: x = 15 · 3√3 = 45√3 ≈ 77.9 meters.

Problem 5: Describe the polar curve r = 3(1 + cos(θ)). Identify the type of curve and find the value of r at θ = 0, π/2, π, and 3π/2.

Show Solution

This is a cardioid (heart-shaped curve) with a = 3.

θ = 0: r = 3(1 + cos(0)) = 3(1 + 1) = 6 (farthest from origin)

θ = π/2: r = 3(1 + cos(π/2)) = 3(1 + 0) = 3

θ = π: r = 3(1 + cos(π)) = 3(1 + (-1)) = 0 (curve passes through origin)

θ = 3π/2: r = 3(1 + cos(3π/2)) = 3(1 + 0) = 3

The cardioid is symmetric about the x-axis (the polar axis), extends from r = 0 to r = 6, and has its cusp at the origin when θ = π.

Summary

Parametric equations define curves by expressing x and y each as functions of a parameter t, capturing not just shape but direction and timing. Eliminating the parameter recovers a Cartesian equation but loses directional information. Polar coordinates (r, θ) describe points by distance and angle, offering an elegant framework for curves with rotational symmetry. Converting between polar and Cartesian uses x = r cos(θ), y = r sin(θ), r = √(x^2 + y^2), and θ = arctan(y/x) (with quadrant adjustment). These coordinate systems complement Cartesian coordinates and are essential tools in physics, engineering, and advanced mathematics.

Overview