Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.
Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.
License: OTHER
Image: ubuntu2004

licensed under a Creative Commons Attribution-ShareAlike 4.0 International License.
Prerequisites:
Intro to Sage
Graphing and Solving Equations
Tangent Lines
Differentiation
Newton's Method
Newton's Method is a tool that uses calculus to estimate the roots (zeros or x-intercepts) of a function.
In a previous lab, we considered the find_root and solve commands in Sage, which can be used to find roots. The purpose of this lab is to give us some idea of the math behind these commands. There is no practical reason to use Newton's Method (unless you really need to find a root without a computer/calculator). However, it is instructive to see how calculus (which is not directly related to roots) can be used to estimate roots.
Newton's basic idea is that a differentiable function is "close" to its tangent lines (at least near the point of tangency). So if we know the root of a tangent line (easy algebra), we suppose that the root of the function is somewhere close.
Example 1
Estimate the roots of . [Of course, we can find the roots of a quadratic function with the Quadratic Formula, but it's just an example.] Let's look at a graph:
From this graph, it appears that there is a root near .
Let's find the tangent line at this point. Remember, an equation for the tangent line at is .
Notice that the tangent line and the graph of are close together near , and we can see that the root of the tangent line is close to the root of .
Sage gives the equation of the tangent line as . To find the root of this line, just plug in 0 for and solve for :
Let's zoom in on the graph and plot this root.
On this window, we can see that the root of is not exactly , but this is a good approximation.
If we want a better approximation, we can repeat the process, starting with a point of tangency that's closer to the root. Remember we started this example using as our point of tangency. This time, we'll use , the approximation we got last time. We can see from the graph that this is closer to the root of than , so the tangent line we get from should be even closer to the actual root of .
So let's find a new tangent line:
We can see that the tangent line and are very close together on this window, so the root of the tangent line is very close to the root of .
Let's find the root of the tangent line:
Just for comparison, let's find the exact root of .
There are two solutions, and . We have been trying to estimate the postive root, which is .
This is very close to our estimate, which is off by only (about error).
If we wanted to improve our estimate even more, then we could repeat the process again, using as our new point of tangency.
I hope you see from this short example that this process involves repetition of the same steps over and over with different numbers. It lends itself very easily to be made into an algorithm that can be automated.
Before we discuss this algorithm, I have two comments:
We have to start the process with a point of tangency (we used in our example above). The closer this point is to the actual root, the better. In fact, if our point of tangency is chosen poorly, Newton's Method might never get close to the actual root, or it might take more repetitions than we want to use.
Newton's Method only estimates one root at a time. If we had chosen a different point of tangency, we may have ended up at the other root of (in our example, has two roots).
Now let's develop the algorithm.
Generalizing Newton's Method
Given a function with at least one root, the first step is to get a ballpark estimate for the root to use as the x-coordinate of our first point of tangency.
We'll use a graph to get this initial estimate, which we'll call .
Now we find the tangent line to when :
Then we find the root of the tangent line by setting it equal to 0 and solving for :
First, distribute:
Then gather like terms:
Now divide both sides by :
And simplify:
This is the root of the tangent line, so this becomes our new estimate for the root of . Let's call it . Thus,
To improve our approximation, use as our new point of tangency and repeat the process. The algebra is exactly the same. Simply replace all the in the above equations with .
What we get is a new approximation, , given by
In general, if we have repeated this process times to get an estimate , then repeating the process again will give a new estimate, given by:
Example 2
Now we're ready to lay out an algorithm for Newton's Method.
As I go through the steps, I'll use the example of .
Step 1 Define the function
Step 2 Choose an initial value by graphing the function
From this graph, we can see that has one (real) root, somewhere in the neighborhood of .
We'll use this as our initial guess. I'm going to abandon subscripts to make it easier to do this in Sage. Instead, I'll call our estimate "," and we'll replace with better approximations as we go:
Step 3 Define the number of repetitions
Now we have to decide how many times we want to repeat the process. I'll call this number "."
Step 4 Define the derivative
Step 5 Iterate Newton's Method
Our estimates get better as we go down the list, so our best estimate for the root of is (rounded to 15 decimal places).
For comparison, the exact solution is
To 15 decimal places, our estimate matches the actual root exactly - and that's after only 5 repetitions.
Note 1 It is possible to use Newton's Method to find complex roots as well (just start with a complex guess), but we will not do this in this class.
Note 2 As mentioned above, Newton's Method does not always work. An obvious example is when our initial guess is a local minimum or maximum. Then we get a horizontal tangent line, which has no roots. Another problem arises if the function has a limited domain; in this case, the root of the tangent line may end up outside the domain of the function.
Example 3
Here's an example of a poor choice of initial guess. I have chosen an initial guess of which is close to the minimum at . Although the root of the function is around , the root of the tangent line is about .
In this case, Newton's Method will eventually get back to the root, but it requires a few more repetitions.
Example 4
Here's another poor choice of initial guess. Consider the function . I'm going to choose an initial guess of .
Below is a graph of with the tangent line at .
Notice that the root of the tangent line is a negative number, which is not in the domain of . That means we can't find a new tangent line using that root for the point of tangency.
If we try Newton's Method, we end up with complex numbers!
Newton's Method in One Cell
You can copy and paste the input below to implement Newton's Method.
Change the function , then hit run.
If no root is visible, adjust the plot window and run until you find a root.
Once you see a root, choose an initial guess in the ballpark of the root, change the number , and hit run.
Example 5
Find the roots of .
We found a root near .
Notice how the answers stabilize after a few repetitions. This suggests we have the right answer.
For this example, the graph shows two roots. We have found the positive root; to find the negative root, change the initial guess and run it again.
Now we have found the second root, around .
Using Newton's Method to find a point of intersection
If you have two functions, and , and you want to know where they cross, then define a new function and find the roots of . This gives you the x-coordinate of a point of intersection. Plug this into either or to get the corresponding y-coordinate.
Example 6
Find the points of intersection of and for .
This tells us that the x-coordinate of one point of intersection is approximately .
To find the y-coordinate, plug this into or . I'll plug it into both as a check (I'd better get the same answer).
So our point of intersection is approximately .
The second root is hard to approximate with Newton's Method (at least in Sage), since Sage does not allow fractional powers of negative numbers (this happens when goes past ). We need a very good initial guess to avoid ending up with complex numbers.
This is the x-coordinate; now find the y-coordinate:
So our second point of intersection is approximately .
Here's a graph of the two functions: