Newton’s method can be used to find roots of equations. It is based on the following observation from the following graph of a function that intersects the x axis at the point x*. If you extrapolate the linearization of the function at a point x_n then it can approximate finding the root via x_(n+1). By the next extrapolation from the location of the new root x_(n+1), an improved estimation results which may eventually converge to the actual root x*.

Newton’s method uses linearization to repeatedly approximate the root of an equation
Newton’s method doesn’t always work, sometimes the iterations can oscillate or grow towards infinity. Studying how different initial conditions in the complex plane diverge or converge can lead to interesting fractal pictures. A coloring scheme is usually used depending on how quickly the initial condition converges or diverges. Newton’s method is an important tool for numerical calculation of solutions of equations or even nth roots and so forth.
Example 1. Use Newton’s method to find the square root of two.
Solution 1. We need to find the root of
so we use the function
Now take the derivative
and apply Newton’s method
Now iterate from an initial guess of 1.3
Example 2. Find the root of
Solution2. Form the function
then takes its derivative
Now apply Newtons method
With an initial guess of x=3.5 the value converges to x = 4.965114232. There is only one root of f(x).
Example 3. Find some roots of the equation
Solution 3. Form the function
Then take its derivative
Now apply Newton’s method
The initial guess has to be pretty close to where x intersects tan(2x) for Newton’s method to converge. There are multiple roots. We can choose one initial guess to be x=2.0 the value converges to x=2.137391136 . If we choose x = 3.7 the value converges to x = 3.798273010, and if we choose x= 5.35 the value converges to x= 5.40633666. This is not surprising since the root is near 13pi/8, a location of a vertical asymptote.
Example 4. Find the root of
Solution 4. First for the function
Then take its derivative
Now apply Newton’s method
Now try an initial guess of x = 1 and we find that the root converges to x = 1.063495371. With an initial guess of x=7 we find that the root converges to x = 8.483243866. There are only two roots as can be seen by solving for the roots graphically.
Previous Topic: Optimization in Calculus
Next Topic: Sketching Curves







































