Complex Root Calculator
Solve complex root problems step-by-step with our free calculator. See formulas, worked examples, and clear explanations.
Formula
w_k = r^(1/n) * e^(i*(theta + 2*pi*k)/n), k = 0, 1, ..., n-1
The n nth roots of z = r*e^(i*theta) are found by taking the nth root of the modulus and dividing the argument by n, plus adding multiples of 2*pi/n for each successive root. All roots share the same modulus r^(1/n) and are evenly spaced at angles 360/n degrees apart in the complex plane.
Worked Examples
Example 1: Cube Roots of 8
Problem: Find all three cube roots of 8.
Solution: z = 8 = 8*e^(i*0), so r = 8, theta = 0\nRoot modulus: 8^(1/3) = 2\nk=0: 2*e^(i*0) = 2\nk=1: 2*e^(i*2pi/3) = 2*(-1/2 + sqrt(3)/2*i) = -1 + 1.732i\nk=2: 2*e^(i*4pi/3) = 2*(-1/2 - sqrt(3)/2*i) = -1 - 1.732i
Result: Three roots: 2, -1 + 1.732i, -1 - 1.732i
Example 2: Fourth Roots of -16
Problem: Find all four fourth roots of -16.
Solution: z = -16 = 16*e^(i*pi), so r = 16, theta = pi\nRoot modulus: 16^(1/4) = 2\nk=0: 2*e^(i*pi/4) = sqrt(2) + sqrt(2)i = 1.414 + 1.414i\nk=1: 2*e^(i*3pi/4) = -1.414 + 1.414i\nk=2: 2*e^(i*5pi/4) = -1.414 - 1.414i\nk=3: 2*e^(i*7pi/4) = 1.414 - 1.414i
Result: Four roots forming a square at 45, 135, 225, 315 degrees
Frequently Asked Questions
What are the complex roots (nth roots) of a number?
The nth roots of a complex number z are all complex numbers w such that w^n = z. By the Fundamental Theorem of Algebra, every nonzero complex number has exactly n distinct nth roots. These roots all have the same modulus (distance from origin) equal to |z|^(1/n) and are equally spaced around a circle in the complex plane. The angular spacing between consecutive roots is 360/n degrees (or 2*pi/n radians). For example, the cube roots of 8 are 2, -1 + sqrt(3)i, and -1 - sqrt(3)i, which are evenly distributed on a circle of radius 2 at 120-degree intervals.
How do you find the square roots of a complex number?
For the square roots of z = a + bi, the polar method gives w = sqrt(|z|) * e^(i*arg(z)/2) and w = sqrt(|z|) * e^(i*(arg(z)/2 + pi)). Alternatively, using the algebraic method, let w = x + yi where w^2 = a + bi. This gives x^2 - y^2 = a and 2xy = b. From these, x^2 = (a + sqrt(a^2+b^2))/2 and y = b/(2x). Both methods produce the same two roots, which are always negatives of each other (w and -w). For example, the square roots of 3 + 4i are 2 + i and -2 - i. The algebraic method is sometimes preferred for exact answers when the modulus has a nice square root.
What is the geometric pattern formed by complex roots in the complex plane?
The n nth roots of any complex number form a regular n-gon (regular polygon with n sides) inscribed in a circle centered at the origin. The radius of this circle equals |z|^(1/n), where |z| is the modulus of the original number. The vertices are equally spaced at angles of 360/n degrees apart. The first root has angle arg(z)/n, and each subsequent root is rotated by 360/n degrees from the previous one. For the cube roots, you get an equilateral triangle. For fourth roots, a square. For fifth roots, a regular pentagon. This beautiful geometric regularity reflects the algebraic symmetry of the root-finding process and the cyclic nature of complex multiplication.
How are complex roots related to factoring polynomials?
Every polynomial p(x) of degree n can be factored completely over the complex numbers as p(x) = a_n * (x - r_1)(x - r_2)...(x - r_n), where r_1 through r_n are its complex roots. The equation x^n - z = 0 factors as (x - w_0)(x - w_1)...(x - w_{n-1}) where w_k are the nth roots of z. For polynomials with real coefficients, complex roots come in conjugate pairs, so the factorization over the reals involves quadratic factors for each conjugate pair. Understanding complex roots thus provides complete factorization of any polynomial and connects abstract algebra to concrete computational methods.
How are complex roots used in differential equations and engineering?
Complex roots appear as characteristic roots of linear differential equations and determine the form of the general solution. When the characteristic polynomial has complex roots a + bi, the corresponding solution terms involve e^(ax)*cos(bx) and e^(ax)*sin(bx), producing oscillatory behavior. In control engineering, the locations of complex roots (poles) in the complex plane determine system stability and transient response characteristics. Roots in the left half-plane indicate stable systems, while roots in the right half-plane indicate instability. In signal processing, the complex roots of filter polynomials determine frequency response characteristics, resonance peaks, and bandwidth properties.
Can you find complex roots of negative real numbers, and what are they?
Yes, negative real numbers have well-defined complex nth roots. A negative real number like -8 can be written in polar form as 8*e^(i*pi). Its cube roots are 8^(1/3) * e^(i*(pi + 2*pi*k)/3) for k = 0, 1, 2, giving 2*e^(i*pi/3) = 1 + sqrt(3)i, 2*e^(i*pi) = -2 (the real cube root), and 2*e^(i*5*pi/3) = 1 - sqrt(3)i. Note that -2 is just one of three cube roots. For even roots of negative numbers (like the square root of -1), there is no real root, but there are two complex roots (i and -i for sqrt(-1)). This demonstrates that restricting to real numbers misses most of the root structure that complex analysis reveals.