Impossible to solve for x. What to do now?

  • Thread starter Juwane
  • Start date
  • Tags
    Impossible
In summary, the equation x^2 = 2 \sqrt{x^3 + 1} can be solved by using the Newton-Raphson method to find the roots. This method involves using an initial approximation and repeatedly using the formula x_{n+1}=x_n-\frac{f(x_n)}{f'(x_n)} to get closer to the root. Other methods, such as using a plot of the function to get initial estimates, can also be used. However, the Newton-Raphson method is known for its quick convergence to the root.
  • #1
Juwane
87
0

Homework Statement



Solve this equation:

[tex]x^2 = 2 \sqrt{x^3 + 1}[/tex]


The Attempt at a Solution



Squaring both sides:

[tex]( x^2 )^2 = ( 2 \sqrt{x^3 + 1} )^2[/tex]

[tex]x^4 = 4( x^3 + 1 )[/tex]

[tex]x^4 = 4x^3 + 4[/tex]

[tex]x^4 - 4x^3 = 4[/tex]

Now what? Is there is any technique in whole of mathematics with which we can find an apporiximate solution, if not the actual value?
 
Physics news on Phys.org
  • #3
You could use Newton-Raphson to find the roots. If you have an approximation [itex]x_n[/itex] for the root, you can get a new approximation by calculating

[tex]x_{n+1}=x_n-\frac{f(x_n)}{f'(x_n)}[/tex]

When it works, it converges on the root quickly. You can get initial guesses by plotting the function.
 
  • #4
Is Newton-Raphson method the best method available for approximation?
 
Back
Top