Understanding Trigonometric Form
A complex number z can be expressed as z = r[cos(φ) + i sin(φ)], where r represents the modulus (distance from the origin to the point in the complex plane) and φ represents the argument (the angle measured counterclockwise from the positive real axis).
This form is particularly powerful because it transforms addition into geometric combination and multiplication into simple operations on magnitude and angle. When you work with complex numbers in trigonometric form, operations that appear cumbersome in rectangular notation become elegant and intuitive.
The connection between rectangular and trigonometric forms reveals the underlying geometry of complex arithmetic. The real part a and imaginary part b determine where the point lies on the plane, while the magnitude and argument describe the same location using polar coordinates.
Conversion Formulas
To convert from rectangular form z = a + bi to trigonometric form, calculate the magnitude and argument using these formulas:
r = √(a² + b²)
φ = atan2(b, a)
a— Real part of the complex numberb— Imaginary part of the complex numberr— Magnitude (modulus) of the complex numberφ— Argument (phase angle) of the complex number
Step-by-Step Conversion Process
Converting a complex number requires two calculations and careful attention to quadrant placement:
- Calculate the magnitude: Apply the Pythagorean theorem to find how far the point lies from the origin. This is always a non-negative real number.
- Calculate the argument: Use the arctangent function (specifically
atan2) to determine the angle. Theatan2function automatically accounts for which quadrant the complex number occupies, eliminating ambiguity. - Express the result: Write the trigonometric form as r times the cosine-plus-i-sine expression, or equivalently as r times e to the power of iφ (Euler's form).
The atan2(b, a) function is superior to simple atan(b/a) because it returns angles in the correct quadrant without requiring manual adjustment. A complex number in the second quadrant (negative real, positive imaginary) produces an argument between π/2 and π, which atan2 handles automatically.
Common Pitfalls and Practical Considerations
Several mistakes frequently occur when converting complex numbers to trigonometric form.
- Quadrant errors with simple arctangent — Using <code>atan(b/a)</code> instead of <code>atan2(b, a)</code> can place your answer in the wrong quadrant. The number −1 + i should yield argument 3π/4, not −π/4. Always use <code>atan2</code> to account for the signs of both components.
- Forgetting to validate your result — After conversion, verify your work by computing a = r cos(φ) and b = r sin(φ). These should match your original rectangular coefficients within rounding error. This sanity check catches algebraic mistakes before they propagate.
- Angle representation ambiguity — Angles repeat every 2π radians. The argument 0.5 rad and 0.5 + 2π rad represent the same direction. Most conventions restrict arguments to (−π, π] or [0, 2π). Check whether your context requires a specific range.
- Pure real and imaginary numbers — Real numbers have argument 0 (or π for negative reals), and pure imaginary numbers have argument π/2 or 3π/2. These edge cases sometimes confuse students because there is no conventional arctangent value for division by zero.
Practical Example: Converting 1 + i
Consider converting z = 1 + i to trigonometric form.
First, compute the magnitude: r = √(1² + 1²) = √2 ≈ 1.414.
Next, determine the argument: φ = atan2(1, 1) = π/4 radians = 45°.
The trigonometric form is therefore z = √2 [cos(π/4) + i sin(π/4)].
You can verify this: √2 · cos(π/4) = √2 · (1/√2) = 1 ✓, and √2 · sin(π/4) = √2 · (1/√2) = 1 ✓. The Euler form would be √2 e^(iπ/4).