Phasor Representation
Pack a sinusoid's amplitude and phase into one complex number — and turn AC calculus into plain algebra.
Solving an AC circuit by hand looks like a wall of trig — until one clever step collapses every sinusoid into a single complex number.
From trigonometry to complex numbers
Euler's formula states that e^(jθ) = cos θ + j sin θ. A real cosine can therefore be recovered as the real part of a complex exponential: V_m cos(ωt + φ) = Re[V_m e^(j(ωt + φ))] = Re[V_m e^(jφ) · e^(jωt)]. The factor e^(jωt) carries the time dependence and is identical for every source and response in a linear circuit driven at one frequency. We factor it out and keep only the part that distinguishes one sinusoid from another — the complex number V_m e^(jφ). That number is the phasor.
Polar and rectangular forms
A phasor lives in the complex plane, so it has two equivalent notations. In polar form it is written V_m∠φ — magnitude V_m at angle φ. In rectangular form the same number is V_m cos φ + j V_m sin φ, by Euler's formula. Convert polar → rectangular with the cosine (real) and sine (imaginary) parts; convert rectangular → polar with magnitude √(a² + b²) and angle atan2(b, a).
Convention note: here the phasor magnitude is the amplitude (peak) V_m. Some texts use the RMS value V_m/√2 instead; this course uses amplitude-based phasors throughout, and RMS will be revisited in the AC Power module.
Calculus becomes algebra
Here is the real payoff. Differentiate the time signal v(t) = Re[V e^(jωt)]: dv/dt = Re[jω V e^(jωt)]. The derivative only pulls out a factor of jω — the phasor V becomes jωV. No trig identities, no chain rule beyond a constant multiplier. This is the reason phasors dominate AC analysis: an integro-differential equation written in the time domain becomes a plain algebraic equation in the phasor domain, where inductors have impedance jωL and capacitors 1/(jωC).
Adding sinusoids by adding phasors
Two sinusoids of the same frequency add to another sinusoid of that frequency. Rather than expand trig identities, add the phasors as complex numbers (easiest in rectangular form) and convert the result back to polar. Adding amplitudes directly is wrong — only the complex-number sum captures the combined magnitude and phase.
- Polar form is read directly: V = 100 ∠ 60° V.
- Rectangular form: V = 100 cos 60° + j · 100 sin 60°.
- cos 60° = 0.5 and sin 60° ≈ 0.866, so V = 100(0.5) + j 100(0.866).
- Therefore V = 50 + j86.6 V (polar: 100 ∠ 60° V).
- Phasors: V1 = 20 ∠ 0° = 20 + j0. V2 = 20 ∠ 90° = 0 + j20.
- Add in rectangular form: V = V1 + V2 = 20 + j20.
- Magnitude: |V| = √(20² + 20²) = √800 = 20√2.
- Angle: φ = atan2(20, 20) = 45°.
- Resultant phasor V = 20√2 ∠ 45°, so v(t) = 20√2 cos(ωt + 45°) V.
- Magnitude: |V| = √(8² + 6²) = √(64 + 36) = √100 = 10 V.
- The angle would be atan2(6, 8) ≈ 36.9°, giving polar form 10 ∠ 36.9° V.
Check your understanding
- A phasor packs a sinusoid's amplitude and phase into one complex number: V = Vm ∠ φ = Vm cos φ + j Vm sin φ.
- Euler's formula justifies the transform: Vm cos(ωt + φ) = Re[V e^(jωt)], and the shared e^(jωt) is dropped.
- Differentiation in time becomes multiplication by jω — converting differential equations into algebra.
- Same-frequency sinusoids are added by adding their phasors as complex numbers, then converting back to polar.