Problem Sheet 5 - Consistency, Convergence and Stability#

Question 1#

  1. Determine whether the 2-step Adams-Bashforth Method is consistent, convergent and stable

(408)#wn+1=wn+(32hf(tn,wn)12hf(tn1,wn1)).

Question 2#

  1. Determine whether the 2-step Adams-Moulton Method is consistent, convergent and stable

(409)#wn+1=wn+512hf(tn+1,wn+1)+812hf(tn,wn)112hf(tn1,wn1).

Question 3#

  1. Determine whether the linear multistep following methods are consistent, convergent and stable:

(410)#wn+1=wn1+13h[f(tn+1,wn+1)+4f(tn,wn)+f(tn1,wn1)].
(411)#wn+1=43wn13wn1+23h[f(tn+1,wn+1)].

Question 4#

  1. In your own words discuss the following concepts and their relevance for the one-step methods for approximating the solution to initial value problems:

a. consistency of the numerical methods;

b. convergence of the numerical methods;

c. stability of the numerical methods.

Illustrate your answers by stating conditions which are required.

Question 5#

  1. In your own words discuss the following concepts and their relevance for the Adams-Bashforth and Adams-Moulton methods for approximating the solution to initial value problems:

a. implicit and explicit numerical methods;

b. consistency of the numerical methods;

c. convergence of the numerical methods;

d. stability of the numerical methods.

Illustrate your answers by stating conditions which are required.