Impossible to solve for x. What to do now?

  • Thread starter Thread starter Juwane
  • Start date Start date
  • Tags Tags
    Impossible
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
3 replies · 2K views
Juwane
Messages
86
Reaction score
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
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.
 
Is Newton-Raphson method the best method available for approximation?