Newton Univariate Root Method
Aim:
- To find the root/s i.e where the function intercepts the x-axis
General Form:
- General formula for Newton’s Univariate Root approximation:
Example
with initial guess
which is a decent guess looking at the plot of the function
The x-intercepts of the function will be at x = 0 and another x-value somewhere between 0.6 and 0.8
Following the algorithm for newton univariate roots, we can tabulate the key values in a table as follows
0 | 0.8 | 0.054 459 | 0.974 459 | -0.055 886 |
1 | 0.744 114 | 0.002 835 | 0.871 879 | -0.003252 |
2 | 0.740 862 | 0.000 010 | 0.865 705 | -0.000 012 |
3 | 0.740 850 | - | - | - |
using a tolerance of 0.0005 to stop the algorithm results in | ||||
Next we’re going to look at Newton Univariate Method |