Jump to content

Linear multistep method

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Dysprosia (talk | contribs) at 05:50, 22 June 2005 (new). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)

Linear multistep methods are methods used in numerical analysis to solve numerically ordinary differential equations. One-step methods (such as Euler's method) refer to only to one previous value to determine the current value. Multi-step methods may refer to several previous function values, and thus, more initial points must be determined, and these intial points are usually determined with a one-step method.

Examples

Adams-Bashforth methods

The Adams-Bashforth methods are explicit step methods and are of the form

where

and the brackets are the Iverson bracket.

For example:

etc.

Observe that both and are necessary to determine , making it a multistep method. The method is determined from the Lagrange form of the polynomial to interpolate at data points ,...,, say this polynomial is and then expanding .

Adams-Moulton methods

The Adams-Moulton methods are similar to the Adams-Bashforth methods, however, these are implicit and are step methods. They are often used in tandem with the Adams-Bashforth methods as a predictor-corrector pair.

The methods are of the form

and

For example:

However, for

is a one-step method.

The derivation of the Adams-Moulton methods is similar to that of the derivation of the Adams-Bashforth methods, instead the interpolating polynomial uses points ,..., instead.

Analysis

Convergence and stability are of concern to the analysis of multistep methods. The stability of a multistep method

is determined by the characteristic polynomial

The method is convergent if and only if the roots of the characteristic polynomial have modulus less or equal 1 for all roots, and the roots of modulus 1 must be of multiplicity 1. Consequently, the method is stable if and only if this condition is statisfied, thus the method is convergent if and only if it is stable.

Furthermore, if the method is stable, the method is said to be strongly stable if is the only root of modulus 1, otherwise, it is said to be weakly stable.

Example

Consider the Adams-Bashforth three-step method

The characteristic equation is thus

which has roots , and the conditions above are satisfied. As is the only root of modulus 1, the method is strongly stable.