Suppose you need the cube root of 3.79, but your calculator only does the four basic operations. You can use the Newton-Raphson method to calculate the root to any amount of accuracy needed.
x n + 1 = x n − f ′ ( x n ) f ( x n )
Find f(x).
.
x 0 = 1 . 8
x 1 = 1 . 5 8 9 9 1 7 6 9 5
x 2 = 1 . 5 5 9 7 1 3 3 8 8
x 3 = 1 . 5 5 9 1 2 0 9 2 2
x 4 = 1 . 5 5 9 1 2 0 6 9 7
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
Problem Loading...
Note Loading...
Set Loading...
Let x ω represent the exact root.
x ω = 3 3 . 7 9 , x ω 3 = 3 . 7 9 , x ω 3 − 3 . 7 9 = 0
f ( x ω ) = 0 = x ω 3 − 3 . 7 9 Thus
f ( x ) = x 3 − 3 . 7 9
You can test a few guesses to get a number that is in the neighborhood of 3 3 . 7 9 . In the example calculations listed in the question, I chose my first test value to be x 0 = 1 . 8 .