Undergraduate → Complex Analysis → Complex Numbers ↓
Polar Form
Complex numbers are a basic building block in advanced mathematics, where they extend the one-dimensional real number line into the two-dimensional complex plane. A complex number is typically expressed in its rectangular form as follows:
z = a + bi
where a
is the real part, b
is the imaginary part, and i
is the imaginary unit with the property i² = -1
.
However, complex numbers can also be expressed in another form called the “polar form,” which can often be more convenient for various types of calculations and analysis.
Understanding polar form
The polar form represents a complex number using the magnitude (also called the modulus) and the angle (called the argument). Let's break down these components:
Magnitude
The magnitude of a complex number is its distance from the origin in the complex plane. For any complex number z = a + bi
, the magnitude r
is given by:
r = √(a² + b²)
Consider a visual representation of a complex number z = 3 + 4i
.
The point (3, 4i) on the plane shows the graphical representation of a complex number. To find the magnitude:
r = √(3² + 4²) = √(9 + 16) = √25 = 5
Argument
The argument of a complex number is the angle it makes with the positive x-axis. The argument θ
can be found using tan
function from trigonometry:
θ = arctan(b/a)
For any angle calculation, the result is usually given in radians, although it may also need to be converted to degrees depending on convention or preferences.
For our example, z = 3 + 4i
:
θ = arctan(4/3)
This angle can be visualized as the angle made by the red line (representing the number 3 + 4i
) with the real axis.
Polar form equations
Combining the magnitude and argument, the polar form of a complex number is given by:
z = r(cosθ + isinθ)
The polar form can also be expressed more concisely using Euler's formula, ( e^{iθ} = cosθ + i sinθ ):
z = re^{iθ}
Let's apply this to our example. We find that:
r = 5
And
θ = arctan(4/3)
Therefore, the polar form of 3 + 4i
becomes:
z = 5(cos(arctan(4/3)) + i sin(arctan(4/3)))
or equivalently,
z = 5e^{i arctan(4/3)}
Conversion between forms
Rectangular to polar
To convert from rectangular to polar form:
- Calculate the magnitude
r = √(a² + b²)
. - Calculate the argument
θ = arctan(b/a)
. - Express
z
in polar form asre^{iθ}
.
Polar to rectangular
To convert from polar to rectangular form:
- Given the polar form
z = re^{iθ}
, derivea
andb
from: - Express
z
in rectangular form asz = a + bi
.
a = r cosθ
b = r sinθ
For example, given z = 5e^{i arctan(4/3)}
, which is converted back to rectangular form:
a = 5cos(arctan(4/3)) = 3
b = 5sin(arctan(4/3)) = 4
Thus, z = 3 + 4i
as expected.
Applications of the polar form
The polar form is not just a mathematical curiosity; it has important applications in fields such as engineering, physics, and applied mathematics.
Complex multiplication and division
The biggest advantage of the polar form is that it is simple when it comes to multiplication and division of complex numbers.
Multiplication
If z₁ = r₁e^{iθ₁}
and z₂ = r₂e^{iθ₂}
, then the product is:
z₁z₂ = r₁r₂e^{i(θ₁ + θ₂)}
This clearly shows how magnitudes are multiplied and angles are added, making multiplication operations much simpler.
Division
Similarly, division is simple:
z₁/z₂ = (r₁/r₂)e^{i(θ₁ - θ₂)}
Again, division of magnitudes and subtraction of angles makes these operations simpler than the rectangular form.
Differential equations and applications in control theory
In these areas, the polar form provides insight into system stability and response characteristics by converting linear time-invariant systems into simpler counterparts.
Signal processing and communications
Polar coordinates help represent oscillations and waves, i.e., signals. This can be useful in transferring information over various mediums.
Conclusion
The polar form of complex numbers provides an invaluable tool for both theoretical and practical applications. Its ability to simplify multiplication and division and to relate complex exponential functions to geometric interpretations extends its utility across many disciplines, breaking down complex functions into more intuitive operations. Understanding and using the polar form can greatly enhance a person's ability to engage with complex numbers efficiently and effectively.