The polar coordinate system is a method for locating points in a plane by specifying a distance and an angle rather than horizontal and vertical offsets. One coordinate (the radial coordinate) gives the distance from a fixed point called the pole, and the other (the angular coordinate) gives the direction of the point relative to a chosen reference ray. This representation is especially natural when problems involve rotational symmetry or radial distance, and it complements the more familiar Cartesian (rectangular) coordinates. For a concise introduction see overview.

Basic definitions and notation

A point in the plane is written as (r, θ), where r is the nonnegative or signed radial distance and θ is the angle measured from the polar axis. The pole corresponds to the origin in Cartesian geometry. Angles are usually measured in radians or degrees and are taken modulo full rotations, so θ and θ+2π represent the same direction. For precise coordinate rules and conventions consult conventions.

Conversion between polar and Cartesian coordinates

Polar coordinates relate to Cartesian coordinates (x,y) by simple trigonometric formulas. Given (r, θ):

  • x = r cos θ
  • y = r sin θ

Conversely, given (x,y):

  • r = sqrt(x² + y²)
  • θ = atan2(y, x), taking care with quadrant and branch choices

These conversions are used in analytic geometry and computer graphics; see conversion notes and numerical details at computation.

Properties and multiple representations

Polar coordinates are not unique. A single point can be represented by infinitely many pairs: (r, θ), (r, θ+2πn) for any integer n, and also by negative r together with θ shifted by π: (−r, θ) = (r, θ+π). The pole itself has r = 0 and any θ. These features are useful in solving equations but require care when interpreting graphs; more on branch choices is available at branching.

Common polar curves and graphing

Many classical plane curves have concise polar equations. Examples:

  • Circles not necessarily centered at the pole: r = a cos θ + b sin θ.
  • Spirals such as the Archimedean spiral: r = a + bθ.
  • Cardioid and limaçon families: r = a + b cos θ or r = a + b sin θ.
  • Rose curves: r = a cos(nθ) or r = a sin(nθ), producing petal shapes.

Polar graphing typically treats θ as the independent variable and plots r(θ) in the plane; specialized plotting software and analytic techniques are discussed at polar plotting.

Applications and connections

Polar coordinates appear across mathematics, physics and engineering. They simplify problems with circular symmetry such as fields around points, orbital motion, wavefronts, and boundary value problems in polar domains. In complex analysis the polar form z = r e^{iθ} links magnitude and argument directly, a central idea in representing complex numbers; see complex form. Polar methods also underpin polar integration in calculus and coordinate transforms used in partial differential equations and numerical simulation (see applications).

For historical context and further reading about development and standardization of polar methods, consult introductory histories and textbooks at history and references.