Given f(x)=x3 - x - 1, use Newton's Method to approximate the root (with initial guess x=2) such that the error < .00001. How many iterations does this take?Difficulty rating:
![]()
To begin, you need to define your important functions: f(x) = x3 - x - 1 and f '(x) = 3x2 - 1. We now use our initial guess of x = 2 to plug into Newton's Method; getting the result from it will result (hopefully) in a better guess at what the root actually is. Each time you repeat the process, it is called an iteration, and the process is continued until the difference between consecutive approximations is less that the error stated. So, we begin:

Using Newton's Method, you can get as close as you want to the actual root, as long as you're willing to number crunch.
| Home | Problem | Fun Calculus Stuff | Kelley's Books | Superbowl of Calculus |