Numerical Analysis/stability of Multistep methods

< Numerical Analysis

For multistep methods, the problems involved with consistence, convergence and stability are complicated because of the number of approximations involved at each step. In the one step method, the approximation w_{i+1} depends only on the previous approximation w_i, whereas the multistep methods use at least two of the previous approximations, and the usual method that are employed involve more.

Stable Multistep Method

Characteristic polynominals

For the multistep method:

w_0=\alpha,w_1=\alpha_1,...,w_{m-1}=\alpha_{m-1},
w_{i+1}=a_{m-1}w_{i}+a_{m-2}w_{i-1}+...+a_0w_{i+1-m}+hF(t_i,h,w_{i+1},w_{i},...,w_{i+1-m}),

the polynominal

P(\lambda)=\lambda^m-a_{m-1}\lambda^{m-1}-a_{m-2}\lambda^{m-2}-...a_1\lambda-a_0 ,

is called the characteristic polynominal of the above mutistep method.

The stability of a multistep method with respect to round-off error is dictated by the magnitudes of the zeros of the characteristic polynominal.

Root condition

Let \lambda_1,\lambda_2,...,\lambda_m, denote the (not necessarily distinct) roots of the characteristic equation

P(\lambda)=\lambda^m-a_{m-1}\lambda^{m-1}-a_{m-2}\lambda^{m-2}-...a_1\lambda-a_0=0 ,

associated with the multistep difference method

w_0=\alpha_0,w_1=\alpha_1,...,w_{m-1}=\alpha_{m-1},
w_{i+1}=a_{m-1}w_{i}+a_{m-2}w_{i-1}+...+a_0w_{i+1-m}+hF(t_i,h,w_{i+1},w_{i},...,w_{i+1-m})\,.

If the absolute value |\lambda_i|\le 1, for each i=1,2,...,m, and all roots with abosolute value 1 are the simple roots, then the difference method is said to satisfy the root condition.

Stability Definitions

  1. Methods that satisfy the root condition and have \lambda=1 as the only root of the characteristic equation of the magnitude one are called strongly stable.
  2. Methods that satisfy the root condition and have more than one distinct root with magnitude one are called weakly stable.
  3. Methods that do not satisfy the root condition are called unstable.

Stable Multistep methods

A multistep method of the form

w_0=\alpha_0,w_1=\alpha_1,...,w_{m-1}=\alpha_{m-1},
w_{i+1}=a_{m-1}w_{i}+a_{m-2}w_{i-1}+...+a_0w_{i+1-m}+hF(t_i,h,w_{i+1},w_{i},...,w_{i+1-m}),

is stable if and only if it satisfies the root condition. Moreover, if the difference method is consistent with the differential equation, then the method is stable if and only if it is convergent.

Examples

Example1

The fourth-order Adams-Bashfoth method is

w_{i+1}=w_{i}+(h/24)(55f_i-59f_{i-1}+37f_{i-2}-9f_{i-3}),

where f_i=f(t_i,w_i)\,. The characteristic equation is

\lambda^4-\lambda^3=\lambda^3(\lambda-1)=0

so we find the characteristic roots to be

\lambda_1=1,\quad\lambda_2=0,\quad\lambda_3=0,\quad\text{and}\quad\lambda_4=0\,.

Thus the 4th-order Adams Method satisfies the root condition and is strongly stable.

Example 2

Milne's Method is

w_{i+1}=w_{i-3}+(4h/3)(2f_i-f_{i-1}+2f_{i-2}),

where f_i=f(t_i,w_i)\,. The characteristic equation is

\lambda^4-1=0(\lambda-1)=0

so the characteristic roots are \lambda_1=1,\quad\lambda_2=-1,\quad\lambda_3=i,\quad\text{and}\quad\lambda_4=-i.

Thus the 4th-order Milne's Method satisfies the root condition, but it is only weakly stable.

Absolute Stability & Region of Absolute stability

Definition

Apply a numerical method to initial-value problem

y'=\lambda y
y(0)=\alpha \quad\text{where}\quad \text{Re}(\lambda)<0\,.

Suppose that a round off error \xi_0 is introduced in the initial condition for this method. At the nth step the round off error is \xi_n. Provided the step size h is chosen to satisfy |\xi_n|<|\xi_0|, the numerical method is said to be absolutely stable for the step size h. And R=\{h\lambda \in \mathbb{C} | |\xi_n|<|\xi_0| \} is said to be region of absolute stability for numerical method.

Region of absolute stability for one-step method

In general, when a one-step method is applied to the test equation, a function Q exists with the property that the difference method gives

w_{i+1}=Q(h\lambda)w_i.

The initial round-off error \xi_{0} and the round-off error at the ith step \xi_{i} will satisfy \xi_{i+1}=Q(h\lambda)\xi_i which is \xi_{i+1}=Q^i(h\lambda)\xi_0.

The inequality |\xi_i|<|\xi_0| will hold if |Q(h\lambda)|<1. Thus, region R of absolute stability for a one-step method is

R=\{h\lambda \in \mathbb{C} | |Q(h\lambda)|<1 \}\,.

Region of absolute stability for multistep methods

Consider the k-step method

w_{n+1}=\sum_{j=1}^{k} a_{k-j} w_{n+1-j}+h \sum_{j=0}^{k} b_{k-j} f_{n-j+1}
f_{n-j+1}=f(t_{n-j+1},w_{n-j+1})\,.

Applying it to

y'=\lambda y

we get

w_{n+1}=\sum_{j=1}^{k} a_{k-j} w_{n+1-j}+\lambda h \sum_{j=0}^{k} b_{k-j} w_{n-j+1}
\Leftrightarrow (1-\lambda h b_k)w_{n+1}-\sum_{j=1}^{k}(a_{k-j}-\lambda h b_{k-j})w_{n+1-j}=0\,.

The characteristic polynominal of the method is

 Q(z,h\lambda)=(1-\lambda h b_k)z^k-\sum_{j=1}^{k}(a_{k-j}-  \lambda h b_{k-j})z^{k-j}=0

The region R of absolute stability for a multistep method is

R=\{h\lambda \in \mathbb{C} | |\beta_j|<1,\text{ for all zeros }\beta_{j}\text{ of }Q(z,h\lambda) \}.

Example

Determine the region of absolute stability for two step method w_{i+1}=w_i+h/2(3f_i-f_{i-1}).

Applying this method to: y'=\lambda y, gives

w_{i+1}=w_{i}+\lambda h (3w_{i}-w_{i-1})/2
\Leftrightarrow w_{i+1}-(1+3h \lambda/2)w_{i}+\lambda h/2 w_{i-1}=0\,.

The characteristic polynominal of above method is

Q(z,h\lambda)=z^2-(1+3h\lambda/2)z+h\lambda/2

All the zeros of the characteristic polynominal are

z_{1,2}={+(1+3h \lambda/2)\pm\sqrt{1+\lambda h+ 9 \lambda^2 h^2/4}\over2}\,.

Thus the region of absolute stability for this method is R=\{h\lambda \in \mathbb{C} | |z_{1,2}|<1 \}.

Exercises

Exercise 1

Find the region of the absolute stability of Euler's method:

w_{k+1}=w_k+hf(t_k,w_k).

Exercise 2

Find the region R of the absolute stability of Trapezoidal method

w_{k+1}=w_k+h/2(f(t_k,w_k)+f(t_{k+1},w_{k+1})).

Exercise 3

Make a table of the interval of absolute stability for four one-step methods: Euler's method, Backward- Euler, M-Euler and Trapezoidal method.

Exercise 4

Find the Region of absolute stability of Adams-Bashforth explict Four-step Method

w_{n+1}=w_n+(h/24)(55f_n-59f_{n-1}+37f_{n-2}-9f_{n-3})\,.

Quiz

The following is a quiz covering information presented on the associated multistep method.

1. True or False: The multistep methods are always stable methods.

TRUE.
FALSE.

2. True or False: If the multistep method is strongly stable then it is weakly stable.

TRUE.
FALSE.

3. Check all that apply: Which of the following statements are right?...

The root condition can always be satisfied for the multistep method.
Methods that satisfy the root condition and have more than one distinct root with magnitude one are called strongly stable.
Methods that do not satisfy the root condition are unstable.
The Euler's method and the Backward Euler method have the same region of absolute stability.

4. Given the following ODE method

y'=-e^xy+x+1, 0\le x \le 1

y(0)=1,

then which h make sure the absolute stability of the method.

h>0
0<h<2/e
0<h<e
h>e

Your score is 0 / 0

References

This article is issued from Wikiversity - version of the Saturday, April 02, 2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.