HOME

TheInfoList



OR:

Truncation errors in
numerical integration In analysis, numerical integration comprises a broad family of algorithms for calculating the numerical value of a definite integral. The term numerical quadrature (often abbreviated to quadrature) is more or less a synonym for "numerical integr ...
are of two kinds: * ''local truncation errors'' – the error caused by one iteration, and * ''global truncation errors'' – the cumulative error caused by many iterations.


Definitions

Suppose we have a continuous differential equation : y' = f(t,y), \qquad y(t_0) = y_0, \qquad t \geq t_0 and we wish to compute an approximation y_n of the true solution y(t_n) at discrete time steps t_1,t_2,\ldots,t_N . For simplicity, assume the time steps are equally spaced: : h = t_n - t_, \qquad n=1,2,\ldots,N. Suppose we compute the sequence y_n with a one-step method of the form : y_n = y_ + h A(t_, y_, h, f). The function A is called the ''increment function'', and can be interpreted as an estimate of the slope \frac .


Local truncation error

The local truncation error \tau_n is the error that our increment function, A , causes during a single iteration, assuming perfect knowledge of the true solution at the previous iteration. More formally, the local truncation error, \tau_n , at step n is computed from the difference between the left- and the right-hand side of the equation for the increment y_n \approx y_ + h A(t_, y_, h, f) : : \tau_n = y(t_n) - y(t_) - h A(t_, y(t_), h, f). The numerical method is ''consistent'' if the local truncation error is o(h) (this means that for every \varepsilon > 0 there exists an H such that , \tau_n, < \varepsilon h for all h < H ; see
little-o notation Big ''O'' notation is a mathematical notation that describes the limiting behavior of a function when the argument tends towards a particular value or infinity. Big O is a member of a family of notations invented by German mathematicians Pau ...
). If the increment function A is continuous, then the method is consistent if, and only if, A(t,y,0,f) = f(t,y) . Furthermore, we say that the numerical method has ''order p '' if for any sufficiently smooth solution of the
initial value problem In multivariable calculus, an initial value problem (IVP) is an ordinary differential equation together with an initial condition which specifies the value of the unknown function at a given point in the domain. Modeling a system in physics or ...
, the local truncation error is O(h^) (meaning that there exist constants C and H such that , \tau_n, < Ch^ for all h < H ).


Global truncation error

The global truncation error is the accumulation of the ''local truncation error'' over all of the iterations, assuming perfect knowledge of the true solution at the initial time step. More formally, the global truncation error, e_n , at time t_n is defined by: : \begin e_n &= y(t_n) - y_n \\ &= y(t_n) - \Big( y_0 + h A(t_0,y_0,h,f) + h A(t_1,y_1,h,f) + \cdots + h A(t_,y_,h,f) \Big). \end The numerical method is ''convergent'' if global truncation error goes to zero as the step size goes to zero; in other words, the numerical solution converges to the exact solution: \lim_ \max_n , e_n, = 0 .


Relationship between local and global truncation errors

Sometimes it is possible to calculate an upper bound on the global truncation error, if we already know the local truncation error. This requires our increment function be sufficiently well-behaved. The global truncation error satisfies the
recurrence relation In mathematics, a recurrence relation is an equation according to which the nth term of a sequence of numbers is equal to some combination of the previous terms. Often, only k previous terms of the sequence appear in the equation, for a parameter ...
: : e_ = e_n + h \Big( A(t_n, y(t_n), h, f) - A(t_n, y_n, h, f) \Big) + \tau_. This follows immediately from the definitions. Now assume that the increment function is
Lipschitz continuous In mathematical analysis, Lipschitz continuity, named after Germany, German mathematician Rudolf Lipschitz, is a strong form of uniform continuity for function (mathematics), functions. Intuitively, a Lipschitz continuous function is limited in h ...
in the second argument, that is, there exists a constant L such that for all t and y_1 and y_2, we have: : , A(t,y_1,h,f) - A(t,y_2,h,f) , \le L , y_1-y_2, . Then the global error satisfies the bound : , e_n , \le \frac \left( \mathrm^ - 1 \right). It follows from the above bound for the global error that if the function f in the differential equation is continuous in the first argument and Lipschitz continuous in the second argument (the condition from the Picard–Lindelöf theorem), and the increment function A is continuous in all arguments and Lipschitz continuous in the second argument, then the global error tends to zero as the step size h approaches zero (in other words, the numerical method converges to the exact solution).


Extension to linear multistep methods

Now consider a
linear multistep method Linear multistep methods are used for the numerical solution of ordinary differential equations. Conceptually, a numerical method starts from an initial point and then takes a short step forward in time to find the next solution point. The proce ...
, given by the formula : \begin & y_ + a_ y_ + a_ y_ + \cdots + a_0 y_n \\ & \qquad = h \bigl( b_s f(t_,y_) + b_ f(t_,y_) + \cdots + b_0 f(t_n,y_n) \bigr), \end Thus, the next value for the numerical solution is computed according to : y_ = - \sum_^ a_ y_ + h \sum_^s b_k f(t_, y_). The next iterate of a linear multistep method depends on the previous ''s'' iterates. Thus, in the definition for the local truncation error, it is now assumed that the previous ''s'' iterates all correspond to the exact solution: : \tau_n = y(t_) + \sum_^ a_ y(t_) - h \sum_^s b_k f(t_, y(t_)). Again, the method is consistent if \tau_n = o(h) and it has order ''p'' if \tau_n = O(h^) . The definition of the global truncation error is also unchanged. The relation between local and global truncation errors is slightly different from in the simpler setting of one-step methods. For linear multistep methods, an additional concept called
zero-stability Linear multistep methods are used for the numerical solution of ordinary differential equations. Conceptually, a numerical method starts from an initial point and then takes a short step forward in time to find the next solution point. The proce ...
is needed to explain the relation between local and global truncation errors. Linear multistep methods that satisfy the condition of zero-stability have the same relation between local and global errors as one-step methods. In other words, if a linear multistep method is zero-stable and consistent, then it converges. And if a linear multistep method is zero-stable and has local error \tau_n = O(h^) , then its global error satisfies e_n = O(h^p) .


See also

* Order of accuracy *
Numerical integration In analysis, numerical integration comprises a broad family of algorithms for calculating the numerical value of a definite integral. The term numerical quadrature (often abbreviated to quadrature) is more or less a synonym for "numerical integr ...
*
Numerical ordinary differential equations Numerical methods for ordinary differential equations are methods used to find Numerical analysis, numerical approximations to the solutions of ordinary differential equations (ODEs). Their use is also known as "numerical integration", although ...
* Truncation error


Notes


References

* . * {{Citation , last1=Süli , first1=Endre , last2=Mayers , first2=David , title=An Introduction to Numerical Analysis , publisher=
Cambridge University Press Cambridge University Press was the university press of the University of Cambridge. Granted a letters patent by King Henry VIII in 1534, it was the oldest university press in the world. Cambridge University Press merged with Cambridge Assessme ...
, isbn=0521007941 , year=2003.


External links


Notes on truncation errors and Runge-Kutta methods

Truncation error of Euler's method
Numerical integration