Finding the roots of $x^3 - (1-i)x^2 + x + (-1+i)$

141 Views Asked by At

Knowing that $x_1 = 1-i$ is one of the roots of $P(x) = x^3 - (1-i)x^2 + x + (-1+i)$, find all the roots of P(x).

I only ever solved such problems for polynomials with real coefficients - then I could apply the complex conjugate root theorem and I also could do long division after finding successive roots to simplify the main polynomial. I don't know how to approach this problem.

Can I do long division of $P(x)$ by $(x-(1-i))$ somehow?

I'm looking more for universal solutions for approaching this kind of problems rather than tricks like factoring the polynomial because it may not work for similar polynomials.

The answer is: $x_1 = 1-i$, $x_2 = i$, $x_3 = -i$.

3

There are 3 best solutions below

2
On BEST ANSWER

Can I do long division of $P(x)$ by $(x-(1-i))$ somehow?

Yes! The same way you do long division of polynomial with real coefficients: Horner's algorithm. It gives you

$$P(x)=(x-(1-i))(x^2+1)$$ which you can also get through a sharp eye as seen by @mathlove.

0
On

We have $$\color{red}{x^3-(1-i)x^2}+x+(-1+i)=\color{red}{x^2(x-1+i)}+(x-1+i)=(x-1+i)(x^2+1)$$

0
On

$$x^3-(1-i)x^2-1+i=x^3-x^2+x-1+(x^2+1)i=$$ $$=x^2(x-1)+(x-1)+(x^2+1)i=(x^2+1)(x-1)+(x^2+1)i=(x^2+1)(x-1+i).$$