A phasor is a complex number that represents the amplitude and phase of a sinusoid. The trick: replace each sinusoidal voltage or current with the complex number . The time dependence drops out, and circuit analysis becomes algebra in .
Image: Phasor diagram with the resulting time-domain waveform, CC BY-SA 4.0
(Electrical engineering uses instead of for the imaginary unit, since is reserved for current.)
Notation
Three equivalent forms for a phasor :
- Rectangular: .
- Polar: (read ” at angle ”).
- Exponential: .
With the correspondences:
The argument formula must be , not . The plain returns values only in , so it can’t distinguish second-quadrant phasors from fourth-quadrant ones (or third from first). The two-argument inspects the signs of and separately and returns the correct angle in regardless of quadrant. Forgetting this is the most common bug when computing phasor arguments by hand from rectangular form.
The exponential form follows from Euler’s formula . See Polar representation of complex numbers.
Time-domain ↔ phasor
The map between sinusoid and phasor:
Note the convention: cosine is the reference. A sine becomes a cosine via , so the phasor of a sine has its phase shifted by .
To recover the time-domain signal:
The phasor encodes amplitude and phase; multiplying by adds the time dependence; taking the real part recovers the actual voltage.
Why phasors work
Linear circuit equations involve derivatives of and . For sinusoids:
Differentiation does two things at once: shift the phase by and scale the amplitude by . In phasor form, both are captured by a single multiplication: differentiation is multiplication by . The factor of adds the phase shift; the factor of scales the magnitude. Don’t drop either — at high frequency the magnitude scaling dominates.
Similarly, integration is division by , which simultaneously shifts the phase by and divides the magnitude by .
So derivatives and integrals — the hard part of circuit analysis — become algebraic operations on complex numbers. Differential equations in time become algebraic equations in .
This only works for steady-state sinusoidal signals. Transients (right after a switch closes, before steady state is reached) need time-domain analysis or Laplace transform.
Phasor arithmetic
Add phasors when summing voltages or currents at a node:
Multiply phasors when computing products (e.g., , with impedance as a complex number):
Use rectangular form for sums; polar/exponential form for products. Convert between as needed.
Example
A voltage has phasor .
A current . Convert to cosine reference: . Phasor: .
These can now be combined algebraically — circuit equations in the frequency domain.
In context
Phasor analysis is the foundation of AC electric circuits analysis. It assumes sinusoidal steady state — the system has reached equilibrium with the sinusoidal source. For transient analysis, use Laplace transform (which generalizes phasors by including decay rates).
For how circuit elements (R, L, C) are represented as phasors, see Phasor relationships for circuit elements.