Understanding Complex Number Polar Form
Every complex number z = a + bi can be represented in polar form as z = r(cos theta + i sin theta), where r is the modulus (distance from the origin) and theta is the argument (angle from the positive real axis). This representation is also written using Euler's formula as z = re^(i*theta).
Key Formulas
Modulus (r)
The distance from the origin in the complex plane.
Argument (theta)
The angle from the positive real axis, using atan2 for correct quadrant.
Trigonometric Form
The polar representation using cosine and sine.
Exponential Form
Using Euler's formula e^(i*theta) = cos theta + i sin theta.
De Moivre's Theorem
For computing powers of complex numbers.
Multiplication in Polar
Multiply moduli and add arguments.
Converting Between Forms
Rectangular to Polar
- Calculate the modulus: r = sqrt(a^2 + b^2)
- Calculate the argument: theta = atan2(b, a)
- Write in polar form: z = r(cos theta + i sin theta)
Polar to Rectangular
- Calculate the real part: a = r cos theta
- Calculate the imaginary part: b = r sin theta
- Write in rectangular form: z = a + bi
Applications
Polar form is essential in electrical engineering (AC circuit analysis, phasors), signal processing (Fourier transforms), quantum mechanics (wave functions), and any field dealing with oscillations and rotations. The exponential form makes multiplication, division, and exponentiation of complex numbers much simpler.