12

I am working on a physics task, and reduced it to the following equation for $y$: $$\frac{1}{4y^3}-\frac{2}{(y^2+b^2)^{\frac{3}{2}}}=0$$ I handed it to Mathematica, and it gave me two real solutions, $$y_{1,2} = \pm\frac{b}{\sqrt{3}},$$ along with some complex ones. My question is, how can I see this? I mean, how can I solve such an equation by hand? I tried moving stuff around a bit, but all I found was a sextic equation, which I really didn't feel like approaching. Is there any easier way? Does it lower the hassle, if only real solutions are to be found?

Alex Wertheim
  • 20,278

3 Answers3

56

First, get rid of the denominators,

$$\begin{align} \frac{1}{4y^3} - \frac{2}{(y^2+b^2)^{3/2}} &= 0\\ \iff \frac{1}{4y^3} &= \frac{2}{(y^2+b^2)^{3/2}}\\ \iff (y^2+b^2)^{3/2} &= 8y^3. \end{align}$$

Then, raise it to the $2/3$-th power to simplify it, introducing a third root of unity,

$$\begin{align} y^2 + b^2 &= 4\rho y^2\\ \iff b^2 &= (4\rho-1)y^2\\ \iff y &= \pm \frac{b}{\sqrt{4\rho-1}}. \end{align}$$

Choosing $\rho = 1$ as the third root of unity yields the two real solutions. $\rho = e^{\pm 2\pi i/3}$ yields non-real solutions.

Daniel Fischer
  • 206,697
21

Let $x^2=y^2+b^2$. Then $x=\pm2y$ and you find the result

Ross Millikan
  • 374,822
  • 5
    This answer gives a "magic" solution, rather than explaining how, which is what the question asked. – Brian S Feb 28 '14 at 20:24
  • 1
    I didn't think it was magic, as it a way to get rid of the cubes. It might be easier to find by clearing fractions and taking the cube root of both sides. – Ross Millikan Feb 28 '14 at 21:04
19

Hint

Rearrange terms, so you can get $$ 8y^3 - \left( \sqrt{y^2+b^2} \right )^3 = 0 $$ Now, use the fact that $a^3 - b^3 = (a-b)(a^2+ab+b^2)$ $$ \left( 2y - \sqrt{y^2+b^2} \right )\left( 4y^2 + 2y \sqrt{y^2+b^2} + y^2 + b^2\right ) = 0 $$ Can you take it from here?

Kaster
  • 9,722