Introduction to Complex Numbers
Understand imaginary and complex numbers β what they are, how the powers of i cycle, how to add, subtract, and multiply complex numbers, and why electrical engineers use them every day.
For centuries mathematicians refused to accept \(\sqrt{-1}\) β it seemed impossible, imaginary, absurd. Then electrical engineers discovered that AC circuits are almost impossible to analyze without it. Signal processing, control systems, quantum mechanics, fluid dynamics β all use complex numbers as their natural language. When a quadratic discriminant is negative, the roots are complex β and understanding them tells you that a system oscillates rather than converges, or that a filter has a resonant frequency. The word "imaginary" is misleading: complex numbers are as real and useful as any other mathematical tool.
- Define the imaginary unit \(i = \sqrt{-1}\) and the standard form \(a + bi\)
- Compute powers of \(i\) using the 4-cycle: \(i^1=i,\ i^2=-1,\ i^3=-i,\ i^4=1\)
- Add and subtract complex numbers by combining real and imaginary parts separately
- Multiply complex numbers using FOIL and replacing \(i^2 = -1\)
- Find the complex conjugate and understand why \((a+bi)(a-bi) = a^2 + b^2\)
The imaginary unit is defined as:
\[ i = \sqrt{-1} \qquad \Longrightarrow \qquad i^2 = -1 \]Higher powers of \(i\) form a 4-cycle. Since \(i^4 = (i^2)^2 = (-1)^2 = 1\), every fourth power resets to 1, and the pattern repeats:
The Powers-of-i Cycle
| Power | \(i^1\) | \(i^2\) | \(i^3\) | \(i^4\) | \(i^5\) | \(i^6\) | \(i^7\) | \(i^8\) |
|---|---|---|---|---|---|---|---|---|
| Value | \(i\) | \(-1\) | \(-i\) | \(1\) | \(i\) | \(-1\) | \(-i\) | \(1\) |
To find any power: divide the exponent by 4, use the remainder. \(i^{23}\): \(23 \div 4 = 5\) remainder 3, so \(i^{23} = i^3 = -i\).
Arithmetic with Complex Numbers
Addition and Subtraction: combine real parts and imaginary parts separately.
\[ (a + bi) + (c + di) = (a+c) + (b+d)i \] \[ (a + bi) - (c + di) = (a-c) + (b-d)i \]Multiplication: use FOIL, then replace every \(i^2\) with \(-1\).
\[ (a + bi)(c + di) = ac + adi + bci + bdi^2 = (ac - bd) + (ad + bc)i \]Complex Conjugate: the conjugate of \(a + bi\) is \(a - bi\). Their product is always real:
\[ (a + bi)(a - bi) = a^2 + b^2 \]Compute: \((3 + 5i) + (1 - 2i)\) and \((3 + 5i) - (1 - 2i)\)
Addition:
- Real parts: \(3 + 1 = 4\)
- Imaginary parts: \(5 + (-2) = 3\)
- Result: \(4 + 3i\)
Subtraction:
- Distribute the minus: \((3 + 5i) - 1 + 2i\)
- Real parts: \(3 - 1 = 2\)
- Imaginary parts: \(5 + 2 = 7\)
- Result: \(2 + 7i\)
Compute: \((2 + 3i)(4 - i)\)
- FOIL: \(2(4) + 2(-i) + 3i(4) + 3i(-i)\)
- Expand: \(8 - 2i + 12i - 3i^2\)
- Replace \(i^2 = -1\): \(8 - 2i + 12i - 3(-1)\)
- Simplify: \(8 + 3 + (-2 + 12)i = 11 + 10i\)
In AC circuit analysis, impedance is expressed as a complex number \(Z = R + jX\) where \(R\) is resistance (real part) and \(X\) is reactance (imaginary part). Engineers use \(j\) instead of \(i\) to avoid confusion with current.
Two components connected in series have impedances \(Z_1 = 3 + 4j\) ohms and \(Z_2 = 1 - 2j\) ohms. What is the total impedance?
- Series impedances add: \(Z_{total} = Z_1 + Z_2\)
- Real parts: \(3 + 1 = 4\) ohms (total resistance)
- Imaginary parts: \(4 + (-2) = 2\) ohms (total reactance)
- \(Z_{total} = 4 + 2j\) ohms
The magnitude of the impedance (relevant for power calculations) is \(|Z| = \sqrt{4^2 + 2^2} = \sqrt{20} = 2\sqrt{5} \approx 4.47 \ \Omega\). This is exactly the complex conjugate product rule: \(|Z|^2 = Z \cdot \bar{Z} = a^2 + b^2\).
Compute each:
- \(i^{30}\)
- \((1 + 2i)(3 + i)\)
- Multiply \((5 + 3i)\) by its conjugate.
βΆ Show Answers
- \(30 \div 4 = 7\) remainder 2, so \(i^{30} = i^2 =\) \(-1\).
- FOIL: \(3 + i + 6i + 2i^2 = 3 + 7i + 2(-1) = 1 + 7i\). Answer: \(1 + 7i\).
- Conjugate of \(5 + 3i\) is \(5 - 3i\). Product: \(5^2 + 3^2 = 25 + 9 =\) 34.
- Forgetting to replace \(i^2\) with \(-1\): When multiplying \((2+3i)(1+4i)\), the FOIL term \(3i \cdot 4i = 12i^2\) must become \(12(-1) = -12\), not \(+12\). This sign change is the most frequent multiplication error.
- Adding real and imaginary parts together: \(3 + 4i \neq 7\). The real part and imaginary part are separate components β they can only be combined if you're adding like parts. You can't simplify \(3 + 4i\) any further.
- Wrong power-of-i shortcut: To find \(i^{23}\), divide 23 by 4: remainder is 3, so \(i^{23} = i^3 = -i\). A common error is forgetting to use the remainder (not the quotient). The remainder 0 maps to \(i^4 = 1\), remainder 1 β \(i\), remainder 2 β \(-1\), remainder 3 β \(-i\).
- \(i = \sqrt{-1}\) and \(i^2 = -1\) β the defining property that makes all complex arithmetic work.
- Powers of i cycle with period 4: \(i, -1, -i, 1\) β use the remainder when dividing by 4.
- Add/subtract: combine real parts and imaginary parts separately, just like combining like terms.
- Multiply: FOIL, then replace every \(i^2\) with \(-1\).
- Complex conjugate \(a - bi\): its product with \(a + bi\) is always the real number \(a^2 + b^2\).
Electrical engineers work with complex numbers daily. AC voltage and current are represented as complex phasors: \(V = V_0 e^{j\omega t} = V_0(\cos\omega t + j\sin\omega t)\). Impedance combines resistance and reactance: \(Z = R + jX\) where a capacitor contributes \(-j/({\omega C})\) and an inductor contributes \(j\omega L\). Adding series impedances means adding complex numbers. Finding the resonant frequency means setting the imaginary part to zero and solving. The entire discipline of power systems, signal processing, and communications rests on fluent arithmetic with complex numbers.
Calculator Connection
The Complex Number Calculator performs all four arithmetic operations on complex numbers β addition, subtraction, multiplication, and division β showing each step and plotting both numbers on the complex plane. Enter any two complex numbers in \(a + bi\) form to see the result and an Argand diagram visualization.
Try it with the Calculator
Apply what you've learned with this tool.
Introduction to Complex Numbers - Quiz
5 questions per attempt Β· Intermediate Β· Pass at 70%
Start Quiz β