MatLab Assignment 4 --
Turn in on October 10
- Use your MatLab program for the Bisection Method
to solve the problem #23 on Page 64 to the accuracy of 10-4.
- Let f(x)=ex-x-1.
- Verify that x=0 is a root of f(x)=0 of order 2 (M=2) (by hand of
course).
- Let x1=1, and tol=10-8. Solve f(x)=0 by
Newton's Method. What is the number of iterations needed?
- Apply Aitken's Acceleration process to the sequence of estimates
obtained previously to generate a new sequence of estimate
y0, y1, ..., yk where
k is determined so that |f(yk)| < 10-8.
What is k?
- Let x1=1, and tol=10-8. Solve f(x)=0 by
two modified Newton methods given in class.
What is the number of iterations needed
for each method?