| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
The functions described in this chapter accelerate the convergence of a
series using the Levin
-transform. This method takes a small number of
terms from the start of a series and uses a systematic approximation to
compute an extrapolated value and an estimate of its error. The
-transform works for both convergent and divergent series, including
asymptotic series.
These functions are declared in the header file ‘gsl_sum.h’.
| 29.1 Acceleration functions | ||
| 29.2 Acceleration functions without error estimation | ||
| 29.3 Examples | ||
| 29.4 References and Further Reading |
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
The following functions compute the full Levin
-transform of a series
with its error estimate. The error estimate is computed by propagating
rounding errors from each term through to the final extrapolation.
These functions are intended for summing analytic series where each term
is known to high accuracy, and the rounding errors are assumed to
originate from finite precision. They are taken to be relative errors of
order GSL_DBL_EPSILON for each term.
The calculation of the error in the extrapolated value is an
process, which is expensive in time and memory. A faster
but less reliable method which estimates the error from the convergence
of the extrapolated value is described in the next section. For the
method described here a full table of intermediate values and
derivatives through to
must be computed and stored, but this
does give a reliable error estimate.
This function allocates a workspace for a Levin
-transform of n
terms. The size of the workspace is
.
This function frees the memory associated with the workspace w.
This function takes the terms of a series in array of size
array_size and computes the extrapolated limit of the series using
a Levin
-transform. Additional working space must be provided in
w. The extrapolated sum is stored in sum_accel, with an
estimate of the absolute error stored in abserr. The actual
term-by-term sum is returned in w->sum_plain. The algorithm
calculates the truncation error (the difference between two successive
extrapolations) and round-off error (propagated from the individual
terms) to choose an optimal number of terms for the extrapolation.
All the terms of the series passed in through array should be non-zero.
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
The functions described in this section compute the Levin
-transform of
series and attempt to estimate the error from the “truncation error” in
the extrapolation, the difference between the final two approximations.
Using this method avoids the need to compute an intermediate table of
derivatives because the error is estimated from the behavior of the
extrapolated value itself. Consequently this algorithm is an
process and only requires
terms of storage. If the series
converges sufficiently fast then this procedure can be acceptable. It
is appropriate to use this method when there is a need to compute many
extrapolations of series with similar convergence properties at high-speed.
For example, when numerically integrating a function defined by a
parameterized series where the parameter varies only slightly. A
reliable error estimate should be computed first using the full
algorithm described above in order to verify the consistency of the
results.
This function allocates a workspace for a Levin
-transform of n
terms, without error estimation. The size of the workspace is
.
This function frees the memory associated with the workspace w.
This function takes the terms of a series in array of size
array_size and computes the extrapolated limit of the series using
a Levin
-transform. Additional working space must be provided in
w. The extrapolated sum is stored in sum_accel. The actual
term-by-term sum is returned in w->sum_plain. The algorithm
terminates when the difference between two successive extrapolations
reaches a minimum or is sufficiently small. The difference between these
two values is used as estimate of the error and is stored in
abserr_trunc. To improve the reliability of the algorithm the
extrapolated values are replaced by moving averages when calculating the
truncation error, smoothing out any fluctuations.
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
The following code calculates an estimate of
using the series,
After N terms the error in the sum is
, making direct
summation of the series converge slowly.
|
The output below shows that the Levin
-transform is able to obtain an
estimate of the sum to 1 part in
using the first eleven terms of the series. The
error estimate returned by the function is also accurate, giving
the correct number of significant digits.
$ ./a.outterm-by-term sum = 1.5961632439130233 using 20 terms term-by-term sum = 1.5759958390005426 using 13 terms exact value = 1.6449340668482264 accelerated sum = 1.6449340668166479 using 13 terms estimated error = 0.0000000000508580 actual error = -0.0000000000315785 |
Note that a direct summation of this series would require
terms to achieve the same precision as the accelerated
sum does in 13 terms.
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
The algorithms used by these functions are described in the following papers,
The theory of the
-transform was presented by Levin,
A review paper on the Levin Transform is available online,
| [ << ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
This document was generated by Autobuild on September, 26 2007 using texi2html 1.78.