3

I am trying to figure out the following cubic root thing.

$ax^3+bx^2+cx+d=0$

I set up

$x=y-\frac{3}{ba}$

Then I plug in for x

$a(y-\frac{3}{ba})^3+b(y-\frac{3}{3a})^2+c(y-\frac{3}{ba})=0$

The issue I am having trouble with is the simplification

I try to multiply it all but I gets messy.

Maybe the binomial theorem can be used

this is supposed to go down into the depressed cubic which is.

$ay^3+(c-\frac{b^2}{3a})y+(d+\frac{2b^3}{27a^2}-\frac{bc}{2a})$

Fernando Martinez
  • 6,698
  • 19
  • 74
  • 108
  • If your getting bogged down in the algebra, I'd suggest first trying to perform the simplification for the special case where $a=1$. This gets rid of some of the clutter that you're struggling to digest, and the general cubic problem for $a\neq 1$ reduces to a problem of this type anyway. – David H May 16 '14 at 02:19

3 Answers3

3

I think you may have the substitution wrong. Try $$x=y-\frac{b}{3a}$$ then $$a\left(y-\frac{b}{3a}\right)^3 +b\left(y-\frac{b}{3a}\right)^2 +c\left(y-\frac{b}{3a}\right)+d=0$$ gives $$ay^3 -by^2 +\frac{b^2}{3a}y -\frac{b^3}{27a^2}+by^2-\frac{2b^2}{3a}y +\frac{b^3}{9a^2}+cy-\frac{bc}{3a}+d=0$$

or $$ay^3 +\left(c-\frac{b^2}{3a} \right) y +\frac{2b^3}{27a^2}-\frac{bc}{3a}+d=0$$

2

I would first consider

$$\begin{align*} 0 &= a(y-t)^3 + b(y-t)^2 + c(y-t) + d \\ &= a(y^3 - 3ty^2 + 3t^2 y - t^3) + b(y^2 - 2yt + t^2) + c(y-t) + d\\ &= ay^3 + (-3at + b)y^2 + (3at^2 - 2bt + c)y + (-at^3 + bt^2 - ct + d). \end{align*}$$

Now, the value of $t$ for which the coefficient of $y^2$ equals zero obviously satisfies $3at-b = 0$, or $t = \frac{b}{3a}$. This is not what you wrote, which is why you are experiencing..."problems." With the correct substitution, the remaining coefficients become

$$\begin{align*}0 &= ay^3 + \bigl(\tfrac{b^2}{3a} - \tfrac{2b^2}{3a} + c\bigr)y + \bigl(-\tfrac{b^3}{27a^2} + \tfrac{b^3}{9a^2} - \tfrac{bc}{3a} + d \bigr) \\ &= ay^3 + \bigl(c - \tfrac{b^2}{3a}\bigr)y + \bigl(\tfrac{2b^3}{27a^2} - \tfrac{bc}{3a} + d\bigr). \end{align*}$$

heropup
  • 135,869
0

Try $$x = y - \dfrac{b}{3a}{}$$

Brad
  • 5,156
  • 2
  • 19
  • 50
  • Note that even with your formula you substituted incorrectly. I assume this was just a typo. – Brad May 16 '14 at 02:43
  • The OP has already used the substitution $x = y - \frac{b}{3a}$, so what exactly is the point in repeating this and posing it as a hint? – beep-boop Jul 02 '14 at 22:22