Complex Number to Polar Form Converter
Transform rectangular coordinates into polar representation instantly
Quick Conversions
What is Polar Form?
The polar form represents a complex number using its distance from the origin (modulus) and the angle it makes with the positive real axis (argument). Instead of expressing a complex number as z = a + bi where a and b are rectangular coordinates, polar form expresses it as z = r(cos θ + i sin θ) or z = r eiθ.
Polar Form: z = r(cos θ + i sin θ) = r cis θ
Exponential Form: z = r eiθ
Where:
• r (modulus) = √(a² + b²)
• θ (argument) = atan2(b, a)
Conversion Formulas & Steps
Formulas
To convert from rectangular form a + bi to polar form, use these formulas:
Modulus: r = √(a² + b²)
Argument: θ = atan2(b, a)
The atan2 function handles all four quadrants correctly:
- If a > 0: θ = arctan(b/a)
- If a < 0 and b ≥ 0: θ = arctan(b/a) + π
- If a < 0 and b < 0: θ = arctan(b/a) - π
- If a = 0 and b > 0: θ = π/2
- If a = 0 and b < 0: θ = -π/2
Conversion Steps
- Identify the real part (a) and imaginary part (b) from your complex number a + bi
- Calculate the modulus r using the formula r = √(a² + b²)
- Calculate the argument θ using atan2(b, a) to get the correct quadrant
- Write the polar form as r(cos θ + i sin θ) or r eiθ
- Convert angle to degrees if needed by multiplying by 180/π
Common Conversions
| Rectangular Form | Modulus (r) | Argument (θ) | Polar Form |
|---|---|---|---|
| 1 + 0i | 1 | 0° (0 rad) | 1(cos 0 + i sin 0) |
| 0 + i | 1 | 90° (π/2 rad) | 1(cos π/2 + i sin π/2) |
| -1 + 0i | 1 | 180° (π rad) | 1(cos π + i sin π) |
| 0 – i | 1 | -90° (-π/2 rad) | 1(cos(-π/2) + i sin(-π/2)) |
| 1 + i | √2 ≈ 1.414 | 45° (π/4 rad) | √2(cos π/4 + i sin π/4) |
| √3 + i | 2 | 30° (π/6 rad) | 2(cos π/6 + i sin π/6) |
| 3 + 4i | 5 | ≈53.13° (≈0.927 rad) | 5(cos 0.927 + i sin 0.927) |
| -1 + i | √2 ≈ 1.414 | 135° (3π/4 rad) | √2(cos 3π/4 + i sin 3π/4) |
Real-World Applications
Electrical Engineering
AC circuit analysis uses polar form to represent impedance, making it easier to calculate phase angles and magnitudes in alternating current systems.
Signal Processing
Fourier transforms convert signals to frequency domain where polar form simplifies amplitude and phase calculations for audio and image processing.
Quantum Mechanics
Wave functions in quantum physics are represented as complex numbers, with polar form revealing probability amplitudes and phase relationships.
Control Systems
Transfer functions in control theory use polar coordinates for stability analysis and frequency response plots like Bode and Nyquist diagrams.
Computer Graphics
Rotations and transformations in 2D graphics are simplified using polar coordinates, making animation and geometric calculations more efficient.
Navigation Systems
GPS and radar systems use polar coordinates to represent direction and distance, making position tracking and course corrections more intuitive.
Advantages of Polar Form
Multiplication: When multiplying complex numbers in polar form, multiply the moduli and add the arguments:
z₁z₂ = r₁r₂[cos(θ₁ + θ₂) + i sin(θ₁ + θ₂)]
Division: When dividing, divide the moduli and subtract the arguments:
z₁/z₂ = (r₁/r₂)[cos(θ₁ – θ₂) + i sin(θ₁ – θ₂)]
Powers (De Moivre’s Theorem): Raising to a power becomes simple:
zn = rn[cos(nθ) + i sin(nθ)]
Roots: Finding nth roots is straightforward:
z1/n = r1/n[cos((θ + 2kπ)/n) + i sin((θ + 2kπ)/n)], k = 0, 1, 2, …, n-1
