You are here

Calculating with Complex Numbers

4 June, 2015 - 15:55

Adding and subtracting complex numbers expressed in Cartesian form is quite easy: You add (subtract) the real parts and imaginary parts separately.

\left ( z_{1}\pm z_{2} \right )=(a_{1}\pm a_{2})+j(b_{1}\pm b_{2})

To multiply two complex numbers in Cartesian form is not quite as easy, but follows directly from following the usual rules of arithmetic.

\begin{align*} z_{1}z_{2}&=(a_{1}+jb_{1})(a_{1}+jb_{2})\\ &=a_{1}a_{2}-b_{1}b_{2}+j(a_{1}b_{2}+a_{2}b_{1}) \end{align*}

Note that we are, in a sense, multiplying two vectors to obtain another vector. Complex arithmetic provides a unique way of defining vector multiplication.

Exercise 2.1.3  

What is the product of a complex number and its conjugate?
Division requires mathematical manipulation. We convert the division problem into a multiplication problem by multiplying both the numerator and denominator by the conjugate of the denominator.

\begin{align*} \frac{z_1}{z_2}&=\frac{a_1+jb_1}{a_2+jb_2}\\ &=\frac{a_1+jb_1}{a_2+jb_2}\frac{a_2-jb_2}{a_2-jb_2}\\ &=\frac{\left ( a_{1}+jb_{1} \right )\left ( a_{2}-jb_{2} \right )}{a{_{2}}^{2}+b{_{2}}^{2}}\\ &=\frac{a_{1}a_{2}+b_{1}b_{1}+j\left ( a_{2}b_{1}-a_{1}b_{2} \right )}{a{_{2}}^{2}+b{_{2}}^{2}} \end{align*}

Because the final result is so complicated, it's best to remember how to perform division multiplying numerator and denominator by the complex conjugate of the denominator than trying to remember the final result.

The properties of the exponential make calculating the product and ratio of two complex numbers much simpler when the numbers are expressed in polar form.

\begin{align*} z_1z_2&=r_1e^{j\theta_{1}}r_2e^{j\theta _{2}}\\ &=r_1r_2e^{j(\theta_1+\theta_2)}\\ \end{align*}

\frac{z_1}{z_2}=\frac{r_1e^{j\theta_{1}}}{r_2e^{j\theta_{2}}}=\frac{r_1}{r_2}e^{j(\theta_1-\theta_2)}

To multiply, the radius equals the product of the radii and the angle the sum of the angles. To divide, the radius equals the ratio of the radii and the angle the difference of the angles. When the original complex numbers are in Cartesian form, it's usually worth translating into polar form, then performing the multiplication or division (especially in the case of the latter). Addition and subtraction of polar forms amounts to converting to Cartesian form, performing the arithmetic operation, and converting back to polar form.

Example 2.1

When we solve circuit problems, the crucial quantity, known as a transfer function, will always be expressed as the ratio of polynomials in the variable s = j2πf. What we'll need to understand the circuit's effect is the transfer function in polar form. For instance, suppose the transfer function equals
\frac{s+2}{s^2+s+1}
s=j2\pi f
Performing the required division is most easily accomplished by first expressing the numerator and denominator each in polar form, then calculating the ratio. Thus,
\begin{align*} \frac{s+2}{s^2+s+1}&=\frac{j2\pi f+2}{-4\pi^2f^2+j2\pi f+1}\\ &=\frac{\sqrt{4+4\pi^2f^2}e^{jarctan(\pi f)}}{\sqrt{(1-4\pi^2f^2)^2+4\pi^2f^2e^{jarctan(\frac{2\pi f}{1-4\pi^2f^2})}}}\\ &=\sqrt{\frac{4+4\pi^2f^2}{1-4\pi^2 f^2 +16\pi^4f^4}}e^{j(arctan(\pi f)-arctan(\frac{2\pi f}{1-4\pi^2f^2}))}\\ \end{align*}