Polar to Rectangular Coordinates Converter

Convert between polar (r, θ) and rectangular (x, y) coordinates. Bidirectional conversion with quadrant visualization, unit circle reference, and batch table.

x
4.3301
x = r·cos(θ)
y
2.5000
y = r·sin(θ)
r (radius)
5.0000
r = √(x² + y²)
θ (degrees)
30.0000°
Raw: 30.0000°
θ (radians)
0.5236
≈ 0.1667π
Quadrant
I
Normalized angle: 30.00°
Distance from Origin
5.0000
Always ≥ 0
θ (gradians)
33.3333
400 gradians = 360°

Coordinate Visualization

xyIIIIIIIV(4.3, 2.5)

Quadrant Indicator

II
x<0, y>0
I
x>0, y>0
III
x<0, y<0
IV
x>0, y<0

Unit Circle Reference (r = 1)

θ (°)θ (rad)x = cos(θ)y = sin(θ)Quadrant
0°0.00001.00000.0000Axis
30°0.52360.86600.5000I
45°0.78540.70710.7071I
60°1.04720.50000.8660I
90°1.57080.00001.0000Axis
120°2.0944-0.50000.8660II
135°2.3562-0.70710.7071II
150°2.6180-0.86600.5000II
180°3.1416-1.00000.0000Axis
210°3.6652-0.8660-0.5000III
225°3.9270-0.7071-0.7071III
270°4.7124-0.0000-1.0000Axis
315°5.49780.7071-0.7071IV
360°6.28321.0000-0.0000Axis

Batch Conversion (Current Angle, Various Radii)

rxyDistance
0.50.43300.25000.5000
10.86600.50001.0000
21.73211.00002.0000
32.59811.50003.0000
54.33012.50005.0000
108.66035.000010.0000
2017.320510.000020.0000
5043.301325.000050.0000
Planning notes, formulas, and examples

About the Polar to Rectangular Coordinates Converter

The **Polar to Rectangular Coordinates Converter** performs bidirectional conversion between polar coordinates (r, θ) and rectangular (Cartesian) coordinates (x, y). Toggle between "Polar → Rectangular" and "Rectangular → Polar" modes to convert in either direction, with the angle displayed in degrees, radians, and gradians simultaneously.

Polar coordinates express a point as a distance from the origin (r) and an angle from the positive x-axis (θ). Rectangular coordinates express the same point as horizontal (x) and vertical (y) displacements. The conversion formulas are: x = r·cos(θ) and y = r·sin(θ) for polar-to-rectangular, and r = √(x² + y²) and θ = atan2(y, x) for rectangular-to-polar.

It gives far more than a simple conversion. An SVG coordinate visualization plots the point, draws the radius line from the origin, shows dashed projection lines to the axes, and marks the angle arc — all updating in real time. A quadrant indicator grid highlights which quadrant the point falls in, with sign rules displayed. The unit-circle reference table lists x and y coordinates for 14 standard angles on the unit circle, highlighting the row matching your current angle. A batch-conversion table shows the result of your current angle applied to eight common radii.

Eight preset buttons cover the most common conversions in both directions, including negative coordinates and multi-quadrant examples. Angle units can be set to degrees or radians, and the decimal precision slider controls all output formatting.

When This Page Helps

Polar to Rectangular Coordinates Converter helps you avoid repetitive setup mistakes when solving trigonometric and coordinate-geometry problems. Instead of recalculating conversions, signs, and edge cases by hand, you can test inputs immediately, inspect intermediate values, and confirm final answers before submitting work or using numbers in downstream calculations. It surfaces key outputs like x, y, r (radius) in one pass.

How to Use the Inputs

  1. Enter the required inputs (Conversion Mode, Angle Unit, Decimal Precision).
  2. Complete the remaining fields such as r (radius), x, y.
  3. Review the output cards, especially x, y, r (radius), θ (degrees).
  4. Compare the result with the formula, diagram, or example values to catch sign, unit, or rounding mistakes.
Formula used
Polar → Rectangular: x = r·cos(θ), y = r·sin(θ). Rectangular → Polar: r = √(x²+y²), θ = atan2(y, x). The angle θ is measured counterclockwise from the positive x-axis.

Example Calculation

Result: x ≈ 4.3301, y = 2.5

Using r=5, θ=30°, the calculator returns x ≈ 4.3301, y = 2.5. This example mirrors the calculator's live computation flow and is useful for checking manual steps and unit handling.

Tips & Best Practices

  • atan2(y, x) correctly handles all four quadrants, unlike atan(y/x) which only covers Q1 and Q4.
  • A negative r in polar coordinates reflects the point through the origin.
  • The origin (0, 0) in rectangular is (0, undefined) in polar — θ is undefined when r = 0.
  • Gradians divide a full rotation into 400 units instead of 360° or 2π.
  • Complex numbers in polar form use the same conversion: z = r·(cos θ + i·sin θ).

What This Polar to Rectangular Coordinates Converter Solves

This calculator is tailored to polar to rectangular coordinates converter workflows, including common input modes, unit handling, and special-case behavior. It is designed for fast checking during homework, exam preparation, technical drafting, and coding tasks where trigonometric consistency matters.

How To Interpret The Outputs

Use the primary result together with supporting outputs to verify direction, magnitude, and validity. Cross-check against known identities or geometric constraints, and confirm that angle ranges, sign conventions, and domain restrictions are satisfied before using the numbers elsewhere.

Study And Practice Strategy

A reliable way to improve is to solve once manually, then verify with the calculator and explain any mismatch. Repeat this on varied examples and edge cases. The built-in preset scenarios for quick trials, comparison tables for side-by-side validation, visual cues that make trends and quadrants easier to read help you build pattern recognition and reduce sign or conversion errors over time.

Sources & Methodology

Last updated:

Frequently Asked Questions

  • Polar coordinates (r, θ) specify a point by its distance from the origin (r) and its angle from the positive x-axis (θ), measured counterclockwise.