Mathematics.

parametric and polar

Polar Coordinates

Calculus II35 minDifficulty5 out of 10

You should know: coordinate plane, trigonometric functions

Overview

Polar coordinates locate a point in the plane using a distance r from a fixed origin (the pole) and an angle θ from a fixed reference direction (the polar axis), instead of the (x,y) offsets of Cartesian coordinates. Curves with rotational symmetry — circles centered at the origin, spirals, roses, cardioids — have dramatically simpler equations in polar form than in Cartesian form.

Intuition

Instead of saying 'go 3 blocks east, 4 blocks north' (Cartesian), polar coordinates say 'walk 5 blocks in this exact compass direction' (distance + single angle). For any shape built around rotational symmetry — a circle, a spiral staircase, a flower-petal pattern — describing it by 'how far from center' and 'in what direction' is far more natural and yields much simpler equations than forcing it into an x-y grid.

Interactive Graph

Explore r = f(θ) polar curves

Loading visualization…

Formal Definition

Definition

A point is specified by (r, θ), converting to and from Cartesian coordinates via:

x=rcosθ,y=rsinθx = r\cos\theta, \qquad y = r\sin\theta
Polar to Cartesian
r=x2+y2,θ=atan2(y,x)r = \sqrt{x^2+y^2}, \qquad \theta = \operatorname{atan2}(y,x)

atan2 correctly handles the quadrant, unlike a naive arctan(y/x)

Cartesian to polar

Notation

NotationMeaning
(r,θ)(r,\theta)Polar coordinates: distance r from the origin, angle θ from the positive x-axis
r=0r=0The origin, where θ is undefined
θ=0\theta = 0The reference ray, corresponding to the positive x-axis

Derivation

The conversion formulas follow directly from right-triangle trigonometry: dropping a perpendicular from the point to the x-axis creates a right triangle with hypotenuse r and angle θ, giving adjacent = r cos θ = x and opposite = r sin θ = y. The reverse relation r² = x² + y² is simply the Pythagorean theorem applied to that same triangle.

cosθ=xr    x=rcosθ\cos\theta = \frac{x}{r} \implies x = r\cos\theta

Adjacent side over hypotenuse

sinθ=yr    y=rsinθ\sin\theta = \frac{y}{r} \implies y = r\sin\theta

Opposite side over hypotenuse

Properties

Non-uniqueness of representation

(r,θ) and (r,θ+2πk) represent the same point for any integer k(r,\theta) \text{ and } (r, \theta+2\pi k) \text{ represent the same point for any integer } k

Condition: also (-r, \theta+\pi) represents the same point as (r,\theta)

Circle centered at origin

r=a (constant)r = a \text{ (constant)}

Example: A circle of radius a

Line through the origin

θ=c (constant)\theta = c \text{ (constant)}

Example: A ray/line at angle c

Cardioid

r=a(1+cosθ)r = a(1+\cos\theta)

Example: A heart-shaped curve

Rose curve

r=acos(kθ)r = a\cos(k\theta)

Example: k petals if k is odd, 2k petals if k is even

Applications

Central force problems (planetary orbits under gravity, Coulomb's law) are far simpler in polar coordinates since the force depends only on r, and Kepler's laws are stated in polar form.

Worked Examples

  1. Compute r using the distance formula.

    r=12+12=2r = \sqrt{1^2+1^2} = \sqrt{2}
  2. Compute θ; since (1,1) is in the first quadrant, arctan works directly.

    θ=arctan(1/1)=π4\theta = \arctan(1/1) = \frac{\pi}{4}

Answer: (r, θ) = (√2, π/4)

Practice Problems

Difficulty 4/10

Convert the polar point (r,θ) = (2, π/3) to Cartesian coordinates.

Difficulty 5/10

Identify the curve r = 3 (a constant).

Common Mistakes

Common Mistake

Using a plain arctan(y/x) to find θ without checking the quadrant.

arctan only returns values in (−π/2, π/2), so it misidentifies the angle for points in the 2nd or 3rd quadrant. Use atan2(y,x), which accounts for the signs of both x and y, or add π manually when x<0.

Common Mistake

Believing each point has a unique (r,θ) representation.

Polar coordinates are inherently non-unique: adding 2πk to θ, or negating r and adding π to θ, gives the same point. This matters when solving polar equations — you can miss solutions by assuming uniqueness.

Historical Background

Elements of polar-style thinking (using angle and distance) appear in Greek astronomy for tracking celestial positions. The formal method of specifying points via angle and radius developed in the 17th-18th century; Jacob Bernoulli made systematic use of polar coordinates studying spirals in 1691, and Euler further developed and popularized the polar coordinate system as a standard tool in his 18th-century work on analytic geometry.

  1. 1691

    Jacob Bernoulli uses polar-style coordinates to study spirals, including the logarithmic spiral

    Jacob Bernoulli

  2. 1740s

    Euler systematizes polar coordinates as a general coordinate system in analytic geometry

    Leonhard Euler

Summary

  • Polar coordinates (r,θ) specify a point by distance from the origin and angle from the polar axis.
  • Conversions: x=r cosθ, y=r sinθ, and r²=x²+y², θ=atan2(y,x).
  • Curves with rotational symmetry (circles, cardioids, roses, spirals) have much simpler polar than Cartesian equations.
  • Polar representation is not unique — the same point has infinitely many (r,θ) pairs.
  • Widely used for central-force physics, antenna/radar patterns, and rotationally symmetric graphics.

References