Chelsey H.
asked 08/31/20Newton’s method
The graph for the equation y=x^3 +5 is below. Use Newton’s method with an initial guess of x=-2 to calculate x_3
1 Expert Answer
Alex E. answered 08/31/20
I’ve assisted hundreds of repeat students over the past ten years
I really enjoy this method’s derivation! Let meshare it with you and see if you get a better ie of what’s gowing on here.
First we need our function to be differentiable on the given interval and that our function say f(x) has some unique point in the interval let’s say c where f(c) = 0... Maybe even some other stuff like monotonicity of the function on the interval....Let’s assume we’re given this stuff.
Next, recall that the derivative of a function at a point say (xn,f(xn)) is the slope of the tangent line to the function f(x) at x=xn.
Let’s define our tangent line as the function g(x), then use the point slope form of a linear equation to write g(x) for our tangent line of slope f’(xn) and point (xn, f(xn)).
g(x) -f(xn) = f’(xn) (x - xn)
Now evaluate this function with the point at which this function intersects the x-axis; i.e. where the tangent line of f(x) at (xn,f(xn)) aka g(x)= 0. Let’s call this point (xn+1,0). Substituting this point into the equation yields
0 -f(xn) = f’(xn) (xn+1 - xn)
Solve this for xn+1...
-f(xn) = f’(xn) xn+1 - f’(xn) xn
⇒ f’(xn) xn - f(xn) = f’(xn) xn+1
⇒ xn+1 = xn - f(xn) / f’(xn).
This is a recursive sequence where the limit of the sequence as n→∞ is c! I.e.
limn→∞ xn+1 = c.
Recall that f(c) = 0, so the value of c is an x-intercept of f(x)!
Thus Newton’s Approximation takes in an initial guess x0 or x1 (depending on the indexing you prefer) of where the function is zero in the interval and uses the recursive definition
xn+1 = xn - f(xn) / f’(xn)
to make better and better approximations of that value of c where f(c) = 0.
So, your job outlined in the problem is to calculate xn=3 in the recursive sequence defined above given xn=0 = 2 for the function f(x) = x3 + 5.
So you’ll need to take the derivative of f(x) then it is a bunch of plug and chug work.... calculate x0+1=x1 using x0 = 2 then use x1 in the recursive definition to find a better approximation of where f(x)=0, i.e. x2. Then again to find a better approximation x3.
Doug C.
Here is a Desmos graph that will do the calculations which can be tedious: desmos.com/calculator/8hwjmb2fg008/31/20
Still looking for help? Get the right answer, fast.
Get a free answer to a quick problem.
Most questions answered within 4 hours.
OR
Choose an expert and meet online. No packages or subscriptions, pay only for the time you need.
Kevin S.
09/01/20