MarketSpigot algorithm
Company Profile

Spigot algorithm

A spigot algorithm is an algorithm for computing the value of a transcendental number that generates the digits of the number sequentially from left to right providing increasing precision as the algorithm proceeds. Spigot algorithms also aim to minimize the amount of intermediate storage required. The name comes from the sense of the word "spigot" for a tap or valve controlling the flow of a liquid. Spigot algorithms can be contrasted with algorithms that store and process complete numbers to produce successively more accurate approximations to the desired transcendental.

Example
This example illustrates the working of a spigot algorithm by calculating the binary digits of the natural logarithm of 2 using the identity :\ln(2)=\sum_{k=1}^{\infty}\frac{1}{k2^k}\, . To start calculating binary digits from, as an example, the 8th place we multiply this identity by 27 (since 7 = 8 − 1): :2^7\ln(2) =2^7\sum_{k=1}^\infty \frac{1}{k2^k}\, . We then divide the infinite sum into a "head", in which the exponents of 2 are greater than or equal to zero, and a "tail", in which the exponents of 2 are negative: :2^7\ln(2) =\sum_{k=1}^{7}\frac{2^{7-k}}{k}+\sum_{k=8}^{\infty}\frac{1}{k2^{k-7}}\, . We are only interested in the fractional part of this value, so we can replace each of the summands in the "head" by :\frac{2^{7-k} } k \bmod 1 = \frac{2^{7-k} \bmod k} k \, . Calculating each of these terms and adding them to a running total where we again only keep the fractional part, we have: : We add a few terms in the "tail", noting that the error introduced by truncating the sum is less than the final term: : Adding the "head" and the first few terms of the "tail" together we get: :2^7\ln(2)\bmod1 \approx \frac{64}{105}+\frac{37}{360}=0.10011100 \ldots_2 + 0.00011010 \ldots_2 = 0.1011 \ldots_2 \, , so the 8th to 11th binary digits in the binary expansion of ln(2) are 1, 0, 1, 1. Note that we have not calculated the values of the first seven binary digits – indeed, all information about them has been intentionally discarded by using modular arithmetic in the "head" sum. The same approach can be used to calculate digits of the binary expansion of ln(2) starting from an arbitrary nth position. The number of terms in the "head" sum increases linearly with n, but the complexity of each term only increases with the logarithm of n if an efficient method of modular exponentiation is used. The precision of calculations and intermediate results and the number of terms taken from the "tail" sum are all independent of n, and only depend on the number of binary digits that are being calculated – single precision arithmetic can be used to calculate around 12 binary digits, regardless of the starting position. ==References==
tickerdossier.comtickerdossier.substack.com