2026-05-02
Every passive component you wire up behaves differently when you feed it AC instead of DC. Resistors stay simple, but capacitors and inductors introduce phase shifts between voltage and current. Phasors are the tool that lets you handle this without solving differential equations every time.
A phasor represents a sinusoidal signal as a complex number: magnitude and phase angle. Instead of writing v(t) = 10·sin(2π·1000t + 30°), you write V = 10∠30°. This only works at a single frequency, but that's exactly the situation you face when analyzing filter response, amplifier gain at a test frequency, or power delivery at 50/60 Hz mains.
Impedance extends Ohm's law to AC. Each component gets a complex impedance Z, measured in ohms:
Here ω = 2πf and j = √(−1). Once you have impedances, you combine them in series and parallel using the same rules as resistors, then apply V = I·Z just like Ohm's law.
Concrete example: You need to find the signal attenuation of a series RC network at 10 kHz, with R = 1 kΩ and C = 10 nF. First, compute the capacitor's impedance:
ZC = 1/(j·2π·10000·10×10−9) = 1/(j·6.28×10−4) ≈ −j1592 Ω
The voltage divider ratio is ZC/(R + ZC). The magnitude is:
|Vout/Vin| = 1592 / √(1000² + 1592²) = 1592 / 1880 ≈ 0.847 (−1.4 dB)
At this frequency you lose about 15% of your signal amplitude. Repeat the calculation at the corner frequency fc = 1/(2πRC) ≈ 15.9 kHz and you'll get the familiar −3 dB point.
Rule of thumb: A capacitor's impedance equals a resistor's value at f = 1/(2πRC). Below that frequency the cap looks like an open circuit; above it, a short. Memorize this — it's the foundation of every filter, coupling network, and bypass cap decision you'll make.
The real power of phasor analysis is that it turns calculus into algebra. You can analyze multi-stage filters, find resonant frequencies in RLC networks, and compute power factor in AC mains circuits — all by manipulating complex numbers. Any calculator or Python script with complex math support makes this straightforward. When you see a circuit's frequency response plotted on a Bode plot, it was computed exactly this way: sweep ω, compute the transfer function H(jω), and plot magnitude and phase.
