Case Study 1 — Phasors and the AC Power Grid
Field: Electrical engineering (alternating-current circuit analysis)
The problem an engineer faced
In 1893 the engineers building the world's first large alternating-current power systems hit a wall of arithmetic. Direct current is simple: a battery pushes a steady voltage, and Ohm's law $V=IR$ tells you the current. But alternating current oscillates — the voltage at a wall outlet rises and falls sinusoidally sixty times a second. Worse, the circuit elements that matter most for the grid — inductors (coils) and capacitors (plates) — respond not to voltage but to its rate of change. An inductor obeys $v=L\,di/dt$; a capacitor obeys $i=C\,dv/dt$. Every realistic circuit therefore became a tangle of differential equations full of $\sin(\omega t)$ and $\cos(\omega t)$ terms, and engineers were drowning in trigonometric identities just to add two voltages together.
Charles Proteus Steinmetz, working at General Electric, gave them a way out that is, at bottom, nothing but Euler's formula from Section 24.5. This case study walks through his idea — the phasor — and shows how the most beautiful equation in mathematics quietly runs every power grid on Earth.
The key idea: stop tracking time, track the rotating exponential
Recall from Section 24.3 that $e^{i\omega t}=\cos(\omega t)+i\sin(\omega t)$ traces the unit circle, completing one lap every $2\pi/\omega$ seconds. A real cosine signal is just the shadow of this rotation on the real axis:
$$v(t)=V\cos(\omega t+\phi)=\operatorname{Re}\!\left(V e^{i\phi}\,e^{i\omega t}\right).$$
The entire time-dependence sits in the spinning factor $e^{i\omega t}$, which is the same for every component in the circuit (they all oscillate at the grid frequency $\omega$). So Steinmetz's move was to factor it out and ignore it. What remains is the complex constant
$$\mathbf{V}=V e^{i\phi},$$
called the phasor. It stores the two pieces of information that actually distinguish one sinusoid from another: its amplitude $V$ and its phase $\phi$. A messy time-varying voltage collapses into a single point in the complex plane — a frozen snapshot of the rotation.
Why is this legal and useful? Because of the property the chapter highlighted: differentiating $e^{i\omega t}$ just multiplies by $i\omega$. That single fact is the whole payoff.
Watching calculus turn into algebra
Take the inductor law $v=L\,di/dt$. Write the current as a phasor riding the rotation, $i(t)=\operatorname{Re}(\mathbf{I}\,e^{i\omega t})$. Then
$$\frac{di}{dt}=\operatorname{Re}\!\left(\mathbf{I}\cdot i\omega\,e^{i\omega t}\right),$$
so the voltage phasor is $\mathbf{V}=L\cdot i\omega\,\mathbf{I}=(i\omega L)\,\mathbf{I}$. Compare that to Ohm's law $\mathbf{V}=Z\mathbf{I}$: the inductor behaves like a "resistance" of $Z_L=i\omega L$. The derivative has become multiplication by $i\omega$ — exactly the geometric fact from Section 24.3 that an imaginary exponent rotates rather than grows.
The capacitor works the same way. From $i=C\,dv/dt$ we get $\mathbf{I}=i\omega C\,\mathbf{V}$, so $\mathbf{V}=\dfrac{1}{i\omega C}\,\mathbf{I}$ and its impedance is $Z_C=\dfrac{1}{i\omega C}=-\dfrac{i}{\omega C}$. The general name for these complex Ohm's-law constants is impedance, $Z$. With impedances in hand, the differential equations of an AC circuit become ordinary linear algebra over the complex numbers: impedances in series add, impedances in parallel combine by reciprocals, and Kirchhoff's laws apply unchanged. Calculus has been compiled down to arithmetic.
The factors of $i=e^{i\pi/2}$ even explain the lab folklore. Multiplying a phasor by $i$ rotates it a quarter turn counterclockwise (Section 24.3's "Check Your Understanding"). So the inductor's $Z_L=i\omega L$ advances the voltage a quarter cycle ahead of the current — "voltage leads in an inductor" — while the capacitor's $-i/(\omega C)$ pushes it a quarter cycle behind — "voltage lags in a capacitor." The mnemonic generations of students memorize ("ELI the ICE man") is just Euler's formula reporting where $i$ sits on the unit circle.
A worked example: adding two sources
Suppose two generators feed the same line: $v_1(t)=10\cos(\omega t+\pi/6)$ and $v_2(t)=10\cos(\omega t-\pi/6)$, both at the same frequency. Adding them the old way means grinding through angle-addition identities. The phasor way is to add two complex numbers.
Their phasors are $\mathbf{V}_1=10e^{i\pi/6}$ and $\mathbf{V}_2=10e^{-i\pi/6}$. Using $e^{i\pi/6}=\cos 30°+i\sin 30°$ with $\cos 30°=\tfrac{\sqrt3}{2}\approx0.8660$ and $\sin 30°=\tfrac12$:
$$\mathbf{V}_1=10(0.8660+0.5i)=8.660+5i,\qquad \mathbf{V}_2=10(0.8660-0.5i)=8.660-5i.$$
The imaginary parts cancel and the real parts add:
$$\mathbf{V}_1+\mathbf{V}_2=17.32+0i=17.32\,e^{i\cdot 0}.$$
So the combined source is $v(t)=17.32\cos(\omega t)$ — amplitude $17.32$ volts, phase $0$. Adding two sinusoids became adding two vectors in the complex plane; the symmetric phases $\pm\pi/6$ cancelled, leaving a pure cosine. Try reproducing that with trig identities and you will appreciate Steinmetz.
We can sanity-check the amplitude with the cosine sum-to-product rule, $10\cos(\omega t+\tfrac\pi6)+10\cos(\omega t-\tfrac\pi6)=20\cos(\tfrac\pi6)\cos(\omega t)=20(0.8660)\cos(\omega t)=17.32\cos(\omega t)$. Same answer — but the phasor route needed no special identity, only complex addition.
# Add two AC sources via phasors. Hand result: 17.32 V, phase 0.
import numpy as np
V1 = 10 * np.exp(1j * np.pi/6) # 8.660 + 5.000j
V2 = 10 * np.exp(-1j * np.pi/6) # 8.660 - 5.000j
Vsum = V1 + V2
print(f"sum = {Vsum.real:.3f} + {Vsum.imag:.3f}j") # 17.321 + 0.000j
print(f"amp = {abs(Vsum):.3f} V") # 17.321
print(f"phase= {np.angle(Vsum):.3f} rad") # 0.000
Why it matters
Every power grid, every audio amplifier, every radio front-end, and every electric motor is designed with phasors and impedance. When an engineer says a circuit is "inductive" or computes the "power factor" that utilities bill industrial customers for, they are reasoning about the angle of a complex impedance — the argument of $Z=|Z|e^{i\theta}$. Power-factor correction, the multi-billion-dollar business of adding capacitors to factories so their current draws less reactive penalty, is literally the act of rotating a phasor back toward the real axis. The frequency-domain methods of Section 24.7's Fourier preview are the next layer up: a non-sinusoidal waveform (a motor's distorted current, say) is broken into harmonics, each handled by its own phasor.
The lesson echoes the chapter's thesis. Euler's formula is not a museum piece; it is an engineering primitive. A 27-year-old's series manipulation became the day-to-day language of an entire profession, executed in every SPICE simulation and every grid-stability calculation on the planet.
Discussion questions
- The derivative $d/dt$ became multiplication by $i\omega$. Explain, using Section 24.3's unit-circle picture, why an imaginary multiplier (rotation) is the right way to encode differentiation of an oscillation.
- Show that a resistor's impedance is the real number $Z_R=R$ (no $i$). Why does that match the physical fact that voltage and current in a resistor are in phase?
- Compute the impedance of an inductor and capacitor in series, $Z=i\omega L-\dfrac{i}{\omega C}$. At what frequency $\omega$ does $Z=0$? (This is resonance — the basis of radio tuning.)
- Power-factor correction rotates the current phasor toward the voltage phasor. Phrase this as a statement about the argument of a complex number, and connect it to "arguments add" from Section 24.5.
A short annotated reading
- Steinmetz, Theory and Calculation of Alternating Current Phenomena (1897). The original engineering text that introduced complex-number ("symbolic") methods to AC analysis. Dense but historic; skim the introduction to see Euler's formula entering engineering.
- Stewart, Calculus: Early Transcendentals, Appendix H (Complex Numbers). A clean calculus-level treatment of polar form, de Moivre's theorem, and complex exponentials — exactly the algebra this case study uses.
- Hayt, Kemmerly & Durbin, Engineering Circuit Analysis, chapters on sinusoidal steady state and phasors. The standard undergraduate development of impedance; read it to see how far the single idea "differentiation $=$ multiply by $i\omega$" is pushed.