Finding the Iterative Function to Solve x3+x-1000=0

  • Thread starter Thread starter bb.minhtri
  • Start date Start date
  • Tags Tags
    Iterative Method
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 · 3K views
bb.minhtri
Messages
14
Reaction score
0

Homework Statement



The iterative method is used to find the approximate root of the equation x3 + x - 1000 = 0 in [9, 10]. What is the suitable iterative function?

Homework Equations


The Attempt at a Solution


How to find the iterative function and is there any conditions for one?
Thanks for helps.
 
on Phys.org
The iterative procedure is to calculate the next approximation of x from a function of the previous approximation: xi+1=f(xi). The iterative process can converge in a range of x where the derivative |df/dx |<1.

You can try the ways: x=1000-x3 or x=(1000-x)^1/3.
Which one works? And you can find other iterative functions for this equation. ehild
 
Last edited:
ehild said:
The iterative procedure is to calculate the next approximation of x from a function of the previous approximation: xi+1=f(xi). The iterative process can converge in a range of x where the derivative |df/dx |<1.

You can try the ways: x=1000-x3 or x=(1000-x)^1/3.
Which one works? And you can find other iterative functions for this equation.

The second one works ^^ Thank you very much. Your explanation is very clear:D
 
Using cubic root in an iteration process is not too nice. You can find an other method without that. Hint: write x^3-1000 in the form (x-10)(x^2+10x+100), and isolate x from the x-10 factor.

ehild