We want to find the root x of the function f(x) that is, we need f(x) = 0. This can be done using Newton's method, making use of the iterative formula xn+1 = xn - f(xn)/f'(xn).
Show that the sequence of iterates {xn} converges quadratically if f'(x) ≠0 in some appropriate interval of x-values near the root. [9 points]
We can use Newton's method to find the k-th root of some number by making it solve the non-linear equation f(x) = x^k - a = 0.
Show that the iteration scheme then becomes xn+1 = (1 - 1/k)xn + a/(k * xn^(k-1)). [5 points]
In the case of the square root, for which k = 2, show that the error satisfies the relation |√a - xn+1| ≤ |√a - xn|^2. Is this the behavior you would expect? [6 points]