Cartesian vs Polar Coordinate Systems
In mathematics, we use coordinate systems to describe the position of points in space. Cartesian and Polar are two different types of coordinate systems. Both describe the same geometric reality from entirely different angles, literally.
The Cartesian System
René Descartes gave us the grid. In the Cartesian (or rectangular) system, a point is located by two perpendicular distances from a fixed origin:
$$P = (x,\ y)$$
- $x$ — horizontal distance from the origin (positive right, negative left)
- $y$ — vertical distance from the origin (positive up, negative down)
The axes split the plane into four quadrants. To find a point, we walk along the $x$-axis, then walk parallel to the $y$-axis. The intersection is where we are looking for.
For example, $P = (3,4)$ means 3 units right and 4 units up from the origin $P = (0,0)$.
Cartesian coordinate systems are best for lines, rectangles, grids and standard algebraic functions. But now, let's think about an circle.
A circle of radius $3$ centered at the origin in Cartesian form:
$$x^2 + y^2 = 9$$
Simple enough, but notice something: every point on the circle satisfies this equation, yet the equation gives no natural starting angle or sense of rotation. The circle is described implicitly. This is where the polar system comes into play.
The Polar System
The polar system reframes the question. Instead of asking "how far left/right and up/down?", it asks "how far from the origin, and in which direction?"
$$P = (r,\ \theta)$$
- $r$ — radial distance from the origin (always $\geq 0$)
- $\theta$ — angle measured counterclockwise from the positive $x$-axis
For example, $P = (4,\pi/4)$ means the point is 4 units away from the origin and the angle is 45° counterclockwise from the positive x-axis.
Now, the formula in the polar form for the same circle mentioned above become this:
$$r = 3 \text{ , } 0 \le \theta < 2\pi$$
That's it. A single equation, no squaring, no addition. The defining characteristic of a circle that every point is equidistant from the center is directly reflected in the coordinate system.
Converting Between the Two
The two systems are equivalent. Given polar coordinates $(r, \theta)$:
$$x = r\cos\theta \qquad y = r\sin\theta$$
Given Cartesian coordinates $(x, y)$:
$$r = \sqrt{x^2 + y^2} \qquad \theta = \arctan!\left(\frac{y}{x}\right)$$
Conclusion
Cartesian coordinates are a grid — they decompose space into independent horizontal and vertical components. They're additive: combining two displacements means adding their components.
Polar coordinates are a compass — they encode distance and direction as separate quantities. They're multiplicative in a sense: scaling a polar curve changes $r$, rotating it changes $\theta$.
The choice of coordinate system is not just notation — it shapes which patterns are visible. Physicists use polar (and its 3D generalization, spherical) coordinates for gravity and electromagnetism because those forces act radially from a source. Engineers use Cartesian for structural analysis because loads act in fixed directions.