Trig This section assumes a knowledge of trigonometry. For information on trigonometry, see Dave’s Short Trig Course at
http://www.clarku.edu/~djoyce/trig/
right triangle with horizontal side x, vertical side yi, and hypotenuse r

Polar coordinates will help us understand complex numbers geometrically. On the one hand, the usual rectangular coordinates x and y specify a complex number z = x + yi by giving the distance x right and the distance y up. On the other hand, polar coordinates specify the same point z by saying how far r away from the origin 0, and the angle theta for the line from the origin to the point. We’ve already called the distance r the absolute value |z| of z, and we saw how the Pythagorean theorem gave relation between it and x and y:

r = |z| = the square root of (x^2+y^2)

Next, we need to deal with the angle theta. We’ll follow the standard convention for specifying the angle theta. This convention takes the positive x-axis (our real axis) to be at angle 0°, the positive y-axis (our imaginary axis) at angle 90°, the negative x-axis angle 180°, and the negative y-axis at angle 270°. Also, 360° can be added or subtracted from any angle and the direction is not changes. So, 0°, 360°, 720°, and –360° all refer to the positive x-axis. Similarly, 270° and –90° both refer to the negative y-axis. A 45° angle runs along the line y = x, up to the right. And so forth.

A point z can be specified by either pair, the pair of rectangular coordinates, x and y, or the pair of polar coordinates, r, which is |z|, and theta, which is arg (z). Since either pair determines the point, each pair should determine the other pair. There should be four equations, connecting them, and so there are. The Pythagorean identity was mentioned above, but the others require trigonometry. From the same triangle we used for the Pythagorean theorem, we find the following three relations:

tan theta = y/x,   x = r cos theta, and   y = r sin theta.

Now, if we apply these relations to our complex number z = x + yi, then we get an alternate description for z

z = x + iy
= r cos theta + i r sin theta
= r (cos theta + i sin theta)
= |z| (cos theta + i sin theta)

Note that the complex number cos theta + i sin theta has absolute value 1 since cos2theta + sin2theta equals 1 for any angle theta. Thus, every complex number z is the product of a real number |z| and a complex number cos theta + i sin theta.

We’re almost to the point where we can prove the last unproved statement of the previous section on multiplication, namely, that arg(zw) = arg(z) + arg(w). As above, we take arg(z) to be theta, and now let arg(w) be phi. Then,

z = |z| (cos theta + i sin theta)
and
w = |w| (cos phi + i sin phi)

We need to show that arg(zw) is theta + phi. In other words

zw = |zw| (cos (theta + phi) + i sin (theta + phi))

If we use the addition formulas for cosine and sine at one crucial point, we’ll have it. Recall from trigonometry these addition formulas:

cos (theta + phi) = cos theta  cos phi – sin theta sin phi

sin (theta + phi) = cos theta sin phi + sin theta cos phi.


Now we’re ready to show arguments add in the product zw.

zw = |z| (cos theta + i sin theta) |w| (cos phi + i sin phi)
= |zw| (cos theta + i sin theta) (cos phi + i sin phi)
= |zw| ((cos theta  cos phi – sin theta sin phi) + i(cos theta sin phi + sin theta cos phi))
= |zw| (cos (theta + phi) + i sin (theta + phi))

Thus, arg(zw) is theta + phi, as claimed.