Ziggurat algorithm
The ziggurat algorithm is an algorithm 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 monotone decreasing probability distribution. It can also be applied to symmetric unimodal distributions, such as the normal distribution, 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 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 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 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.
. the sample value may lie under the curve, and must be tested further. In that case, a random y value within the chosen layer is generated and compared to f. If less, the point is under the curve and the value x is output. If not,, the chosen point x is rejected and the algorithm is restarted from the beginning.
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, defined for all x ≥ 0, the base of the ziggurat is defined as all points inside the distribution and below y1 = f. This consists of a rectangular region from to, and the tail of the distribution, where x > x1.
This layer has area A. On top of this, add a rectangular layer of width x1 and height A/x1, so it also has area A. The top of this layer is at height y2 = y1 + A/x1, and intersects the density function at a point, where y2 = f. This layer includes every point in the density function between y1 and y2, but also includes points such as which are not in the desired distribution.
Further layers are then stacked on top. To use a precomputed table of size n, one chooses x1 such that xn = 0, meaning that the top box, layer n − 1, reaches the distribution's peak at exactly.
Layer i extends vertically from yi to yi+1, and can be divided into two regions horizontally: the portion from 0 to xi+1 which is entirely contained within the desired distribution, and the portion from xi+1 to xi, which is only partially contained.
Ignoring for a moment the problem of layer 0, and given uniform random variables U0 and U1 ∈ 0,1), the ziggurat algorithm can be described as:
- Choose a random layer 0 ≤ i < n.
- Let x = U0xi.
- If x < xi+1, return x.
- Let y = yi + U1.
- Compute f. If y < f, return x.
- Otherwise, choose new random numbers and go back to [step 1
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 xn = 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 x0 = A/y1. This will generate points with x < x1 with the correct frequency, and in the rare case that layer 0 is selected and x ≥ x1, 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 = U0xi
- If x < xi+1, return x.
- If i = 0, generate a point from the tail using the fallback algorithm.
- Let y = yi + U1.
- Compute f. If y < f, return x.
- Otherwise, choose new random numbers and go back to step 1.
Fallback algorithms for the tail
Because the ziggurat algorithm only generates most outputs very rapidly, and requires a fallback algorithm whenever x > x1, it is always more complex than a more direct implementation. The fallback algorithm, of course, 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 and let x = x1 − ln. Another is to call the ziggurat algorithm recursively and add x1 to the result.
For a normal distribution, Marsaglia suggests a compact algorithm:
- Let x = −ln/x1.
- Let y = −ln.
- If 2y > x2, return x + x1.
- Otherwise, go back to step 1.
Optimizations
The algorithm can be performed efficiently with precomputed tables of xi and yi = f, but there are some modifications to make it even faster:- Nothing in the ziggurat algorithm depends on the probability distribution function being normalized, removing normalizing constants can speed up the computation of f.
- Most uniform random number generators are based on integer random number generators which return an integer in the range . A table of 2−32xi lets you use such numbers directly for U0.
- When computing two-sided distributions using a two-sided U0 as described earlier, the random integer can be interpreted as a signed number in the range , and a scale factor of 2−31 can be used.
- Rather than comparing U0xi to xi+1 in step 3, it is possible to precompute xi+1/xi and compare U0 with that directly. If U0 is an integer random number generator, these limits may be premultiplied by 232 so an integer comparison can be used.
- With the above two changes, the table of unmodified xi values is no longer needed and may be deleted.
- When generating IEEE 754 single-precision floating point values, which only have a 24-bit mantissa, the least-significant bits of a 32-bit integer random number are not used. These bits may be used to select the layer number.
- The first three steps may be put into an inline function, which can call an out-of-line implementation of the less frequently needed steps.
Generating the tables
As previously described, you can find xi = f −1 and yi+1 = yi + A/xi. Repeat n − 1 times for the layers of the ziggurat. At the end, you should have yn = f. There will, of course, be some round-off error, but it is a useful sanity test to see that it is acceptably small.
When actually filling in the table values, just assume that xn = 0 and yn = f, and accept the slight difference in layer n − 1's area as rounding error.
Finding ''x''1 and ''A''
Given an initial x1, you need a way to compute the area t of the tail for which x > x1. For the exponential distribution, this is just e−x1, while for the normal distribution, assuming you are using the unnormalized f = e−x2/2, this is erfc. For more awkward distributions, numerical integration may be required.With this in hand, from x1, you can find y1 = f, the area t in the tail, and the area of the base layer A = x1y1 + t.
Then compute the series yi and xi as above. If yi > f for any i < n, then the initial estimate x1 was too low, leading to too large an area A. If yn < f, then the initial estimate x1 was too high.
Given this, use a root-finding algorithm to find the value x1 which produces yn−1 as close to f as possible. Alternatively, look for the value which makes the area of the topmost layer, xn−1, as close to the desired value A as possible. This saves one evaluation of f −1 and is actually the condition of greatest interest.