HOME

TheInfoList



OR:

In
numerical analysis Numerical analysis is the study of algorithms that use numerical approximation (as opposed to symbolic computation, symbolic manipulations) for the problems of mathematical analysis (as distinguished from discrete mathematics). It is the study of ...
and scientific computing, the backward Euler method (or implicit Euler method) is one of the most basic numerical methods for the solution of ordinary differential equations. It is similar to the (standard) Euler method, but differs in that it is an implicit method. The backward Euler method has error of order one in time.


Description

Consider the
ordinary differential equation In mathematics, an ordinary differential equation (ODE) is a differential equation (DE) dependent on only a single independent variable (mathematics), variable. As with any other DE, its unknown(s) consists of one (or more) Function (mathematic ...
: \frac = f(t,y) with initial value y(t_0) = y_0. Here the function f and the initial data t_0 and y_0 are known; the function y depends on the real variable t and is unknown. A numerical method produces a sequence y_0, y_1, y_2, \ldots such that y_k approximates y(t_0+kh) , where h is called the step size. The backward Euler method computes the approximations using : y_ = y_k + h f(t_, y_). This differs from the (forward) Euler method in that the forward method uses f(t_k, y_k) in place of f(t_, y_). The backward Euler method is an implicit method: the new approximation y_ appears on both sides of the equation, and thus the method needs to solve an algebraic equation for the unknown y_ . For non- stiff problems, this can be done with fixed-point iteration: : y_^ = y_k, \quad y_^ = y_k + h f(t_, y_^). If this sequence converges (within a given tolerance), then the method takes its limit as the new approximation y_ . Alternatively, one can use (some modification of) the Newton–Raphson method to solve the algebraic equation.


Derivation

Integrating the differential equation \frac = f(t,y) from t_n to t_ = t_n + h yields : y(t_) - y(t_n) = \int_^ f(t, y(t)) \,\mathrmt. Now approximate the integral on the right by the right-hand rectangle method (with one rectangle): : y(t_) - y(t_n) \approx h f(t_, y(t_)). Finally, use that y_n is supposed to approximate y(t_n) and the formula for the backward Euler method follows. The same reasoning leads to the (standard) Euler method if the left-hand rectangle rule is used instead of the right-hand one.


Analysis

The local truncation error (defined as the error made in one step) of the backward Euler Method is O(h^2) , using the big O notation. The error at a specific time t is O(h^2) . It means that this method has order one. In general, a method with O(h^) LTE (local truncation error) is said to be of ''k''th order. The region of absolute stability for the backward Euler method is the complement in the complex plane of the disk with radius 1 centered at 1, depicted in the figure. This includes the whole left half of the complex plane, making it suitable for the solution of stiff equations. In fact, the backward Euler method is even L-stable. The region for a discrete stable system by Backward Euler Method is a circle with radius 0.5 which is located at (0.5, 0) in the z-plane.Wai-Kai Chen, Ed., Analog and VLSI Circuits The Circuits and Filters Handbook, 3rd ed. Chicago, USA: CRC Press, 2009.


Extensions and modifications

The backward Euler method is a variant of the (forward) Euler method. Other variants are the semi-implicit Euler method and the exponential Euler method. The backward Euler method can be seen as a Runge–Kutta method with one stage, described by the Butcher tableau: : \begin 1 & 1 \\ \hline & 1 \\ \end The method can also be seen as a linear multistep method with one step. It is the first method of the family of Adams–Moulton methods, and also of the family of backward differentiation formulas.


See also

* Crank–Nicolson method


Notes


References

* . {{Numerical integrators Numerical differential equations Runge–Kutta methods