Convert between rectangular coordinates (x, y) and polar coordinates (r, θ) in either direction — choose degrees or radians, see the point plotted with its radius and angle, and follow full step-by-step working.
Rect → Polar: r = √(x² + y²), θ = atan2(y, x) · Polar → Rect: x = r·cosθ, y = r·sinθ