Puneet Varma (Editor)

Argument (complex analysis)

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit
Argument (complex analysis)

In mathematics, arg is a function operating on complex numbers (visualized in a complex plane). It gives the angle between the positive real axis to the line joining the point to the origin, shown as φ in figure 1, known as an argument of the point.

Contents

Definition

An argument of the complex number z = x + iy, denoted arg(z), is defined in two equivalent ways:

  1. Geometrically, in the complex plane, as the angle φ from the positive real axis to the vector representing z. The numeric value is given by the angle in radians and is positive if measured counterclockwise.
  2. Algebraically, as any real quantity φ such that
for some positive real r (see Euler's formula). The quantity r is the modulus of z, denoted |z|: r = x 2 + y 2 .

The names magnitude for the modulus and phase (or amplitude) for the argument are sometimes used equivalently.

Under both definitions, it can be seen that the argument of any (non-zero) complex number has many possible values: firstly, as a geometrical angle, it is clear that whole circle rotations do not change the point, so angles differing by an integer multiple of radians (a complete circle) are the same. Similarly, from the periodicity of sin and cos, the second definition also has this property.

Principal value

Because a complete rotation around the origin leaves a complex number unchanged, there are many choices which could be made for φ by circling the origin any number of times. This is shown in figure 3, a representation of the multi-valued (set-valued) function, where a vertical line cuts the surface at heights representing all the possible choices of angle for that point.

When a well-defined function is required then the usual choice, known as the principal value, is the value in the open-closed interval (−π rad, π rad], that is from −π to π radians, excluding −π rad itself (equivalently from −180 to +180 degrees, excluding −180° itself). This represents an angle of up to half a complete circle from the positive real axis in either direction.

Some authors define the range of the principal value as being in the closed-open interval [0, 2π).

Notation

The principal value sometimes has the initial letter capitalized as in Arg z, especially when a general version of the argument is also being considered. Note that notation varies, so arg and Arg may be interchanged in different texts.

The set of all possible values of the argument can be written in terms of Arg as:

arg ( z ) = { Arg ( z ) + 2 π n | n Z } .

Likewise

Arg ( z ) = { arg ( z ) 2 π n | n Z   π < Arg ( z ) π } .

Covering space

In informal situations, arg may be left not well-defined, for instance arg z(t) where z depends on a parameter t may change by every time z goes around the origin. This idea can be made more precise by considering z(t) as being defined not on the complex plane but on a covering space. Polar coordinates excluding the origin and with an unconstrained angle provide such a space, in this case arg is defined by

arg : R + { 0 } × R R ( r , φ ) φ .

The covering space is equivalent to the punctured complex plane:

C { 0 }

and has as base space the product of a positive non-zero radius and an angle on the unit circle:

R + { 0 } × S 1 .

The principal value Arg then maps the covering space of this representation to the interval (−π, π]:

Arg : R + { 0 } × R ( π , π ] ( r , φ ) φ .

Computation

The principal value Arg of a complex number given as x + iy is normally available in math libraries of many programming languages using the function atan2 or some language-specific variant. The value of atan2(y, x) is the principal value in the range (−π, π].

Many texts say the value is given by arctan(y/x), as y/x is slope, and arctan converts slope to angle. This is correct only when x > 0, so the quotient is defined and the angle lies between π/2 and π/2, but extending this definition to cases where x is not positive is relatively involved. Specifically, one may define the principal value of the argument separately on the two half-planes x > 0 and x < 0 (separated into two quadrants if one wishes a branch cut on the negative x-axis), y > 0, y < 0, and then patch together.

Arg ( x + i y ) = atan2 ( y , x ) = { arctan ( y x ) if  x > 0 , arctan ( y x ) + π if  x < 0  and  y 0 , arctan ( y x ) π if  x < 0  and  y < 0 , + π 2 if  x = 0  and  y > 0 , π 2 if  x = 0  and  y < 0 , undefined if  x = 0  and  y = 0.

A compact expression with 4 overlapping half-planes is

Arg ( x + i y ) = atan2 ( y , x ) = { arctan ( y x ) if  x > 0 , π 2 arctan ( x y ) if  y > 0 , π 2 arctan ( x y ) if  y < 0 , arctan ( y x ) ± π if  x < 0 , undefined if  x = 0  and  y = 0.

For the variant where Arg is defined to lie in the interval [0, 2π), the value can be found by adding to the value above when it is negative.

Alternatively, the principal value can be calculated in a uniform way using the tangent half-angle formula, the function being defined over the complex plane but excluding the origin:

Arg ( x + i y ) = { 2 arctan ( y x 2 + y 2 + x ) if  x > 0  or  y 0 , π if  x < 0  and  y = 0 , undefined if  x = 0  and  y = 0.

This is based on a parametrization of the circle (except for the negative x-axis) by rational functions. This version of Arg is not stable enough for floating point computational use (it may overflow near the region x < 0, y = 0) but can be used in symbolic calculation.

A variant of the last formula which avoids overflow is sometimes used in high precision computation:

Arg ( x + i y ) = { 2 arctan ( x 2 + y 2 x y ) if  y 0 , 0 if  x > 0  and  y = 0 , π if  x < 0  and  y = 0 , undefined if  x = 0  and  y = 0.

Identities

One of the main motivations for defining the principal value Arg is to be able to write complex numbers in modulus-argument form. Hence for any complex number z,

z = | z | e i Arg z .

This is only really valid if z is non-zero but can be considered as valid also for z = 0 if Arg(0) is considered as being an indeterminate form rather than as being undefined.

Some further identities follow. If z1 and z2 are two non-zero complex numbers, then

Arg ( z 1 z 2 ) Arg ( z 1 ) + Arg ( z 2 ) ( mod ( π , π ] ) , Arg ( z 1 z 2 ) Arg ( z 1 ) Arg ( z 2 ) ( mod ( π , π ] ) .

If z ≠ 0 and n is any integer, then

Arg ( z n ) n Arg ( z ) ( mod ( π , π ] ) .

Example

Arg ( 1 i i ) = Arg ( 1 i ) Arg ( i ) = 3 π 4 π 2 = 5 π 4 = 3 π 4 ( mod ( π , π ] ) .

References

Argument (complex analysis) Wikipedia