Question: Question 2 ( a ) Write a function that implements the following pseudo - code: Input: f , f ' , x , l o

Question 2
(a) Write a function that implements the following pseudo-code:
Input: f,f',x,lon,N.
Output: x**.
Repeat N times:
(a) Set y1=x.
(b) Take one Newton step, starting from y1. Call the result y2.
(c) Take one Newton step, starting from y2. Call the result y3.
(d) Set
x=y1-(y2-y1)2y3-2y2+y1
(e) Display |f(x)|.
(f) If |f(x)|lon print "converged!", break.
Output x**=x.
This algorithm is called Steffensen's iteration.
(b) Test your routine on the problem
exp(-x2+x)-12x=1.0836(with initial guess x=1)
Show that Newton iteration does not converge quadratically, but your new iterative algorithm
does.
 Question 2 (a) Write a function that implements the following pseudo-code:

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!