I solved it by approximation but its very long way to solve, so i was wondering if there is a quicker way to solve this kind of questions.
2026-04-01 13:37:03.1775050623
On
$x^3-6x^2+2x-2=0$ solve for x
138 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
3
There are 3 best solutions below
0
On
As an addition to @The 2nd's excellent answer, you can ask a computer to find the solution for you. It is very fast. Here is an exemple in the Python language with the sympy module. It gives you a list of the three complex solutions
>>> from sympy.solvers import solve
>>> from sympy import Symbol
>>> x = Symbol('x')
>>> solve(x**3-6*x**2+2*x-2, x)
[2 + (-1/2 - sqrt(3)*I/2)*(sqrt(969)/9 + 7)**(1/3) + 10/(3*(-1/2 -
sqrt(3)*I/2)*(sqrt(969)/9 + 7)**(1/3)), 2 + 10/(3*(-1/2 + sqrt(3)*I/2)*
(sqrt(969)/9 + 7)**(1/3)) + (-1/2 + sqrt(3)*I/2)*(sqrt(969)/9 + 7)**(1/3),
10/(3*(sqrt(969)/9 + 7)**(1/3)) + 2 + (sqrt(969)/9 + 7)**(1/3)]
You could just use General cubic formula
Or for another way:
$$x^3-6x^2+2x-2=0$$ $$\implies (x-2)^3 - 10(x-2) -14 = 0$$
Let $t = x - 2$, then:
$$t^3 - 10t -14 = 0$$
And then apply Cardano's formula
Either way, the result will just be:
$$x = 2+\sqrt[3]{\dfrac{63+\sqrt{969}}{9}}+\sqrt[3]{\dfrac{63-\sqrt{969}}{9}}$$