Polar Coordinates: Definition, Formula & Conversion

#Geometry
TL;DR
Polar coordinates describe a point in a plane by two numbers: $r$, the distance from a fixed origin (the pole), and $\theta$, the angle measured from the positive $x$-axis. A point is written as $(r, \theta)$ instead of the Cartesian $(x, y)$. You convert with $x = r\cos\theta$ and $y = r\sin\theta$ one way, and $r = \sqrt{x^2 + y^2}$, $\theta = \tan^{-1}(y/x)$ the other. This article defines the system, derives both conversion formulas, works six examples, and clears up why a point can have many polar names.
BT
Bhanzu TeamLast updated on July 31, 202610 min read

What Are Polar Coordinates?

Polar coordinates are a way of pinning down a point in a plane using a distance and a direction rather than two perpendicular distances. You fix a point called the pole (the origin) and a ray from it called the polar axis (usually the positive $x$-axis). Any point $P$ is then named by the pair $(r, \theta)$, where:

  • $r$ is how far $P$ sits from the pole,

  • $\theta$ is the angle you rotate from the polar axis to reach $P$.

Compare that with the Cartesian plane, where you name a point by how far right and how far up it is. Polar coordinates trade "right and up" for "how far and which way." For anything built around a centre - a radar sweep, a spiral, a planet's orbit - that second description is far more natural.

How Do You Read a Polar Coordinate (r, θ)?

Reading $(r, \theta)$ is a two-step move: turn, then walk.

  1. Start facing along the polar axis (the positive $x$-axis).

  2. Rotate through the angle $\theta$: anticlockwise if $\theta$ is positive, clockwise if it is negative.

  3. Walk forward a distance $r$ along that direction. Where you stop is the point.

So $(3, 60°)$ means: rotate $60°$ anticlockwise, then move $3$ units out. The angle $\theta$ can be given in degrees or radians; higher maths almost always uses radians, so $60°$ becomes $\pi/3$. Because a full turn brings you back to the same direction, adding $360°$ (or $2\pi$) to $\theta$ lands you on the same point, which is the first hint that polar names are not unique.

How Do You Convert Between Polar and Cartesian Coordinates?

This is the most-asked question about the topic, and it comes straight from a right triangle. Drop a perpendicular from the point $P(r, \theta)$ to the $x$-axis. You get a right triangle whose hypotenuse is $r$, whose base is $x$, and whose height is $y$, with the angle $\theta$ at the origin.

Polar to Cartesian. From the definitions of sine and cosine in that triangle:

$$x = r\cos\theta \qquad y = r\sin\theta$$

Cartesian to polar. Reverse it with the Pythagorean theorem and the tangent ratio:

$$r = \sqrt{x^2 + y^2} \qquad \theta = \tan^{-1}!\left(\frac{y}{x}\right)$$

Here is what each symbol means:

  • $r$ - the distance from the origin to the point (always $\ge 0$ in the standard convention).

  • $\theta$ - the angle from the positive $x$-axis, measured anticlockwise.

  • $x$ - the horizontal Cartesian coordinate.

  • $y$ - the vertical Cartesian coordinate.

One caution on $\theta$: the $\tan^{-1}$ button only returns angles between $-90°$ and $90°$, so you must check which quadrant $(x, y)$ lies in and add $180°$ when the point is on the left half of the plane. A dedicated walkthrough of that quadrant check lives in the polar to rectangular guide.

Polar $(r, \theta)$

$x = r\cos\theta$

$y = r\sin\theta$

Cartesian $(x, y)$

$(2, 0°)$

$2\cos 0° = 2$

$2\sin 0° = 0$

$(2, 0)$

$(4, 90°)$

$4\cos 90° = 0$

$4\sin 90° = 4$

$(0, 4)$

$(2, 60°)$

$2\cos 60° = 1$

$2\sin 60° = \sqrt{3}$

$(1, \sqrt{3})$

Can r Be Negative in Polar Coordinates?

Yes - and this trips up almost everyone the first time. If $r$ is negative, you face along $\theta$ but then walk backwards. So $(-2, 30°)$ lands in the exact spot as $(2, 210°)$: same distance, opposite direction. A negative radius reflects the point through the pole.

This flexibility is why a single point has infinitely many polar names. The point $(2, 30°)$ is equally $(2, 390°)$, $(2, -330°)$, and $(-2, 210°)$. In elementary work you usually keep $r \ge 0$ and $0° \le \theta < 360°$ to get one clean answer, but the negative-$r$ convention matters when you graph curves like $r = \cos 2\theta$, where the radius genuinely dips below zero.

What Are the Properties of Polar Coordinates?

Polar coordinates behave differently from Cartesian ones, and these properties are worth stating on their own:

  • Non-uniqueness. Every point (except the pole) has infinitely many representations, since $(r, \theta)$ and $(r, \theta + 360°n)$ name the same point for any integer $n$, and negative $r$ adds even more.

  • The pole is special. At $r = 0$ the point is the pole itself, and $\theta$ can be anything - the angle carries no information when the distance is zero.

  • Circles are simple. The equation $r = a$ (constant) is a circle of radius $a$ centred at the pole. In Cartesian form the same circle needs $x^2 + y^2 = a^2$.

  • Lines through the pole are simple. The equation $\theta = \alpha$ (constant) is a straight line through the pole at angle $\alpha$.

  • Symmetry is angular. Replacing $\theta$ with $-\theta$ reflects a curve across the polar axis, a test used constantly when sketching polar graphs.

These traits are why some shapes that look messy in $x$ and $y$ become one-line equations in $r$ and $\theta$.

Where Are Polar Coordinates Used?

The system earns its keep anywhere a problem is organised around a centre and a direction:

  • Navigation and radar. A ship or aircraft bearing is a distance and a heading - a polar pair by nature. Radar screens plot returns as $(r, \theta)$ directly.

  • Physics of circular and orbital motion. Planetary orbits, forces pointing toward a centre, and rotational systems are far cleaner in polar form than in $x$ and $y$.

  • Engineering and antenna design. Radiation patterns and rotating machinery are described by how a quantity varies with angle.

  • Modelling spirals and curves. Spirals, roses, and cardioids have short polar equations that would be painful in Cartesian form.

  • Extending to 3D. Adding a height axis gives cylindrical coordinates, the natural setting for pipes, cylinders, and rotational solids, and the whole framework connects back to standard coordinate geometry.

Examples of Polar Coordinates

Example 1

Convert the polar point $(5, 53.13°)$ to Cartesian coordinates. (Take $\cos 53.13° = 0.6$, $\sin 53.13° = 0.8$.)

Use $x = r\cos\theta$ and $y = r\sin\theta$.

$$x = 5 \times 0.6 = 3 \qquad y = 5 \times 0.8 = 4$$

Final answer: the Cartesian point is $(3, 4)$.

Example 2

Convert the Cartesian point $(3, 4)$ back to polar coordinates.

First $r = \sqrt{3^2 + 4^2} = \sqrt{9 + 16} = \sqrt{25} = 5$. Then $\theta = \tan^{-1}(4/3) \approx 53.13°$, and since $(3, 4)$ is in the first quadrant no adjustment is needed.

Final answer: the polar point is $(5, 53.13°)$.

Example 3

A student converts the Cartesian point $(-1, 1)$ and reports $\theta = \tan^{-1}(1/-1) = -45°$.

Wrong path. The student trusts the calculator's $\tan^{-1}$ output directly and writes $(\sqrt{2}, -45°)$.

Why it breaks. The point $(-1, 1)$ sits in the second quadrant (left and up), but $-45°$ points into the fourth quadrant (right and down). The $\tan^{-1}$ key cannot tell $(-1, 1)$ apart from $(1, -1)$ because both give the same ratio.

The rescue. Locate the quadrant first, then add $180°$ to the calculator angle for any left-half point: $-45° + 180° = 135°$. With $r = \sqrt{(-1)^2 + 1^2} = \sqrt{2}$, the correct pair is $(\sqrt{2}, 135°)$.

Final answer: $(\sqrt{2}, 135°)$, not $(\sqrt{2}, -45°)$.

Example 4

Write three other polar names for the point $(4, 60°)$.

Add or subtract a full turn, and use the negative-$r$ rule:

  • $(4, 60° + 360°) = (4, 420°)$

  • $(4, 60° - 360°) = (4, -300°)$

  • $(-4, 60° + 180°) = (-4, 240°)$

Final answer: $(4, 420°)$, $(4, -300°)$, and $(-4, 240°)$ all name the same point.

Example 5

What curve does the polar equation $r = 3$ describe?

Every point at distance $3$ from the pole, in every direction, satisfies this. That is exactly a circle of radius $3$ centred at the pole. In Cartesian form it becomes $x^2 + y^2 = 9$.

Final answer: a circle of radius $3$ centred at the origin.

Example 6

Convert the polar point $(6, 90°)$ to Cartesian coordinates.

With $\cos 90° = 0$ and $\sin 90° = 1$:

$$x = 6 \times 0 = 0 \qquad y = 6 \times 1 = 6$$

Final answer: the Cartesian point is $(0, 6)$, straight up the $y$-axis.

Where Do Students Trip Up on Polar Coordinates?

The recurring stumble is treating $(r, \theta)$ as if it behaved like $(x, y)$, assuming one point has one name and trusting the calculator's angle without a quadrant check. Naming the quadrant before you touch $\tan^{-1}$, and remembering that $\theta$ is a rotation rather than a coordinate, fixes most errors before they start.

Mistake 1: Mixing up the order to $(θ, r)$

Where it slips in: Reading the pair left to right as "angle then distance."

Don't do this: Plotting $(2, 90°)$ as if the $2$ were the angle.

The correct way: The convention is always $(r, \theta)$, distance first, angle second. In $(2, 90°)$, the distance is $2$ and the angle is $90°$.

Mistake 2: Ignoring the quadrant when finding θ

Where it slips in: Copying the raw $\tan^{-1}(y/x)$ value for a point in the second or third quadrant.

Don't do this: Reporting $\theta = -45°$ for the point $(-1, 1)$.

The correct way: $\tan^{-1}$ only returns angles in $(-90°, 90°)$. For any point on the left half of the plane, add $180°$ to place $\theta$ in the right quadrant.

Mistake 3: Forgetting radians vs degrees

Where it slips in: Feeding $\theta = \pi/3$ into a calculator set to degree mode, or $60$ into radian mode.

Don't do this: Reading $\sin(60)$ in radian mode and getting $-0.305$.

The correct way: Match the calculator's angle mode to the unit you are using. In radians, $60°$ is $\pi/3 \approx 1.047$, and $\sin(\pi/3) = \sqrt{3}/2$.

Conclusion

  • Polar coordinates name a point by distance $r$ and angle $\theta$ from a fixed pole, written $(r, \theta)$.

  • Convert with $x = r\cos\theta$, $y = r\sin\theta$ one way, and $r = \sqrt{x^2 + y^2}$, $\theta = \tan^{-1}(y/x)$ the other - always checking the quadrant for $\theta$.

  • A negative $r$ points backwards, and every point has infinitely many polar names, so the pole and angle behave unlike Cartesian coordinates.

  • Circles and lines through the origin have one-line polar equations, which is why the system suits centres, spirals, and rotational motion.

To take polar coordinates further with a teacher, explore Bhanzu's geometry tutor or high school math tutor sessions, or browse math classes online for guided coordinate-geometry practice.

Read More

Practice These to Solidify Your Understanding

Work through these problems in order:

  1. Convert the polar point $(8, 30°)$ to Cartesian coordinates.

  2. Convert the Cartesian point $(0, -5)$ to polar coordinates with $r \ge 0$.

  3. Give two other polar names for the point $(3, 45°)$, one using a negative radius.

Answer to Question 1: $x = 8\cos 30° = 4\sqrt{3}$, $y = 8\sin 30° = 4$, so $(4\sqrt{3}, 4)$. Answer to Question 2: $r = 5$, and the point is straight down, so $\theta = 270°$, giving $(5, 270°)$. Answer to Question 3: $(3, 405°)$ and $(-3, 225°)$.

Want a live Bhanzu trainer to walk through more coordinate problems with you? Book a free demo class.

Book a Free Demo

Was this article helpful?

Your feedback helps us write better content

Frequently Asked Questions

What are polar coordinates in simple terms?
They locate a point using how far it is from a centre point ($r$) and in what direction ($\theta$), instead of using horizontal and vertical distances.
What is the formula to convert polar to Cartesian coordinates?
Use $x = r\cos\theta$ and $y = r\sin\theta$, where $r$ is the distance from the origin and $\theta$ is the angle from the positive $x$-axis.
Why can a point have more than one set of polar coordinates?
Adding $360°$ to the angle returns to the same direction, and a negative $r$ reflects through the pole, so each point has infinitely many valid $(r, \theta)$ names.
Are polar coordinates measured in degrees or radians?
Both are used. School work often uses degrees, while calculus and physics use radians; just make sure your calculator's angle mode matches.
What does the equation r = a represent in polar coordinates?
A circle of radius $a$ centred at the pole, because every point at that fixed distance in every direction satisfies it.
✍️ Written By
BT
Bhanzu Team
Content Creator and Editor
Bhanzu’s editorial team, known as Team Bhanzu, is made up of experienced educators, curriculum experts, content strategists, and fact-checkers dedicated to making math simple and engaging for learners worldwide. Every article and resource is carefully researched, thoughtfully structured, and rigorously reviewed to ensure accuracy, clarity, and real-world relevance. We understand that building strong math foundations can raise questions for students and parents alike. That’s why Team Bhanzu focuses on delivering practical insights, concept-driven explanations, and trustworthy guidance-empowering learners to develop confidence, speed, and a lifelong love for mathematics.
Related Articles
Book a FREE Demo ClassBook Now →