Understanding Complex Roots
A complex root is a solution to the equation wn = z, where z is your input complex number and n is the root degree. A fundamental property of complex numbers is that every number has exactly n distinct n-th roots—no more, no fewer.
- Every complex number has exactly 2 square roots
- Every complex number has exactly 3 cube roots
- Every complex number has exactly 4 fourth roots
- Every complex number has exactly
nroots of degreen
Geometrically, these n roots form the vertices of a regular polygon inscribed on a circle. The radius of this circle equals the n-th root of the original number's magnitude.
Formula for Finding Complex Roots
To extract all n-th roots of a complex number z = r(cos θ + i sin θ), use the De Moivre formula:
wk = n√r × (cos((θ + 2kπ) / n) + i sin((θ + 2kπ) / n))
where k = 0, 1, 2, ..., n − 1
r— Magnitude (or modulus) of the complex number, calculated as √(a² + b²)θ— Argument (or phase angle) of the complex number, found using arctan2(b, a)n— Degree of the root you wish to findk— Root index, ranging from 0 to n − 1 to generate all distinct roots
Converting Between Cartesian and Polar Forms
Complex numbers can be expressed in two equivalent ways:
Cartesian form: z = a + bi, where a is the real part and b is the imaginary part.
Polar form: z = r(cos θ + i sin θ) or z = reiθ, where r is the magnitude and θ is the phase angle.
To convert from Cartesian to polar:
r = √(a² + b²)θ = atan2(b, a)
To convert from polar back to Cartesian:
a = r cos θb = r sin θ
Roots of Unity
The roots of unity are a special case where you find the n-th roots of the number 1. These roots are evenly distributed around the unit circle, separated by angles of 2π / n radians.
The n-th roots of unity are given by:
e2πik / n = cos(2πk / n) + i sin(2πk / n)
where k = 0, 1, ..., n − 1.
Examples:
- Square roots of unity:
1and−1 - Cube roots of unity:
1,−0.5 + 0.866i, and−0.5 − 0.866i - Fourth roots of unity:
1,i,−1, and−i
Notably, 1 is always a root of unity for any degree n.
Common Pitfalls and Practical Tips
When working with complex roots, keep these practical considerations in mind to avoid calculation errors and misinterpretation.
- Phase Angle Wrapping — The phase angle θ can be expressed modulo 2π. Some calculators return angles in [0, 2π), whilst others use (−π, π]. Ensure consistency when manually computing roots, as different phase representations lead to the same physical root.
- All Roots Are Equally Valid — Avoid selecting only the principal root. All n distinct n-th roots are mathematically valid solutions. The complete set forms a regular polygon in the complex plane, and omitting any root means missing part of the solution.
- Precision and Rounding — Complex root calculations can amplify rounding errors, especially for higher degrees or large magnitudes. Increase decimal precision when working with critical engineering or physics applications to maintain accuracy downstream.
- Real and Negative Numbers — When finding roots of real negative numbers (like the cube root of −8), remember they have multiple complex roots in addition to any real root. For example, the three cube roots of −8 include −2 and two complex conjugate pairs.