2

$56z^3-70z^2-21z-4=0$ how to solve for $z$. I formed three equations but not getting the answer. If I get a start or suggestion it would be a great help.

2 Answers2

3

HINT:

$$56z^3-70z^2-21z-4=0\Longleftrightarrow$$


Eliminate the quadratic term by substituting $x=z-\frac{5}{12}$:


$$56x^3-\frac{301x}{6}-\frac{563}{27}=0\Longleftrightarrow$$ $$x^3-\frac{43x}{48}-\frac{563}{1512}=0\Longleftrightarrow$$


If $x=y+\frac{\lambda}{y}$ then $y=\frac{1}{2}\left(x+\sqrt{x^2-\lambda}\right)$:


$$-\frac{563}{1512}-\frac{43}{48}\left(y+\frac{\lambda}{y}\right)+\left(y+\frac{\lambda}{y}\right)^3=0\Longleftrightarrow$$


Substitute $\lambda=\frac{43}{144}$ and then $u=y^3$, yielding a quadratic equation in the variable $u$:


$$u^2-\frac{563u}{1512}+\frac{79507}{2985984}=0$$

Jan Eerland
  • 28,671
1

Here's a concise formula so anytime you come across a cubic you can easily solve it yourself. Given,

$$Ax^3+Bx^2+Cx+D=0$$

divide by $A$ to get the simpler,

$$x^3+ax^2+bx+c=0$$

then,

$$x = \frac{1}{3}\left(-a+u_1^{1/3}+\frac{a^2-3b}{u_1^{1/3}}\right)$$

where $u$ is any non-zero root of the quadratic,

$$u^2 + (2 a^3 - 9 a b + 27 c) u + (a^2 - 3 b)^3 = 0$$

P.S. This is the formula used by Mathematica though simplified for aesthetics.

  • Just to add, taking the cube root of a number will give you three solutions $u_1^{1/3} e^{2\pi i k/3}$ for $k=0,1,2$. These will yield the three roots $x_i$ of the cubic. – Tito Piezas III Jan 11 '16 at 16:09