Polar Coordinates Calculator

Convert points between Cartesian x, y coordinates and polar radius, angle coordinates in degrees.

Convert coordinate systems
Choose a direction and enter the two known coordinate values.

About polar coordinates

Cartesian and polar coordinates are two ways to describe the same point in a plane. Cartesian coordinates use a horizontal value x and a vertical value y measured from the origin. Polar coordinates instead use a radius r, the point's straight-line distance from the origin, and an angle theta measured from the positive x-axis. Cartesian notation emphasizes rectangular movement, while polar notation emphasizes distance and direction. To convert a Cartesian point to polar form, the radius follows from the Pythagorean theorem: r is the square root of x squared plus y squared. The angle comes from the two-argument arctangent function, commonly written atan2 of y and x. Unlike a basic inverse tangent, atan2 uses the signs of both coordinates to identify the correct quadrant. This calculator normalizes the result to an angle from zero degrees up to, but not including, 360 degrees. At the origin the direction is conventionally displayed as zero even though every angle reaches the same point. The reverse conversion projects the radius onto the coordinate axes. Multiply r by the cosine of theta to obtain x, and multiply r by the sine of theta to obtain y. The calculator accepts the angle in degrees and converts it internally to radians before using the trigonometric functions. Tiny floating-point remnants near zero are cleaned from the display, so the conversion of radius 10 at 90 degrees appears as x equal to zero rather than an extremely small scientific-notation value. Polar coordinates are especially useful whenever rotation or radial distance is central to a problem. Engineers use them for alternating-current phasors and rotating machinery. Mathematicians use them to graph circles, spirals, and rose curves, or to simplify double integrals over circular regions. Navigators can express a displacement as a bearing and distance, while computer graphics systems use polar relationships for animation, particle effects, and object placement around a center. A single Cartesian point has many equivalent polar descriptions because adding or subtracting a full 360-degree turn leaves the direction unchanged. Negative radii can also be rewritten by reversing direction, but this calculator requires a nonnegative radius to provide one clear conventional output. Use either conversion direction to check trigonometry, translate geometry data, prepare graphing coordinates, or verify calculations involving magnitude and direction.

Polar coordinate examples

InputConverted resultExplanation
Cartesian (3, 4)Polar (5, 53.130102°)A 3-4-5 right triangle fixes the radius.
Polar (10, 90°)Cartesian (0, 10)A right angle points along the positive y-axis.
Cartesian (-1, -1)Polar (1.414214, 225°)Both negative coordinates place the point in quadrant three.

How to convert coordinates

  1. Choose Cartesian to polar or Polar to Cartesian.
  2. Enter both coordinates, using degrees for the polar angle.
  3. Select Convert coordinates to apply the trigonometric formulas.
  4. Read the radius and angle or the resulting x and y coordinates.

Polar coordinates FAQ

What do r and theta mean?

The radius r is the distance from the origin to the point. Theta is the direction measured counterclockwise from the positive x-axis.

Does the calculator use degrees or radians?

Angle inputs and outputs use degrees for readability. The calculator converts degrees to radians internally when evaluating sine and cosine.

Why is atan2 used instead of inverse tangent?

A simple inverse tangent cannot distinguish points in opposite quadrants with the same y divided by x ratio. Atan2 examines both signs and returns the correct direction.

Can an angle be greater than 360 degrees?

Such an angle represents additional full turns and remains mathematically valid. Cartesian-to-polar results are normalized to the standard range from zero through less than 360 degrees.

Why must radius be nonnegative?

A negative radius can always be rewritten as a positive radius with the angle rotated by 180 degrees. Requiring a nonnegative value keeps each displayed result in a familiar convention.