Polar Vs Rectangular Converter
Math Algebra • Complex Numbers
Frequently Asked Questions
How do I convert a+bi to polar form?
Use r = sqrt(a^2 + b^2) and theta = atan2(b, a). The polar/exponential form is r e^(i theta), and the trig form is r(cos theta + i sin theta).
How do I convert polar form r e^(i theta) to rectangular form?
Compute a = r cos(theta) and b = r sin(theta). The rectangular form is a + b i.
What is the principal argument of a complex number?
The principal argument Arg(z) is the unique angle chosen in the interval (-pi, pi]. A complex number has infinitely many arguments that differ by 2k pi.
Why does the calculator use atan2(b, a) instead of arctan(b/a)?
atan2(b, a) selects the correct quadrant automatically and handles cases where a is 0. This prevents incorrect angles that can occur with b/a alone.
Can I convert many complex numbers at once?
Yes, use the bulk mode to paste a list (rectangular or polar depending on the selected bulk option) and run a list-to-table conversion to get results for each entry.