In this project, you are going to experience chaos using the Newton method applied to the function f(x) = x - x^2 + x^3 - x + 1. You will use the Newton method (also known as Newton-Raphson method) to investigate what happens as you change the starting point x0 to solve f(x) = 0. Recall that the sequence of points Xn can be generated using the following formula: Xn+1 = Xn - f(Xn) / f'(Xn).
What would we choose as a starting value? (3 pts.)
(You must carry out the computations in the exact form.)
c) Use an Excel sheet to generate a good number of iterations. Use the following X values until the convergence occurs and report what happens: 0.447503, 0.447262, 0.447222, and 0.4472215. Include how many iterations are required for the convergence to occur. (4 pts.)
d) Select several values greater than 1 and numerically verify that f(x) < 0. (2 pts.)
e) Select several values less than 1 and numerically verify that f(x) > 0. (0.2 pts.)
f) You have shown in b) that 1 should not be selected as a starting value. Try several other values and write a comment. (4 pts.)
g) Use Excel to verify your answer in b) by choosing x to be exactly 2. (2 pts.)