Skip to content
Oakfield Operator Calculus Function Reference Site

Complex Phase

For a complex number z=x+iy0z = x + iy \neq 0, the complex phase (argument) is the angle of zz in the complex plane. The principal value is commonly taken in (π,π](-\pi,\pi]:

Arg(z)=atan2(y,x)(π,π]\operatorname{Arg}(z) = \operatorname{atan2}(y,x) \in (-\pi,\pi]

For z=0z=0, neither Arg(z)\operatorname{Arg}(z) nor arg(z)\arg(z) is defined.


Away from the branch cut used to define the principal value, a complex number can be written as

z=zeiArg(z)z = |z|\,e^{i\operatorname{Arg}(z)}

Multiplication and Division (Modulo 2π2\pi)

Section titled “Multiplication and Division (Modulo 2π2\pi2π)”
Arg(z1z2)Arg(z1)+Arg(z2)(mod2π)\operatorname{Arg}(z_1 z_2) \equiv \operatorname{Arg}(z_1) + \operatorname{Arg}(z_2) \pmod{2\pi}
Arg ⁣(z1z2)Arg(z1)Arg(z2)(mod2π),z20\operatorname{Arg}\!\left(\frac{z_1}{z_2}\right) \equiv \operatorname{Arg}(z_1) - \operatorname{Arg}(z_2) \pmod{2\pi}, \qquad z_2 \ne 0

Any single-valued choice of argument (such as Arg\operatorname{Arg}) introduces a branch cut (commonly the negative real axis). Crossing the cut produces a jump of 2π2\pi in the principal value.

For the principal complex logarithm,

Log(z)=lnz+iArg(z)\operatorname{Log}(z) = \ln|z| + i\operatorname{Arg}(z)

zzArg(z)\operatorname{Arg}(z) (principal)
z>0z>0 real00
z<0z<0 realπ\pi
z=iy, y>0z=iy,\ y>0π2\tfrac{\pi}{2}
z=iy, y<0z=iy,\ y<0π2-\tfrac{\pi}{2}
z=0z=0undefined

Continuous phase tracking typically requires unwrapping, replacing principal values by a continuous representative.




  1. 📜 Complex Plane Representation

    The interpretation of complex numbers as points in the plane enabled a geometric notion of angle (argument), developed in late 18th–early 19th century work by Wessel and Argand and incorporated into the foundations of complex analysis.

  2. 🌍 Modern Perspective

    In modern computation, arg(z)\arg(z) is typically implemented via atan2 and treated together with branch cuts and unwrapping when continuity in time or space is required.


  • Ahlfors, Complex Analysis
  • Conway, Functions of One Complex Variable