Conversion Formulas
Rectangular → Polar
r = √(a² + b²) = √(3² + 2²) = √(9 + 4) = 3.61
θ = atan2(b, a) = atan2(2, 3) = 33.69°
Polar → Rectangular
a = r cos θ = 3.61 · cos(33.69°) = 3
b = r sin θ = 3.61 · sin(33.69°) = 2
Key Ideas
Rectangular form (a + bi) describes a complex number by its horizontal and vertical components — how far right/left (a) and how far up/down (b) from the origin.
Polar form (r, θ) describes the same point by its distance from the origin (r = modulus) and the angle from the positive real axis (θ = argument).
The right triangle is the bridge. The hypotenuse is r, the adjacent side is a = r cos θ, and the opposite side is b = r sin θ. Pythagoras gives r = √(a² + b²).
When to use which? Rectangular is easier for addition and subtraction. Polar is easier for multiplication, division, and powers — because multiplying in polar means multiplying moduli and adding angles.