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
![{\displaystyle b_{j}={(-1)^{j} \over j!(r-j)!}\int _{0}^{1}\prod _{i=0}^{r}(u+i)^{[i\neq j]}\,du,\quad j=0,\ldots ,r.}](/media/api/rest_v1/media/math/render/svg/912fe3529c93569094582924038be20eae8c4490)
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
![{\displaystyle b_{j}={(-1)^{j} \over (j+1)!(r-j-1)!}\int _{0}^{1}\prod _{i=-1}^{s-1}(u+i)^{[i\neq j]}\,du,\quad j=-1,0,\ldots ,s-1}](/media/api/rest_v1/media/math/render/svg/52c4a335770b53788a2500706886e79780c65b94)
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.