Trisha Shetty (Editor)

Adaptive stepsize

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit

In numerical analysis, some methods for the numerical solution of ordinary differential equations (including the special case of numerical integration) use an adaptive stepsize in order to control the errors of the method and to ensure stability properties such as A-stability. Romberg's method is an example of a numerical integration method which uses an adaptive stepsize.

Contents

Example

For simplicity, the following example uses the simplest integration method, the Euler method; in practice, higher-order methods such as Runge–Kutta methods are preferred due to their superior convergence and stability properties.

Consider the initial value problem

y ( t ) = f ( t , y ( t ) ) , y ( a ) = y a

where y and f may denote vectors (in which case this equation represents a system of coupled ODEs in several variables).

We are given the function f(t,y) and the initial conditions (a, ya), and we are interested in finding the solution at t=b. Let y(b) denote the exact solution at b, and let yb denote the solution that we compute. We write y b + ϵ = y ( b ) , where ϵ is the error in the numerical solution.

For a sequence (tn) of values of t, with tn = a + nh, the Euler method gives approximations to the corresponding values of y(tn) as

y n + 1 ( 0 ) = y n + h f ( t n , y n )

The local truncation error of this approximation is defined by

τ n + 1 ( 0 ) = y ( t n + 1 ) y n + 1 ( 0 )

and by Taylor's theorem, it can be shown that (provided f is sufficiently smooth) the local truncation error is proportional to the square of the step size:

τ n + 1 ( 0 ) = c h 2

where c is some constant of proportionality.

We have marked this solution and its error with a ( 0 ) .

The value of c is not known to us. Let us now apply Euler's method again with a different step size to generate a second approximation to y(tn+1). We get a second solution, which we label with a ( 1 ) . Take the new step size to be one half of the original step size, and apply two steps of Euler's method. This second solution is presumably more accurate. Since we have to apply Euler's method twice, the local error is (in the worst case) twice the original error.

y n + 1 2 = y n + h 2 f ( t n , y n ) y n + 1 ( 1 ) = y n + 1 2 + h 2 f ( t n + 1 2 , y n + 1 2 ) τ n + 1 ( 1 ) = c ( h 2 ) 2 + c ( h 2 ) 2 = 2 c ( h 2 ) 2 = 1 2 c h 2 = 1 2 τ n + 1 ( 0 ) y n + 1 ( 1 ) + τ n + 1 ( 1 ) = y ( t + h )

Here, we assume error factor c is constant over the interval [ t , t + h ] . In reality its rate of change is proportional to y ( 3 ) ( t ) . Subtracting solutions gives the error estimate:

y n + 1 ( 1 ) y n + 1 ( 0 ) = τ n + 1 ( 1 )

This local error estimate is third order accurate.

The local error estimate can be used to decide how stepsize h should be modified to achieve the desired accuracy. For example, if a local tolerance of t o l is allowed, we could let h evolve like:

h 0.9 × h × min ( max ( t o l | τ n + 1 ( 1 ) | , 0.3 ) , 2 )

The 0.9 is a safety factor to ensure success on the next try. The minimum and maximum are to prevent extreme changes from the previous stepsize. This should, in principle give an error of about 0.9 × t o l in the next try. If | τ n + 1 ( 1 ) | < t o l , we consider the step successful, and the error estimate is used to improve the solution:

y n + 1 ( 2 ) = y n + 1 ( 1 ) + τ n + 1 ( 1 )

This solution is actually third order accurate in the local scope (second order in the global scope), but since there is no error estimate for it, this doesn't help in reducing the number of steps. This technique is called Richardson extrapolation.

Beginning with an initial stepsize of h = b a , this theory facilitates our controllable integration of the ODE from point a to b , using an optimal number of steps given a local error tolerance. A drawback is that the step size may become prohibitively small, especially when using the low-order Euler method.

Similar methods can be developed for higher order methods, such as the 4th order Runge-Kutta method. Also, a global error tolerance can be achieved by scaling the local error to global scope.

Embedded error estimates

Adaptive stepsize methods that use a so-called 'embedded' error estimate include the Runge–Kutta–Fehlberg, Cash–Karp and Dormand–Prince methods. These methods are considered to be more computationally efficient, but have lower accuracy in their error estimates.

References

Adaptive stepsize Wikipedia