[Math] Roots of complex polynomial

algebra-precalculuspolynomials

I have a complex polynomial $z^2 + 2z + 2$.

From trying out roots repeatedly I can see the correct roots are
$z = -1 + i$ and
$z = -1 – i$

But what is the standard method for getting roots of a complex polynomial like this?

Best Answer

  1. The quadratic formula works! You just need to interpret the square root as the complex square root. So the two roots are given by the two values of $$\frac{-2 +\sqrt{4-8}}{2} = -1 +\frac{\sqrt{-4}}{2} = -1+\sqrt{-1}.$$ Since $\sqrt{-1}$ takes two values, $i$ and $-i$, the two roots are $-1-i$ and $-1+i$.

  2. Complex roots to polynomials with real coefficients always come in "conjugate pairs"; that is, if $a+bi$ is a root, so is $a-bi$.

  3. The same "tricks" as for real numbers also work for complex numbers: if $r_1$ and $r_2$ are the roots of $az^2+bz+c$, then we will have $az^2+bz+c = a(z-r_1)(z-r_2)$. So you are looking for numbers $r_1$ and $r_2$ such that $r_1r_2 = \frac{c}{a}$ and $r_1+r_2 = -\frac{b}{a}$. Here, you are looking for two complex numbers whose product is $2$ and whose sum is $-2$. If you can find them "by inspection" (staring at the polynomr ealizing what the right answer is), then that's it.Since the polynomial has real coefficients, either you have two real roots which it is easy to verify don't exist), or they are two complex numbers of the form $a+bi$ and $a-bi$, with $a,b$ reals. So we need $(a+bi)+(a-bi) = -2$ and $(a+bi)(a-bi) = 2$. Or, $2a=-2$, $a^2+b^2 = 2$. Hence $a=-1$, $b^2=1$, giving the two solutions.