BDF process

from Wikipedia, the free encyclopedia

The BDF method ( English B ackward D ifferentiation F ormulas ) are linear multi-step process for the numerical solution of initial value problems of ordinary differential equations :

.

The following is calculated for an approximate solution at the intermediate points :

.

The methods were introduced in 1952 by Charles Francis Curtiss and Joseph Oakland Hirschfelder and have been widely used as solvers for stiff initial value problems since the publication of C. William Gear in 1971 .

description

In contrast to the Adams-Moulton method , in the BDF method the right side is not approximated by an interpolation polynomial , instead a polynomial with (maximum) degree is constructed , which interpolates the last approximations to the solution as well as the unknown value :

.

In addition, one demands that the interpolation polynomial solves the given differential equation at the point , i.e. that it holds

,

and thus receives a non-linear system of equations for determining the implicitly given value .

Lagrange representation

One possibility for the representation of the interpolation polynomial is the Lagrange representation . The Lagrange base polynomials with the support points are defined by

where is the Kronecker delta . Because of this, the representation follows directly

.

The requirement now gives the linear recursion formula for the BDF method:

,

where the coefficients are given by

.

Alternative Lagrange representation

Alternatively, consider the Lagrange base polynomials defined by

The illustration follows

.

This is the distance between the support points and the constant step size of the method. With the requirement of being here

applies, one now obtains for the calculation of the coefficients

and with it the recursion formula

Newton representation

The Newtonian representation of the interpolation polynomial uses backward differences, which are recursively defined by

This can be written as

.

This formula leads because of for on the representation

the BDF process.

Calculation formulas

All the representations of the calculation formulas considered above are equivalent, since they only used different types of representation of the unique interpolation polynomial . For the implicit calculation formulas of the BDF (k) method are:

  • BDF (1) - implicit Euler method:
  • BDF (2):
  • BDF (3):
  • BDF (4):
  • BDF (5):
  • BDF (6):

properties

The BDF methods are all implicit because the unknown value goes into the equation. BDF (k) has exactly the consistency order k . The BDF (1) method is the implicit Euler method . This and BDF (2) are A-stable , the higher-order methods are A ( ) -stable, with the opening angle decreasing with the higher order. In particular, BDF (2) is very popular for the calculation of stiff differential equations due to its optimal properties with regard to the second Dahlquist barrier . For k <6 , the methods are stable and consistent and therefore also convergent. The greatest incentive of the BDF methods is their large stability areas, which is why they are suitable for use in solving rigid initial value problems. For k> 6 the methods are unstable.

literature

  • E. Hairer, Syvert P. Nørsett, Gerhard Wanner: Solving Ordinary Differential Equations I, Nonstiff Problems , Springer Verlag, ISBN 3540566708
  • E. Hairer, G. Wanner: Solving Ordinary Differential Equations II, Stiff problems , Springer Verlag, ISBN 3-540-60452-9
  • HR Schwarz, N. Köckler: Numerical Mathematics , Teubner (2004)
  • Curtiss, Hirschfelder Integration of stiff equations , Proc. Nat. Acad. Sci. USA, Vol. 38, 1952, 235-243.

Web links