Extrapolation methods to real series
Project description
Extrapolation Methods
Let be $S_n = {\sum}^{n}_{i=1} a_i$ a sequence of partial sums. This repository contains implementations of the following series transformations, which generate a new sequence $T_n$:
-
Aitken's transformation (or delta-squared process):
- In
esum
: O($2n\log n$) - In
acelsum
: O($n$)
$$T_n = \frac{S_{n-1} S_{n+1} - S_n^2}{S_{n+1} - 2 S_n + S_{n-1}}.$$
- In
-
Richardson's transformation (modify, with given p):
- In
esum
: O($2(\log n)^2$) - In
acelsum
: O($\log n$)
$$T_n = S_{2n} + \frac{S_{2n} - S_n}{2^p - 1}.$$
Here, we use $p = 1$ for simplicity.
- In
-
- In
esum
: O($2n\log n$) - In
acelsum
: O($n$)
Let be the auxiliary sequence $\varepsilon_n^j$ defined by:
$$\varepsilon_{-1}^{j} = 0\ \text{and}\ \varepsilon_{0}^{j} = S_j,$$
and inductively:
$$\varepsilon_{k+1}^{j} = \varepsilon_{k-1}^{j+1} + [\varepsilon_{k}^{j+1} - \varepsilon_{k}^{j}]^{-1}.$$
Then, $T_n = \varepsilon_{n-1}^{2}$ (because the odd steps are only partial steps).
- In
-
- In
esum
: O($4n\log n$) - In
acelsum
: O($2n$)
Let be two auxiliary sequences $s_j^{(n)}$ and $r_j^{(n)}$ defined by:
$$s^{(n)}_0 = 1,\ r^{(n)}_1 = x_n,\ n=0,1,\ldots,$$
inductively:
$$s^{(n)}_{k+1} = s^{(n+1)}_{k} \left( \frac{r^{(n+1)}_{k+1}}{r^{(n)}_{k+1}} - 1 \right),\ k,n = 0,1,\ldots$$
and
$$r^{(n)}_{k+1} = r^{(n+1)}_{k} \left( \frac{s^{(n+1)}_{k}}{s^{(n)}_{k}} - 1 \right),\ k=1,2,\ldots;\ n=0,1,\ldots$$
Then, $T_n = S_n - \frac{S_{n+1} - S_{n}}{r^{(n+1)}_{1} - r^{(n)}_{1}} r^{(n)}_{1}$.
- In
-
- In
esum
: O($4n\log n$) - In
acelsum
: O($2n$)
This method is defined by
$$W_n^{(k)} = \frac{M_n^{(k)}}{N_n^{(k)}}$$
where
$$M_n^{(0)} = \frac{S_n}{g(n)},$$
$$M_{n}^{(k+1)} = \frac{M_{n+1}^{(k)} - M_{n}^{(k)}}{a_{n + k}^{-1} - a_{n + 1}^{-1}},$$
and
$$N_n^{(0)} = \frac{1}{g(n)},$$
$$N_{n}^{(k+1)} = \frac{N_{n+1}^{(k)} - N_{n}^{(k)}}{a_{n + k}^{-1} - a_{n + 1}^{-1}}.$$
For the function $g(n)$, we have some classic choices for this function:
- t-variant: $g(n) = a_{n+1}$;
- u-variant: $g(n) = n a_n$;
- v-variant: $g(n) = a_n a_{n+1} / (a_{n+1} - a_n)$.
Then, $T_n = \frac{M_n^{(1)}}{N_n^{(1)}}$.
- In
Installation
Make sure you have the mpmath library installed:
pip install mpmath
To install the package, run the following command:
pip install extrapolation
Usage
We have the transformations implemented above, and for use have the esum
and acelsum
function.
esum
The esum
receives on input:
- A series: In the form of a function $f: \mathbb{N} \to \mathbb{R}$ returning the terms to be summed.
- The Transformation: "Aitken", "Richardson", "Epsilon", "G", "Levin-t", "Levin-u", "Levin-v" and "None", the latter being using the initial series without any transformation.
- The stopping criterion: In case the difference of the last two values of the series are smaller than a given error.
- Return in logarithm scale: True if you want to receive the return in logarithm scale with the sign and False if you want to receive in normal scale.
- Precision: If precision is 53 we use the default python precision, otherwise the given bits precision.
This function determines the minimum value of n for which, the difference between the last partial sums becomes less than the specified error when applying the transformation. And returns the series applied to the transformation. The following is an example:
from extrapolation import esum
import math
# Test with no_transform (without transformation) and with Richardson transformation the basel problem
n0, no_accelerated = esum(lambda x: 1/x**2, 'None', error=1e-12, logarithm=False, precision=100)
n1, accelerated = esum(lambda x: 1/x**2, 'Richardson', error=1e-12, logarithm=False, precision=100)
# Comparison
print(f"True value: {math.pi ** 2 / 6}")
print(f"Without acceleration: {no_accelerated[-1]}, with {n0} iterations")
print(f"With acceleration: {accelerated[-1]}, with {n1} iterations")
Out:
True value: 1.6449340668482264
Without acceleration: 1.6449330668607708753650232828, with 1000012 iterations
With acceleration: 1.6449340611256049164589309217, with 22896 iterations
acelsum
We have also the acelsum
function, that receives on input:
- A series: In the form of a function $f: \mathbb{N} \to \mathbb{R}$ returning the terms to be summed.
- The Transformation: "Aitken", "Richardson", "Epsilon", "G", "Levin-t", "Levin-u", "Levin-v" and "None", the latter being using the initial series without any transformation.
- Natural n: Number of values to be summed.
- Return in logarithm scale: True if you want to receive the return in logarithm scale with the sign and False if you want to receive in normal scale.
- Precision: If precision is 53 we use the default python precision, otherwise the given bits precision.
This function calculates partial sums up to a given natural value, returning the result in log-scale or normal by applying a chosen transformation. The following is an example:
from extrapolation import acelsum
import math
# Test with no_transform (without transformation) and with Richardson transformation the basel problem
no_accelerated = acelsum(lambda x: 1/x**2, 'None', n=1000, logarithm=False, precision=100)
accelerated = acelsum(lambda x: 1/x**2, 'Richardson', n=1000, logarithm=False, precision=100)
# Comparison
print(f"True value: {math.pi ** 2 / 6}")
print(f"Without acceleration: {no_accelerated[-1]}")
print(f"With acceleration: {accelerated[-1]}")
Out:
True value: 1.6449340668482264
Without acceleration: 1.6439345666815597935850701245
With acceleration: 1.6449310678482254269248263997
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file extrapolation-2.1.0.tar.gz
.
File metadata
- Download URL: extrapolation-2.1.0.tar.gz
- Upload date:
- Size: 6.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e49eae59be7dc0849a6874ebdeb3888aff5104f4477246c6c197b6da526b22e0 |
|
MD5 | 075598bac0afed28a64e4729ab4fd9d3 |
|
BLAKE2b-256 | 20288070f79d5ecf225e3161816140aedb3b66c0322d1ae5de3cc80b694abe52 |
Provenance
File details
Details for the file extrapolation-2.1.0-py3-none-any.whl
.
File metadata
- Download URL: extrapolation-2.1.0-py3-none-any.whl
- Upload date:
- Size: 7.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3b6bd861dfcb74c0f461cea8c326e61496832754dd8feff7522745627ec7e332 |
|
MD5 | c2d385417e78681a53efe710fa99d584 |
|
BLAKE2b-256 | ba20dcd981609d6c578bff57f15a105fcb1e1f52fe14496a2653c731db4080b9 |