Polar Coordinates

Summary

Polar coordinates (r,θ) describe a plane point by distance from the origin and angle from the positive x -axis. They simplify circles, spirals, and many double integrals.

Prerequisites

Prerequisites: trigonometry and the Cartesian plane.

Formula

Polar to Cartesian

x=rcosθ,y=rsinθ.

Cartesian to polar

r=x2+y2,θ=atan2(y,x).

The two-argument arctangent fixes the quadrant; arctan(y/x) alone is insufficient when x0 .

Conditions / Assumptions

Worked Example

(r,θ)=(2,π/3) gives x=2cos(π/3)=1 , y=2sin(π/3)=3 .

For area integrals, dA=rdrdθ (see Double Integrals in Polar Coordinates).

Common Mistakes

Connections

References

Polar coordinates are reviewed in OpenStax Calculus Volume 2/3 as needed for integration.[1]


  1. OpenStax, Calculus Volume 3, Section 5.3, https://openstax.org/details/books/calculus-volume-3 ↩︎