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 n roots of degree n

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 find
  • k — 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 = re, 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: 1 and −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.

  1. 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.
  2. 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.
  3. 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.
  4. 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.

Frequently Asked Questions

How many distinct n-th roots does any complex number have?

Every non-zero complex number has exactly n distinct n-th roots. This is a fundamental theorem in complex analysis. For instance, every complex number has exactly 3 cube roots, forming an equilateral triangle in the complex plane. A real number like 8 also has three cube roots: one real root (2) and two complex conjugate roots. The calculator displays all of them simultaneously.

What is the difference between polar and Cartesian form?

Cartesian form (a + bi) expresses a complex number by its horizontal and vertical components on the complex plane. Polar form (r∠θ or r e^(iθ)) describes the same number by its distance from the origin and its angle. Polar form is particularly useful for roots because the formulas become simpler. You can input either form and request output in the other, making conversions instant.

Why are complex roots arranged in a regular polygon?

The geometric arrangement follows from De Moivre's formula. Each successive root is rotated by an angle of 2π/n from the previous one. Since all roots have the same magnitude (the n-th root of the original magnitude), they all lie on a circle of constant radius. The equal angular spacing creates a regular n-sided polygon, a beautiful symmetry inherent to complex arithmetic.

What are roots of unity and why are they important?

Roots of unity are the solutions to w^n = 1. They lie perfectly on the unit circle and include 1 as one of their roots. They appear frequently in signal processing, Fourier analysis, and number theory. For example, the fourth roots of unity (1, i, −1, −i) form the basis of many algorithms. Understanding them helps intuition about the general structure of complex roots.

Can I find roots of negative real numbers?

Yes. A negative real number like −8 is a complex number with argument π. Its cube roots include one real root (−2) and two complex conjugate roots. The calculator handles this transparently—it converts the negative real to polar form, applies the De Moivre formula, and returns all three roots in your chosen format.

How does increasing decimal precision affect the results?

Increasing precision (decimal places) doesn't change the mathematical value of the roots—it only changes how many digits are displayed. This is crucial for engineering applications where small rounding errors accumulate. If you're using these roots in further calculations, higher precision upstream reduces cumulative error downstream.

More math calculators (see all)