Complex Numbers in Engineering Analysis
Complex numbers extend the real number line with an imaginary axis. A rectangular complex number is written as a + bi, where a is the real component, b is the imaginary component, and i is the square root of -1. This notation is not just an abstract algebra tool. It is the normal language of AC circuit analysis, control systems, signal processing, filters, vibration, RF impedance, and phasor diagrams because it keeps magnitude and phase together in one value.
Addition and subtraction are component-wise. If A = 3 + 4i and B = 1 - 2i, then A + B = 4 + 2i. Multiplication follows ordinary distribution while remembering that i squared equals -1. The product is (ar br - ai bi) + (ar bi + ai br)i. Division uses the conjugate of the denominator. Multiplying numerator and denominator by br - bi i removes the imaginary component from the denominator and produces a real denominator of br squared plus bi squared.
The polar view describes the same number with magnitude and angle. The magnitude is sqrt(a squared + b squared). The angle is atan2(b, a), which chooses the correct quadrant. Rectangular form is convenient for adding signals or impedances that share axes. Polar form is convenient for multiplication, division, gain, phase shift, and interpreting frequency response. Engineers move between the two forms constantly.
Manual Calculation Steps
For A = 3 + 4i, the magnitude is sqrt(3 squared + 4 squared) = 5. The angle is atan2(4, 3), or about 53.13 degrees. The conjugate is 3 - 4i. If B = 1 - 2i, then A x B = 3 x 1 - 4 x -2 plus (3 x -2 + 4 x 1)i, which is 11 - 2i. For division, the denominator magnitude squared is 1 squared + -2 squared = 5. A / B is ((3 x 1 + 4 x -2) / 5) + ((4 x 1 - 3 x -2) / 5)i, which is -1 + 2i.
AC Circuit Interpretation
In AC circuit analysis, complex numbers represent phasors. A sinusoidal voltage can be represented by magnitude and phase relative to a reference. Resistors have real impedance. Inductors have positive imaginary impedance, and capacitors have negative imaginary impedance. This lets Ohm's law keep the same shape, V = I Z, while impedance carries both amplitude scaling and phase shift. A low-pass filter, for example, can be analyzed as a frequency-dependent complex voltage divider.
Complex arithmetic is also central in Fourier analysis. A frequency-domain bin has real and imaginary components that encode how much of a cosine-like and sine-like basis function exists in the signal. The magnitude of that complex bin describes amplitude, while the angle describes phase. Digital filters, FFTs, modulation, impedance measurements, and vector network analyzers all depend on this interpretation.
Practical Cautions
Angle units matter. Software may return radians while a calculator or data sheet may use degrees. The atan2 function should be preferred over a plain arctangent because it handles signs and quadrants correctly. Division by zero is undefined for complex numbers just as it is for real numbers. Very small denominators can also amplify numerical error. When comparing complex values from measurements, consider both magnitude tolerance and phase tolerance rather than comparing only real and imaginary components.
Complex numbers give engineers a compact way to reason about systems that oscillate, rotate, delay, or shift phase. They are not optional decoration in electrical engineering; they are the natural coordinate system for frequency-domain behavior.
Sign conventions should be checked when moving between fields. Electrical engineering often uses j instead of i to avoid confusion with current, but the arithmetic is identical. Some texts use e raised to positive j omega t, while others use negative j omega t, which changes the sign convention for phase and reactance. Before comparing values from a simulator, oscilloscope, network analyzer, or hand calculation, confirm the reference direction, angle units, and whether the result is peak, peak-to-peak, or RMS. Many mistakes that look like bad complex math are actually convention mismatches.