Spectral test
Statistical test for linear congruential generators

The spectral test is a statistical test for the quality of a class of pseudorandom number generators (PRNGs), the linear congruential generators (LCGs). LCGs have a property that when plotted in 2 or more dimensions, lines or hyperplanes will form, on which all possible outputs can be found. The spectral test compares the distance between these planes; the further apart they are, the worse the generator is. As this test is devised to study the lattice structures of LCGs, it can not be applied to other families of PRNGs.
According to Donald Knuth, this is by far the most powerful test known, because it can fail LCGs which pass most statistical tests. The IBM subroutine RANDU LCG fails in this test for 3 dimensions and above.
Let the PRNG generate a sequence . Let
be the maximal separation between covering parallel planes of the sequence
. The spectral test checks that the sequence
does not decay too quickly.
Knuth recommends checking that each of the following 5 numbers is larger than 0.01.
where
is the modulus of the LCG.
01Figures of merit
Knuth defines a figure of merit, which describes how close the separation is to the theoretical minimum. Under Steele & Vigna's re-notation, for a dimension
, the figure
is defined as
where
are defined as before, and
is the Hermite constant of dimension d.
is the smallest possible interplane separation.
L'Ecuyer 1991 further introduces two measures corresponding to the minimum of across a number of dimensions. Again under re-notation,
is the minimum
for a LCG from dimensions 2 to
, and
is the same for a multiplicative congruential pseudorandom number generator (MCG), i.e. one where only multiplication is used, or
. Steele & Vigna note that the
is calculated differently in these two cases, necessitating separate values. They further define a "harmonic" weighted average figure of merit,
(and
).
02Examples
A small variant of the infamous RANDU, with has:
| d | 2 | 3 | 4 | 5 | 6 | 7 | 8 |
|---|---|---|---|---|---|---|---|
| ν2 d |
536936458 | 118 | 116 | 116 | 116 | ||
| μd | 3.14 | 10−5 | 10−4 | 10−3 | 0.02 | ||
| fd | 0.520224 | 0.018902 | 0.084143 | 0.207185 | 0.368841 | 0.552205 | 0.578329 |
The aggregate figures of merit are: ,
.
George Marsaglia (1972) considers as "a candidate for the best of all multipliers" because it is easy to remember, and has particularly large spectral test numbers.
| d | 2 | 3 | 4 | 5 | 6 | 7 | 8 |
|---|---|---|---|---|---|---|---|
| ν2 d |
4243209856 | 2072544 | 52804 | 6990 | 242 | ||
| μd | 3.10 | 2.91 | 3.20 | 5.01 | 0.017 | ||
| fd | 0.462490 | 0.313127 | 0.457183 | 0.552916 | 0.376706 | 0.496687 | 0.685247 |
The aggregate figures of merit are: ,
.
Steele & Vigna (2020) provide the multipliers with the highest aggregate figures of merit for many choices of m = 2n and a given bit-length of a. They also provide the individual values and a software package for calculating these values. For example, they report that the best 17-bit a for m = 232 is:
- For an LCG (c ≠ 0), 0x1dab5 (121525).
,
.
- For an MCG (c = 0), 0x1e92d (125229).
,
.
Sources and credits
This article is adapted from the Wikipedia article “Spectral test”, written by its contributors and licensed under CC BY-SA 4.0. Fathomly has changed the layout, removed citation markers, navigation and maintenance notices, and adjusted punctuation. This adapted version is shared under the same license. For references, see the original article.
Images, from Wikimedia Commons:
- Randu.png by The original uploader was Luis Sanchez at English Wikipedia., CC BY-SA 3.0
Fathomly is not affiliated with or endorsed by the Wikimedia Foundation. Spotted a problem? Tell us.