Finding zeros of polynomial given a complex zero

5.9k Views Asked by At

I am trying to find all the zeros of the following polynomial:

$P(x) = 2x^4-5x^3+21x^2+11x+91$

But I am already given one zero, that being $x=2-3i$.

Normally, this question would not be an issue, but the complex is throwing me right off, and I have no idea where to start. I am pretty sure all I need is a bump in the right direction and I would be able to solve the remaining problem.

4

There are 4 best solutions below

4
On BEST ANSWER

Complex roots always come in pairs, so $x=2+3i$ must also be a zero and hence the quadratic $x^2-4x+13$ is a factor. Factoring gives $P(x) = (x^2-4x+13)(2x^2+3x+7)$. One can find the roots of $2x^2+3x+7$ using the quadratic formula.

2
On

Hint. If a polynomial with real coefficients has a complex root then the complex conjugate is also a root. Then you have two roots and a quadratic real factor.

0
On

One idea you could use is that if a complex number is a root of a polynomial with real coefficients, then the complex conjugate is also a root to the polynomial. This means that 2+3i is another root to the polynomial. You can now attempt to factorize the polynomial.

0
On

You actually have two zeroes: $2 + 3i$ and $2 - 3i$ because complex zeros always come in a pair of complex conjugates. Which means, you now have:

$$[x - (2 - 3i)][x - (2 + 3i)]$$

Expand this you get

$$(x^2 -4x + 13)$$

Then use this as a divisor to your original polynomial.

Side note: By Descarte’s Rule of Signs, both $P(x)$ and $P(-x)$ have two sign changes. How many zeros do you think are there?