Newton Univariate Method
We firstly considered Newton Univariate Root Method, now we’re looking at Newton’s univariate optimisation method.
Aim:
- Find the local optimum i.e. the x-value that maximises/minimises the function
General Form:
- General formula for Newton’s Univariate Root approximation:
Example
Use the same example as used in Newton Univariate Root Method for comparison.
From looking at the graph, good initial guesses will be 0.2, 0.4 or 0.6 but the graph might be too much of a hassle to draw. In this case it was given that an initial guess of x = 0.5 must be used.
0 | 0.5 | 0.351 279 | 2.351 279 | -0.149 399 |
1 | 0.350 601 | -0.017 517 | 2.580 079 | 0.006 789 |
2 | 0.357 390 | -0.000 033 | 2.570 406 | 0.000 013 |
3 | 0.357 403 | - | - | - |
using a tolerance of 0.0005 to stop the algorithm results in Comparing the to the graph, we can see that the value obtained is plausible to be the x-value that will result in a local minimum.
Next we’re going to look at Newton Multivariate Method