Impossible to solve for x. What to do now?

  • Thread starter Thread starter Juwane
  • Start date Start date
  • Tags Tags
    Impossible
AI Thread Summary
The equation x^2 = 2 √(x^3 + 1) leads to the quartic equation x^4 - 4x^3 - 4 = 0 after squaring both sides. The discussion explores methods for approximating solutions, particularly the Newton-Raphson method, which can quickly converge to a root when provided with an initial guess. Plotting the function can help identify suitable starting points for this method. The conversation raises the question of whether the Newton-Raphson method is the most effective approach for finding approximate solutions to such equations. Overall, the focus is on finding techniques to solve or approximate the roots of the quartic equation.
Juwane
Messages
86
Reaction score
0

Homework Statement



Solve this equation:

x^2 = 2 \sqrt{x^3 + 1}


The Attempt at a Solution



Squaring both sides:

( x^2 )^2 = ( 2 \sqrt{x^3 + 1} )^2

x^4 = 4( x^3 + 1 )

x^4 = 4x^3 + 4

x^4 - 4x^3 = 4

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
You could use Newton-Raphson to find the roots. If you have an approximation x_n for the root, you can get a new approximation by calculating

x_{n+1}=x_n-\frac{f(x_n)}{f'(x_n)}

When it works, it converges on the root quickly. You can get initial guesses by plotting the function.
 
Is Newton-Raphson method the best method available for approximation?
 
I picked up this problem from the Schaum's series book titled "College Mathematics" by Ayres/Schmidt. It is a solved problem in the book. But what surprised me was that the solution to this problem was given in one line without any explanation. I could, therefore, not understand how the given one-line solution was reached. The one-line solution in the book says: The equation is ##x \cos{\omega} +y \sin{\omega} - 5 = 0##, ##\omega## being the parameter. From my side, the only thing I could...
Back
Top