D04 Chapter Contents
D04 Chapter Introduction (PDF version)
NAG Library Manual

NAG Library Chapter Introduction

D04 – Numerical Differentiation

+ Contents

1  Scope of the Chapter

This chapter is concerned with calculating approximations to derivatives of a function f.

2  Background to the Problems

2.1  Description of the Problem

The problem of numerical differentiation does not receive very much attention nowadays. Although the Taylor series plays a key role in much of classical analysis, the poor reputation enjoyed by numerical differentiation has led numerical analysts to construct techniques for most problems which avoid the explicit use of numerical differentiation.
One may briefly and roughly define the term numerical differentiation as any process in which numerical values of derivatives f s x0 are obtained from evaluations fxi of the function fx at several abscissae xi near x0. This problem can be stable, well-conditioned, and accurate when complex-valued abscissae are used. This was first pointed out by Lyness and Moler (1967). An item of numerical software for this appears in Lyness and Ande (1971). However, in many applications the use of complex-valued abscissae is either prohibitive or prohibited. The main difficulty in using real abscissae is that amplification of round-off error can completely obliterate meaningful results. In the days when one relied on hand calculating machines and tabular data, the frustration caused by this effect led to the abandonment of serious use of the process.
There are several reasons for believing that, in the present-day computing environment, numerical differentiation might find a useful role. The first is that, by present standards, it is rather a small-scale calculation, so its cost may well be negligible compared with any overall saving in cost that might result from its use. Secondly, the assignment of a step length h is now generally open. One does not have to rely on tabular data. Thirdly, although the amplification of round-off error is an integral part of the calculation, its effect can be measured reliably and automatically by the routine at the time of the calculation.
Thus you do not have to gauge the round-off level (or noise level) of the function values or assess the effect of this on the accuracy of the results. A routine does this automatically, returning with each result an error estimate which has already taken round-off error amplification into account.
We now illustrate, by means of a very simple example, the importance of the round-off error effect. A very simple approximation of f0, based on the identity
f0=fh-f-h/2h+h2/3! fξ, (1)
is
fh-f-h/2h.
If there were no precision problem, this formula would be the only one needed in the theory of first-order numerical differentiation. We could simply take h=10-40 (or h=10-1000) to obtain an excellent approximation based on two function values. It is only when we consider in detail how a machine with finite precision comes to calculate fh-f-h/2h that the necessity for a sophisticated theory becomes apparent.
To simplify the subsequent description we shall assume that the quantities involved are neither so close to zero that the machine underflow characteristics need be considered nor so large that machine overflow occurs. The approximation mentioned above involves the function values fh and f-h. In general no computer has available these numbers exactly. Instead it uses approximations f^h and f^-h whose relative accuracy is less than some tolerance εf. If the function fx is a library function, for example sinx, εf may coincide with the machine accuracy parameter εm. More generally the function fx is calculated in a user-supplied routine and εf is larger than εm by a small factor 5 or 6 if the calculation is short or by some larger factor in an extended calculation. This factor is not usually known by you.
f^h and f^-h are related to fh and f-h by
f^h=fh1+θ1εf, θ11 f^-h=f-h1+θ2εf, θ21.
Thus even if the rest of the calculation were carried out exactly, it is trivial to show that
f^h-f^-h 2h -fh-f-h 2h 2 ϕ εf fξ 2h ,   ϕ 1.
The difference between the quantity actually calculated and the quantity which one attempts to calculate may be as large as εffξ/h; for example using h=10-40 and εm=10-7 this gives a ‘conditioning error’ of 1033fξ.
In practice much more sophisticated formulae than (1) above are used, and for these and for the corresponding higher-derivative formulae the error analysis is different and more complicated in detail. But invariably the theory contains the same overall feature. In a finite length calculation, the error is composed of two main parts: a discretization error which increases as h becomes large and is zero for h=0; and a ‘conditioning’ error due to amplification of round-off error in function evaluation, which increases as h becomes small and is infinite for h=0.
The routines in this chapter have to take into account internally both these sources of error in the results. Thus they return pairs of results, DERj and ERESTj where DERj is an approximation to f j x0 and ERESTj is an estimate of the error in the approximation DERj. If the routine has not been misled, DERj and ERESTj satisfy
DERj-f j x0ERESTj.
In this respect, numerical differentiation routines are fundamentally different from other routines. You do not specify an error criterion. Instead the routine provides the error estimate and this may be very large.
We mention here a terminological distinction. A fully automatic routine is one in which you do not need to provide any information other than that required to specify the problem. Such a routine (at a cost in computing time) decides an appropriate internal parameter such as the step length h by itself. On the other hand a routine which requires you to provide a step length h, but automatically chooses from several different formulae each based on the specified step length, is termed a semi-automatic routine.
The situation described above must have seemed rather depressing when hand machines were in common use. For example in the simple illustration one does not know the values of the quantities fξ or εf involved in the error estimates, and the idea of altering the value of h and starting again must have seemed appalling. However, by present-day standards, it is a relatively simple matter to write a program which carries out all the previously considered time-consuming calculations which may seem necessary. None of the routines in this chapter are particularly revolutionary in concept. They simply utilize the computer for the sort of task for which it was originally designed. It carries out simple tedious calculations which are necessary to estimate the accuracy of the results of other even simpler tedious calculations.

2.2  Examples of Applications for Numerical Differentiation Routines

(a) One immediate use to which a set of derivatives at a point is likely to be put is that of constructing a Taylor series representation:
fx=fx0+j=1nf j x0 j! x-x0j+f n+1 ξ n+1! x-x0n+1,  ξ-x0x.
This infinite series converges so long as x-x0<Rc (the radius of convergence) and it is only for these values of x that such a series is likely to be used. In this case in forming the sum, the required accuracy in f j x0 diminishes with increasing j.
The series formed from the Taylor series using elementary operations such as integration or differentiation has the same overall characteristic. A technique based on a Taylor series expansion may be quite accurate, even if the individual derivatives are not, so long as the less accurate derivatives are associated with known small coefficients.
The error introduced by using n approximate derivatives DERj is bounded by
j=1nERESTjx-x0j/j!
Thus, if you are prepared to base the result on a truncated Taylor series, the additional error introduced by using approximate Taylor coefficients can be readily bounded from the values of ERESTj. However, in an automatic code you must be prepared to introduce some alternative approach in case this error bound turns out to be unduly high.
In this sort of application the accuracy of the result depends on the size of the errors in the numerical differentiation. There are other applications where the effect of large errors ERESTj is merely to prolong a calculation, but not to impair the final accuracy.
(b) A simple Taylor series approach such as described in (a) is used to find a starting value for a rapidly converging but extremely local iterative process.
(c) The technique known as ‘subtracting out the singularity’ as a preliminary to numerical quadrature may be extended and may be carried out approximately. Thus suppose we are interested in evaluating
01x-1/2ϕxdx,
we have an automatic quadrature routine available, and we have a routine available for ϕx which we know to be an analytic function. An integrand function like x-1/2ϕx is generally accepted to be difficult for an automatic integrator because of the singularity. If ϕx and some of its derivatives at the singularity x=0 are known one may effectively ‘subtract out’ the singularity using the following identity:
01x-1/2ϕxdx=01x-1/2ϕx-ϕ0-Ax-Bx2/2dx+2ϕ0+2A/3+B/5 (2)
with A=ϕ0 and B=ϕ0.
The integrand function on the right of (2) has no singularity, but its third derivative does. Thus using numerical quadrature for this integral is much cheaper than using numerical quadrature for the original integral (in the left-hand side of (2)).
However, (2) is an identity whatever values of A and B are assigned. Thus the same procedure can be used with A and B being approximations to ϕ0 and ϕ0 provided by a numerical differentiation routine. The integrand would now be more difficult to integrate than if A and B were correct but still much less difficult than the original integrand (on the left-hand side of (2)). But, assuming that the automatic quadrature routine is reliable, the overall result would still be correct. The effect of using approximate derivatives rather than exact derivatives does not impair the accuracy of the result. It simply makes the result more expensive to obtain, but not nearly as expensive as if no derivatives were used at all.
(d) The calculation of a definite integral may be based on the Euler–Maclaurin expansion
01fxdx=1mj=0mfj/m-s=1lB2s2s! f 2s-1 1-f 2s-1 0m2s+Om -2l-2 .
Here B2s is a Bernoulli number. If one fixes a value of l then as m is increased the right-hand side (without the remainder term) approaches the true value of the integral. This statement remains true whatever values are used to replace f 2s-1 1 and f 2s-1 0. If no derivatives are available, and this formula is used (effectively with the derivatives replaced by zero) the rate of convergence is slow (like m-2) and a large number of function evaluations may be used in calculating the trapezoidal rule sum for large m before a sufficiently accurate result is attained. However, if approximate derivatives are used, the initial rate of convergence is enhanced. In fact, in this example any derivative approximation which is closer than the approximation zero is helpful. Thus the use of inaccurate derivatives may have the effect of shortening the overall calculation, since a sufficiently accurate result may be obtained using a smaller value of m, without impairing the accuracy of the result. (The resemblance with Gregory's formula is superficial. Here l is kept fixed and m is increased, ensuring a convergent process.)
The examples given above are only intended to illustrate the sort of use to which approximate derivatives may be put. Very simple illustrations have been used for clarity, and in such simple cases there are usually more efficient approaches to the problem. The same ideas applied in a more complicated or restrictive setting may provide an efficient approach to a problem for which no simple standard approach exists.

3  Recommendations on Choice and Use of Available Routines

(a) At the present, there is only one numerical differentiation algorithm available in this chapter accessible using direct communication in D04AAF, and using reverse communication in D04BAF. These are semi-automatic routines for obtaining approximations to the first fourteen derivatives of a real valued function fx at a specified point x0. For D04AAF, you must provide a FUNCTION representing fx, the value of x0, an upper limit n14 on the order of the derivatives required and a step length h. For D04BAF, you must supply the value of x0, 20 other abscissae and the function values at those abscissae. Both routines return a set of approximations DERj and corresponding error estimates ERESTj which hopefully satisfy
DERj-f j x0ERESTj,  j=1,2,,n14.
It is important that the error estimate ERESTj be taken into consideration before any use of DERj is made. The actual size of ERESTj depends on the analytic structure of the function, on the computational precision used and on the step size h, and is difficult to predict. Thus you have to run the routine to find out how accurate the results are. Usually you will find the higher-order derivatives are successively more inaccurate and that past a certain order, say 10 or 11, the size of ERESTj actually exceeds DERj. Clearly when this happens the approximation DERj is unusable.
(b) There is available in the algorithm section of CACM (see Lyness and Ande (1971)) a semi-automatic Fortran routine for numerical differentiation of an analytical function fz at a possibly complex abscissa z0. This is a stable problem. It can be used for any problem for which D04AAF might be used and produces more accurate results, and derivatives of arbitrary high order. However, even if z0 is real and fz is real for z, this routine requires a user-supplied FUNCTION which evaluates fz for complex values of z and it makes use of complex arithmetic.
(c) Routines are available in Chapter E02 to differentiate functions which are polynomials (in Chebyshev series representation) or cubic splines (in B-spline representation).

4  Functionality Index

Generates abscissae for D04BAF D04BBF
Numerical derivatives, 
    direct communication D04AAF
    reverse communication D04BAF

5  Auxiliary Routines Associated with Library Routine Parameters

None.

6  Routines Withdrawn or Scheduled for Withdrawal

None.

7  References

Lyness J N and Ande G (1971) Algorithm 413, ENTCAF and ENTCRE: evaluation of normalised Taylor coefficients of an analytic function Comm. ACM 14(10) 669–675
Lyness J N and Moler C B (1967) Numerical differentiation of analytic functions SIAM J. Numer. Anal. 4(2) 202–210

D04 Chapter Contents
D04 Chapter Introduction (PDF version)
NAG Library Manual

© The Numerical Algorithms Group Ltd, Oxford, UK. 2012