← Back to calculus 3

Polar Coordinate

What is polar coordinate?

In the xyxy-plane, a point can be described by two polar variables:

  1. rr: the signed distance from the origin.
  2. θ\theta: the angle measured from the positive xx-axis.

So we write a point as (r,θ)(r,\theta), and geometrically it is determined by a length and a direction from the origin.

Point from Polar Coordinate

Cartesian point: (2.79, 2.87)
Polar coordinate: (4.00, 0.80)
💡 Tip: Drag the blue point or click anywhere on the graph to choose a point. The Cartesian and polar coordinates are computed automatically.
(2.79, 2.87)r = 4.00θ = 0.80

In this note, we use the convention:

  1. θ0\theta \ge 0.
  2. rr can be positive or negative.

When rr changes to r-r, the same point is obtained by adding π\pi to the angle:

(r,θ)(r,θ+π).(-r,\theta) \equiv (r,\theta + \pi).

In the graph below, when rr is negative, the vector is drawn as a dashed segment.

Negative r and Angle Shift by π

Cartesian point: (-3.06, -2.58)
Polar coordinate: (-4.00, 0.70)
Since r < 0, this is equivalent to (4.00, 3.84).
💡 Tip: Drag the blue point or click anywhere on the graph to choose a point. The Cartesian and polar coordinates are computed automatically.
(-3.06, -2.58)r = -4.00θ = 0.70

Relation with the Cartesian coordinate

Given (r,θ)(r,\theta), Cartesian coordinates are:

x=rcosθ,y=rsinθ.x = r\cos\theta, \quad y = r\sin\theta.

Given (x,y)(x,y), polar variables are:

r=x2+y2,θ=arctan(y/x)  (then normalized to θ0).r = \sqrt{x^2 + y^2}, \quad \theta = \operatorname{arctan}(y/x) \; (\text{then normalized to } \theta \ge 0).

The interactive component below supports both input styles:

  1. Polar mode: input (r,θ)(r,\theta) and observe the point, radius, and right triangle with dotted sides.
  2. Cartesian mode: input (x,y)(x,y) and observe the same geometric triangle and converted polar values.
  3. Switch mode: use the button to move between polar and Cartesian input.

Polar ↔ Cartesian Conversion

Cartesian point: (3.98, 3.03)
Polar coordinate: (5.00, 0.65)
💡 Tip: Drag the blue point or click anywhere on the graph to choose a point. The Cartesian and polar coordinates are computed automatically.
(3.98, 3.03)r = 5.00θ = 0.65x = 3.98y = 3.03

The advantage of using polar coordinate

Polar coordinates are especially helpful in situations with radial symmetry or angular structure. Some advantages are:

  1. Natural for circles and radial shapes: many equations become simpler than in Cartesian form.
  2. Clear geometric meaning: rr is distance from the origin and θ\theta is direction.
  3. Easier description of closed curves: many closed curves can be parametrized directly by θ\theta.

For example, the closed curve

r=2+sin(3θ),0θ2πr = 2 + \sin(3\theta), \quad 0 \le \theta \le 2\pi

is compact in polar form. If we convert this into a parametric equation in the xyxy-coordinate system, we get the precise formulas

x(t)=(2+sin(3t))cost,y(t)=(2+sin(3t))sint,x(t) = \bigl(2 + \sin(3t)\bigr)\cos t, \quad y(t) = \bigl(2 + \sin(3t)\bigr)\sin t,

where t=θt=\theta and 0t2π0 \le t \le 2\pi.

Closed Curve from Polar Equation r = 2 + sin(3θ)