✔ 最佳答案
For the first one, you first factor out x-1, making your equation:
(x-1)(x^2+1) = 0.
Because you can't easily factor x^2 + 1, just leave it as is.
Now solve for x-1 = 0 and x^2+1 = 0
So, x-1 =0
x = 1, and
x^2+1 = 0
x^2 = -1
x = sqrt(-1) = i
So x = 1, i
For the second one,
x^3-x+3-3x^2 = 0, you should re-write it so that your exponents decrease from left to right, so the equation is:
x^3 - 3x^2-x+3 = 0.
Factor out (x-3) and you get:
(x-3)(x^2-1)=0.
Factor again to get:
(x-3)(x+1)(x-1) = 0.
Now solve each one:
x-3 = 0
x = 3;
x+1 = 0
x = -1;
x-1 = 0
x=1;
So x = 3,-1, and 1.
Hope this helps