parametric and polar
Polar Coordinates
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
Formal Definition
A point is specified by (r, θ), converting to and from Cartesian coordinates via:
atan2 correctly handles the quadrant, unlike a naive arctan(y/x)
Notation
| Notation | Meaning |
|---|---|
| Polar coordinates: distance r from the origin, angle θ from the positive x-axis | |
| The origin, where θ is undefined | |
| The 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.
Adjacent side over hypotenuse
Opposite side over hypotenuse
Properties
Non-uniqueness of representation
Condition: also (-r, \theta+\pi) represents the same point as (r,\theta)
Circle centered at origin
Example: A circle of radius a
Line through the origin
Example: A ray/line at angle c
Cardioid
Example: A heart-shaped curve
Rose curve
Example: k petals if k is odd, 2k petals if k is even
Applications
Worked Examples
Compute r using the distance formula.
Compute θ; since (1,1) is in the first quadrant, arctan works directly.
Answer: (r, θ) = (√2, π/4)
Practice Problems
Convert the polar point (r,θ) = (2, π/3) to Cartesian coordinates.
Identify the curve r = 3 (a constant).
Common Mistakes
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.
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.
- 1691
Jacob Bernoulli uses polar-style coordinates to study spirals, including the logarithmic spiral
Jacob Bernoulli
- 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.
Mathematics