Facebook Pixel
Mathos AI logo

Complex Numbers in Polar Form

Complex Numbers in Polar Form

While complex numbers are usually introduced in rectangular form as z=a+biz = a + bi, they can also be written in polar form. Polar form is incredibly useful because it makes multiplying, dividing, and finding powers of complex numbers much simpler.

Understanding Polar Form

In the complex plane, a complex number z=a+biz = a + bi can be represented by its distance from the origin and its angle from the positive real axis.

  • Modulus (rr): The distance from the origin to the point. r=a2+b2r = \sqrt{a^2 + b^2}
  • Argument (θ\theta): The angle formed with the positive real axis. tanθ=ba\tan \theta = \frac{b}{a}

Using trigonometry, we can express the complex number as: z=r(cosθ+isinθ)z = r(\cos \theta + i\sin \theta) This is often abbreviated using the shorthand notation cis: z=rcis(θ)z = r\,\text{cis}(\theta)

Converting Rectangular to Polar Form

Let's convert the complex number z=33iz = 3 - 3i into polar form.

  1. Find the modulus (rr): r=32+(3)2=9+9=18=32r = \sqrt{3^2 + (-3)^2} = \sqrt{9 + 9} = \sqrt{18} = 3\sqrt{2}
  2. Find the argument (θ\theta): tanθ=33=1\tan \theta = \frac{-3}{3} = -1 Since aa is positive and bb is negative, the point lies in the 4th quadrant. The angle with a tangent of 1-1 in the 4th quadrant is θ=7π4\theta = \frac{7\pi}{4} (or π4-\frac{\pi}{4}).
  3. Write in polar form: z=32(cos(7π4)+isin(7π4))z = 3\sqrt{2}\left(\cos\left(\frac{7\pi}{4}\right) + i\sin\left(\frac{7\pi}{4}\right)\right) Or simply, z=32cis(7π4)z = 3\sqrt{2}\,\text{cis}\left(\frac{7\pi}{4}\right).

Multiplication and Division in Polar Form

Polar form makes multiplication and division incredibly straightforward.

  • To multiply: Multiply the moduli and add the arguments. z1z2=r1r2cis(θ1+θ2)z_1 z_2 = r_1 r_2 \,\text{cis}(\theta_1 + \theta_2)
  • To divide: Divide the moduli and subtract the arguments. z1z2=r1r2cis(θ1θ2)\frac{z_1}{z_2} = \frac{r_1}{r_2} \,\text{cis}(\theta_1 - \theta_2)

Example: Multiplication

Multiply 2cis(π3)4cis(π4)2\,\text{cis}\left(\frac{\pi}{3}\right) \cdot 4\,\text{cis}\left(\frac{\pi}{4}\right) and convert the result to rectangular form.

  1. Multiply the moduli: 2×4=82 \times 4 = 8
  2. Add the arguments: π3+π4=4π12+3π12=7π12\frac{\pi}{3} + \frac{\pi}{4} = \frac{4\pi}{12} + \frac{3\pi}{12} = \frac{7\pi}{12}
  3. Polar result: 8cis(7π12)8\,\text{cis}\left(\frac{7\pi}{12}\right)

To convert this back to rectangular form a+bia + bi, evaluate the sine and cosine of 7π12\frac{7\pi}{12}:

  • cos(7π12)=264\cos\left(\frac{7\pi}{12}\right) = \frac{\sqrt{2} - \sqrt{6}}{4}
  • sin(7π12)=6+24\sin\left(\frac{7\pi}{12}\right) = \frac{\sqrt{6} + \sqrt{2}}{4}

Now distribute the modulus 88: a=8(264)=2226a = 8 \left(\frac{\sqrt{2} - \sqrt{6}}{4}\right) = 2\sqrt{2} - 2\sqrt{6} b=8(6+24)=26+22b = 8 \left(\frac{\sqrt{6} + \sqrt{2}}{4}\right) = 2\sqrt{6} + 2\sqrt{2}

Rectangular result: (2226)+i(26+22)(2\sqrt{2} - 2\sqrt{6}) + i(2\sqrt{6} + 2\sqrt{2})

De Moivre's Theorem

If you need to raise a complex number to a power, doing it in rectangular form requires tedious binomial expansion. In polar form, De Moivre's Theorem gives us a powerful shortcut:

zn=[r(cosθ+isinθ)]n=rn(cos(nθ)+isin(nθ))z^n = [r(\cos \theta + i\sin \theta)]^n = r^n(\cos(n\theta) + i\sin(n\theta))

Simply raise the modulus to the power of nn and multiply the argument by nn.