HOME

TheInfoList



OR:

The ziggurat algorithm is an
algorithm In mathematics and computer science, an algorithm () is a finite sequence of rigorous instructions, typically used to solve a class of specific problems or to perform a computation. Algorithms are used as specifications for performing ...
for pseudo-random number sampling. Belonging to the class of rejection sampling algorithms, it relies on an underlying source of uniformly-distributed random numbers, typically from a pseudo-random number generator, as well as precomputed tables. The algorithm is used to generate values from a
monotonically decreasing In mathematics, a monotonic function (or monotone function) is a function between ordered sets that preserves or reverses the given order. This concept first arose in calculus, and was later generalized to the more abstract setting of ord ...
probability distribution In probability theory and statistics, a probability distribution is the mathematical function that gives the probabilities of occurrence of different possible outcomes for an experiment. It is a mathematical description of a random phenomeno ...
. It can also be applied to
symmetric Symmetry (from grc, συμμετρία "agreement in dimensions, due proportion, arrangement") in everyday language refers to a sense of harmonious and beautiful proportion and balance. In mathematics, "symmetry" has a more precise definit ...
unimodal distribution In mathematics, unimodality means possessing a unique mode. More generally, unimodality means there is only a single highest value, somehow defined, of some mathematical object. Unimodal probability distribution In statistics, a unimodal ...
s, such as the
normal distribution In statistics, a normal distribution or Gaussian distribution is a type of continuous probability distribution for a real-valued random variable. The general form of its probability density function is : f(x) = \frac e^ The parameter \mu i ...
, by choosing a value from one half of the distribution and then randomly choosing which half the value is considered to have been drawn from. It was developed by
George Marsaglia George Marsaglia (March 12, 1924 – February 15, 2011) was an American mathematician and computer scientist. He is best known for creating the diehard tests, a suite of software for measuring statistical randomness. Research on random numbers ...
and others in the 1960s. A typical value produced by the algorithm only requires the generation of one random floating-point value and one random table index, followed by one table lookup, one multiply operation and one comparison. Sometimes (2.5% of the time, in the case of a normal or
exponential distribution In probability theory and statistics, the exponential distribution is the probability distribution of the time between events in a Poisson point process, i.e., a process in which events occur continuously and independently at a constant averag ...
when using typical table sizes) more computations are required. Nevertheless, the algorithm is computationally much faster than the two most commonly used methods of generating normally distributed random numbers, the
Marsaglia polar method The Marsaglia polar method is a pseudo-random number sampling method for generating a pair of independent standard normal random variables. Standard normal random variables are frequently used in computer science, computational statistics, and ...
and the Box–Muller transform, which require at least one logarithm and one square root calculation for each pair of generated values. However, since the ziggurat algorithm is more complex to implement it is best used when large quantities of random numbers are required. The term ''ziggurat algorithm'' dates from Marsaglia's paper with Wai Wan Tsang in 2000; it is so named because it is conceptually based on covering the probability distribution with rectangular segments stacked in decreasing order of size, resulting in a figure that resembles a
ziggurat A ziggurat (; Cuneiform: 𒅆𒂍𒉪, Akkadian: ', D-stem of ' 'to protrude, to build high', cognate with other Semitic languages like Hebrew ''zaqar'' (זָקַר) 'protrude') is a type of massive structure built in ancient Mesopotamia. It has ...
.


Theory of operation

The ziggurat algorithm is a rejection sampling algorithm; it randomly generates a point in a distribution slightly larger than the desired distribution, then tests whether the generated point is inside the desired distribution. If not, it tries again. Given a random point underneath a probability density curve, its ''x'' coordinate is a random number with the desired distribution. The distribution the ziggurat algorithm chooses from is made up of ''n'' equal-area regions; ''n'' − 1 rectangles that cover the bulk of the desired distribution, on top of a non-rectangular base that includes the tail of the distribution. Given a monotone decreasing probability density function ''f''(''x''), defined for all ''x'' ≥ 0, the base of the ziggurat is defined as all points inside the distribution and below ''y''1 = ''f''(''x''1). This consists of a rectangular region from (0, 0) to (''x''1, ''y''1), and the (typically infinite) tail of the distribution, where ''x'' > ''x''1 (and ''y'' < ''y''1). This layer (call it layer 0) has area ''A''. On top of this, add a rectangular layer of width ''x''1 and height ''A''/''x''1, so it also has area ''A''. The top of this layer is at height ''y''2 = ''y''1 + ''A''/''x''1, and intersects the density function at a point (''x''2, ''y''2), where ''y''2 = ''f''(''x''2). This layer includes every point in the density function between ''y''1 and ''y''2, but (unlike the base layer) also includes points such as (''x''1, ''y''2) which are not in the desired distribution. Further layers are then stacked on top. To use a precomputed table of size ''n'' (''n'' = 256 is typical), one chooses ''x''1 such that ''x''''n'' = 0, meaning that the top box, layer ''n'' − 1, reaches the distribution's peak at (0, ''f''(0)) exactly. Layer ''i'' extends vertically from ''y''''i'' to ''y''''i''+1, and can be divided into two regions horizontally: the (generally larger) portion from 0 to ''x''''i''+1 which is entirely contained within the desired distribution, and the (small) portion from ''x''''i''+1 to ''x''''i'', which is only partially contained. Ignoring for a moment the problem of layer 0, and given uniform random variables ''U''0 and ''U''1 ∈ [0,1), the ziggurat algorithm can be described as: # Choose a random layer 0 ≤ ''i'' < ''n''. # Let ''x'' = ''U''0''x''''i''. # If ''x'' < ''x''''i''+1, return ''x''. # Let ''y'' = ''y''''i'' + ''U''1(''y''''i''+1 − ''y''''i''). # Compute ''f''(''x''). If ''y'' < ''f''(''x''), return ''x''. # Otherwise, choose new random numbers and go back to step 1. Step 1 amounts to choosing a low-resolution ''y'' coordinate. Step 3 tests if the ''x'' coordinate is clearly within the desired density function without knowing more about the y coordinate. If it is not, step 4 chooses a high-resolution y coordinate, and step 5 does the rejection test. With closely spaced layers, the algorithm terminates at step 3 a very large fraction of the time. For the top layer ''n'' − 1, however, this test always fails, because ''x''''n'' = 0. Layer 0 can also be divided into a central region and an edge, but the edge is an infinite tail. To use the same algorithm to check if the point is in the central region, generate a fictitious ''x''0 = ''A''/''y''''1''. This will generate points with ''x'' < ''x''''1'' with the correct frequency, and in the rare case that layer 0 is selected and ''x'' ≥ ''x''''1'', use a special fallback algorithm to select a point at random from the tail. Because the fallback algorithm is used less than one time in a thousand, speed is not essential. Thus, the full ziggurat algorithm for one-sided distributions is: # Choose a random layer 0 ≤ ''i'' < ''n''. # Let ''x'' = ''U''0''x''''i'' # If ''x'' < ''x''''i''+1, return ''x''. # If ''i'' = 0, generate a point from the tail using the fallback algorithm. # Let ''y'' = ''y''''i'' + ''U''1(''y''''i''+1 − ''y''''i''). # Compute ''f''(''x''). If ''y'' < ''f''(''x''), return ''x''. # Otherwise, choose new random numbers and go back to step 1. For a two-sided distribution, the result must be negated 50% of the time. This can often be done conveniently by choosing ''U''0 ∈ (−1,1) and, in step 3, testing if , ''x'', < ''x''''i''+1.


Fallback algorithms for the tail

Because the ziggurat algorithm only generates ''most'' outputs very rapidly, and requires a fallback algorithm whenever ''x'' > ''x''1, it is always more complex than a more direct implementation. The specific fallback algorithm depends on the distribution. For an exponential distribution, the tail looks just like the body of the distribution. One way is to fall back to the most elementary algorithm ''E'' = −ln(''U''1) and let ''x'' = ''x''1 − ln(''U''1). Another is to call the ziggurat algorithm recursion, recursively and add ''x''1 to the result. For a normal distribution, Marsaglia suggests a compact algorithm: # Let ''x'' = −ln(''U''1)/''x''1. # Let ''y'' = −ln(''U''2). # If 2''y'' > ''x''2, return ''x'' + ''x''1. # Otherwise, go back to step 1. Since ''x''''1'' ≈ 3.5 for typical table sizes, the test in step 3 is almost always successful.


Optimizations

The algorithm can be performed efficiently with precomputed tables of ''x''''i'' and ''y''''i'' = ''f''(''x''''i''), but there are some modifications to make it even faster: * Nothing in the ziggurat algorithm depends on the probability distribution function being normalized (integral under the curve equal to 1), removing normalizing constants can speed up the computation of ''f''(''x''). * Most uniform random number generators are based on integer random number generators which return an integer in the range ,  232 − 1 A table of 2−32''x''i lets you use such numbers directly for ''U''0. * When computing two-sided distributions using a two-sided ''U''0 as described earlier, the random integer can be interpreted as a signed number in the range ��231, 231 − 1 and a scale factor of 2−31 can be used. * Rather than comparing ''U''0''xi'' to ''x''''i''+1 in step 3, it is possible to precompute ''x''''i''+1/''x''''i'' and compare ''U''0 with that directly. If ''U''0 is an integer random number generator, these limits may be premultiplied by 232 (or 231, as appropriate) so an integer comparison can be used. * With the above two changes, the table of unmodified ''x''''i'' values is no longer needed and may be deleted. * When generating
IEEE 754 The IEEE Standard for Floating-Point Arithmetic (IEEE 754) is a technical standard for floating-point arithmetic established in 1985 by the Institute of Electrical and Electronics Engineers (IEEE). The standard addressed many problems found i ...
single-precision floating point values, which only have a 24-bit mantissa (including the implicit leading 1), the least-significant bits of a 32-bit integer random number are not used. These bits may be used to select the layer number. (See the references below for a detailed discussion of this.) * The first three steps may be put into an
inline function In the C and C++ programming languages, an inline function is one qualified with the keyword inline; this serves two purposes: # It serves as a compiler directive that suggests (but does not require) that the compiler substitute the body o ...
, which can call an out-of-line implementation of the less frequently needed steps.


Generating the tables

It is possible to store the entire table precomputed, or just include the values ''n'', ''y''1, ''A'', and an implementation of ''f'' −1(''y'') in the source code, and compute the remaining values when initializing the random number generator. As previously described, you can find ''x''''i'' = ''f'' −1(''y''''i'') and ''y''''i''+1 = ''y''''i'' + ''A''/''x''''i''. Repeat ''n'' − 1 times for the layers of the ziggurat. At the end, you should have ''y''''n'' = ''f''(0). There will be some
round-off error A roundoff error, also called rounding error, is the difference between the result produced by a given algorithm using exact arithmetic and the result produced by the same algorithm using finite-precision, rounded arithmetic. Rounding errors are d ...
, but it is a useful sanity test to see that it is acceptably small. When actually filling in the table values, just assume that ''x''''n'' = 0 and ''y''''n'' = ''f''(0), and accept the slight difference in layer ''n'' − 1's area as rounding error.


Finding ''x''1 and ''A''

Given an initial (guess at) ''x''1, you need a way to compute the area ''t'' of the tail for which ''x'' > ''x''1. For the exponential distribution, this is just ''e''−''x''1, while for the normal distribution, assuming you are using the unnormalized ''f''(''x'') = ''e''−''x''2/2, this is   erfc(''x''/). For more awkward distributions,
numerical integration In analysis, numerical integration comprises a broad family of algorithms for calculating the numerical value of a definite integral, and by extension, the term is also sometimes used to describe the numerical solution of differential equations ...
may be required. With this in hand, from ''x''1, you can find ''y''1 = ''f''(''x''1), the area ''t'' in the tail, and the area of the base layer ''A'' = ''x''1''y''1 + ''t''. Then compute the series ''y''''i'' and ''x''''i'' as above. If ''y''''i'' > ''f''(0) for any ''i'' < ''n'', then the initial estimate ''x''1 was too low, leading to too large an area ''A''. If ''y''''n'' < ''f''(0), then the initial estimate ''x''1 was too high. Given this, use a root-finding algorithm (such as the bisection method) to find the value ''x''1 which produces ''y''''n''−1 as close to ''f''(0) as possible. Alternatively, look for the value which makes the area of the topmost layer, ''x''''n''−1(''f''(0) − ''y''''n''−1), as close to the desired value ''A'' as possible. This saves one evaluation of ''f'' −1(''x'') and is actually the condition of greatest interest.


References

* This paper numbers the layers from 1 starting at the top, and makes layer 0 at the bottom a special case, while the explanation above numbers layers from 0 at the bottom.
C implementation of the ziggurat method for the normal density function and the exponential density function
that is essentially a copy of the code in the paper. (Potential users should be aware that this C code assumes 32-bit integers.)

of the ziggurat algorithm and overview of the method. * Describes the hazards of using the least-significant bits of the integer random number generator to choose the layer number.

By Cleve Moler, MathWorks, describing the ziggurat algorithm introduced in
MATLAB MATLAB (an abbreviation of "MATrix LABoratory") is a proprietary multi-paradigm programming language and numeric computing environment developed by MathWorks. MATLAB allows matrix manipulations, plotting of functions and data, implementa ...
version 5, 2001.
The Ziggurat Random Normal Generator
Blogs of MathWorks, posted by Cleve Moler, May 18, 2015. * Comparison of several algorithms for generating Gaussian random numbers. * . Illustrates problems with underlying uniform pseudo-random number generators and how those problems affect the ziggurat algorithm's output. * * {{DEFAULTSORT:Ziggurat Algorithm Pseudorandom number generators Non-uniform random numbers Statistical algorithms