Objectives: 1. Numerical analysis of bisection and Newton methods performance. 2. Build a hybrid method and compare its
Posted: Wed May 04, 2022 10:12 am
Objectives: 1. Numerical analysis of bisection and Newton methods performance. 2. Build a hybrid method and compare its performance to both Bisection and Newton. Work: 1. Use the provided codes of bisection and newton (you have to add comments) to solve numerically a rational function of your choice with both methods. a. Save in a file last iteration, last result and last error. b. Plot the error curve for Bisection and Newton in a single figure. c. Comment (compare performance) Remark: Take a large initial interval for a better graph quality. 2. Combine both methods to take advantage of the strength of each of them a. Explain how you perform the coupling b. Provide the code for the new method c. Provide the graph of the error for the new method, bisection and Newton on a single figure d. Comment Important