|
Posted: 11/27/23
Due: 12/06/23, 11:59PM
The simplest nonlinear operator is a scalar function , and a
basic problem is to find the null set of ,
those values for which ,
known as the roots of .
Consider , an eigth degree polynomial with
Implement each of the following methods to find a root of .
Seek a root using the bisection algorithm (see course webpage).
Seek by the secant method.
Seek by Newton's method.
Seek by Steffensen's method.
Change and repeat the above
Prove that Steffensen's method is of second order.
Implement Steffensen's and find , a root of a perturbed , where , , . Comment on what you observe.
Apply the vector-valued version of Newton's method
(1) |
where is the Jacobian
to find a root of
Implementation notes:
As usual, is implemented as linear system solve
An initial guess is typically obtained by linearization of the system.