Click here to purchase the entire book in PDF format.



next up previous contents index
Next: Dividing complex numbers Up: Complex Math Part 4 Previous: Additive Inverse   Contents   Index

Multiplicative Inverse

Similarly to additive inverses, every number has a matching number, which, when the two are multiplied, equals 1. The only exception to this is the number 0, so, if $x$ does not equal 0, then the multiplicative inverse of $x$ is $\frac{1}{x}$ because $x * \frac{1}{x} = * \frac{x}{x} = 1$. Some books write this as $x * x^{-1} = 1$ because $x^{-1} = \frac{1}{x}$. In the case of complex math, things are unfortunately a little different because 1 divided by a complex number is... well... complex.

if (a + jb) is not equal to 0 then:


\begin{displaymath}
\frac{1}{a + jb} = \frac{a - jb}{a^{2} + b^{2}}
\end{displaymath} (2.42)

We won't worry too much about how that's calculated, but we can establish that it's true by doing the following:


$\displaystyle (a + jb) * \frac{a - jb}{a^{2} + b^{2}}$ $\textstyle =$ $\displaystyle \frac{(a + jb)(a - jb)}{a^{2} + b^{2}}$ (2.43)
  $\textstyle =$ $\displaystyle \frac{a^{2} + b^{2}}{a^{2} + b^{2}}$ (2.44)
  $\textstyle =$ $\displaystyle 1$ (2.45)

There's one interesting thing that results from this rule. What if we looked for the multiplicative inverse of $j$? In other words, what is $\frac{1}{j}$? Well, let's use the rule above and plug in $(0 + 1j)$.


\begin{displaymath}
\frac{1}{a + jb} = \frac{a - jb}{a^{2} + b^{2}}
\end{displaymath} (2.46)


\begin{displaymath}
\frac{1}{0 + j1} = \frac{0 - j1}{0^{2} + 1^{2}}
\end{displaymath} (2.47)


\begin{displaymath}
\frac{1}{j} = \frac{-1j}{1}
\end{displaymath} (2.48)


\begin{displaymath}
\frac{1}{j} = -j
\end{displaymath} (2.49)

Weird, but true.


next up previous contents index
Next: Dividing complex numbers Up: Complex Math Part 4 Previous: Additive Inverse   Contents   Index
Geoff Martin 2006-10-15

Click here to purchase the entire book in PDF format.