Other names are multiplicative linear congruential generator (MLCG)[2] and multiplicative congruential generator (MCG).
Parameters in common use
In 1988, Park and Miller[3] suggested a Lehmer RNG with particular parameters m = 231 − 1 = 2,147,483,647 (a Mersenne primeM31) and a = 75 = 16,807 (a primitive root modulo M31), now known as MINSTD. Although MINSTD was later criticized by Marsaglia and Sullivan (1993),[4][5] it is still in use today (in particular, in CarbonLib and C++11's minstd_rand0). Park, Miller and Stockmeyer responded to the criticism (1993),[6] saying:
Given the dynamic nature of the area, it is difficult for nonspecialists to make decisions about what generator to use. "Give me something I can understand, implement and port... it needn't be state-of-the-art, just make sure it's reasonably good and efficient." Our article and the associated minimal standard generator was an attempt to respond to this request. Five years later, we see no need to alter our response other than to suggest the use of the multiplier a = 48271 in place of 16807.
This revised constant is used in C++11's minstd_rand random number generator.
The Sinclair ZX81 and its successors use the Lehmer RNG with parameters m = 216 + 1 = 65,537 (a Fermat primeF4) and a = 75 (a primitive root modulo F4).[7][8]
The CRAY random number generator RANF is a Lehmer RNG with the power-of-two modulus m = 248 and a = 44,485,709,377,909.[9] The GNU Scientific Library includes several random number generators of the Lehmer form, including MINSTD, RANF, and the infamous IBM random number generator RANDU.[9]
Choice of modulus
Most commonly, the modulus is chosen as a prime number, making the choice of a coprime seed trivial (any 0 < X0 < m will do). This produces the best-quality output, but introduces some implementation complexity, and the range of the output is unlikely to match the desired application; converting to the desired range requires an additional multiplication.
Using a modulus m which is a power of two makes for a particularly convenient computer implementation, but comes at a cost: the period is at most m/4, and the lower bits have periods shorter than that. This is because the lowest k bits form a modulo-2k generator all by themselves; the higher-order bits never affect lower-order bits.[10] The values Xi are always odd (bit 0 never changes), bits 2 and 1 alternate (the lower 3 bits repeat with a period of 2), the lower 4 bits repeat with a period of 4, and so on. Therefore, the application using these random numbers must use the most significant bits; reducing to a smaller range using a modulo operation with an even modulus will produce disastrous results.[11]
To achieve this period, the multiplier must satisfy a ≡ ±3 (mod 8),[12] and the seed X0 must be odd.
Using a composite modulus is possible, but the generator must be seeded with a value coprime to m, or the period will be greatly reduced. For example, a modulus of F5 = 232 + 1 might seem attractive, as the outputs can be easily mapped to a 32-bit word 0 ≤ Xi − 1 < 232. However, a seed of X0 = 6700417 (which divides 232 + 1) or any multiple would lead to an output with a period of only 640.
Another generator with a composite modulus is the one recommended by Nakazawa & Nakazawa:[13]
m = 134265023 × 134475827 = 18055400005099021 ≈ 254
a = 7759097958782935 (any of ±a±1 (mod m) will do as well)
As both factors of the modulus are less than 232, it is possible to maintain the state modulo each of the factors, and construct the output value using the Chinese remainder theorem, using no more than 64-bit intermediate arithmetic.[13]: 70
A more popular implementation for large periods is a combined linear congruential generator; combining (e.g. by summing their outputs) several generators is equivalent to the output of a single generator whose modulus is the product of the component generators' moduli.[14] and whose period is the least common multiple of the component periods. Although the periods will share a common divisor of 2, the moduli can be chosen so that is the only common divisor and the resultant period is (m1 − 1)(m2 − 1)···(mk − 1)/2k−1.[2]: 744 One example of this is the Wichmann–Hill generator.
Relation to LCG
While the Lehmer RNG can be viewed as a particular case of the linear congruential generator with c=0, it is a special case that implies certain restrictions and properties. In particular, for the Lehmer RNG, the initial seed X0 must be coprime to the modulus m, which is not required for LCGs in general. The choice of the modulus m and the multiplier a is also more restrictive for the Lehmer RNG. In contrast to LCG, the maximum period of the Lehmer RNG equals m − 1, and it is such when m is prime and a is a primitive root modulo m.
On the other hand, the discrete logarithms (to base a or any primitive root modulo m) of Xk in represent a linear congruential sequence modulo the Euler totient.
Implementation
A prime modulus requires the computation of a double-width product and an explicit reduction step. If a modulus just less than a power of 2 is used (the Mersenne primes 231 − 1 and 261 − 1 are popular, as are 232 − 5 and 264 − 59), reduction modulo m = 2e − d can be implemented more cheaply than a general double-width division using the identity 2e ≡ d (mod m).
The basic reduction step divides the product into two e-bit parts, multiplies the high part by d, and adds them: (ax mod 2e) + d⌊ax/2e⌋. This can be followed by subtracting m until the result is in range. The number of subtractions is limited to ad/m, which can be easily limited to one if d is small and a < m/d is chosen. (This condition also ensures that d⌊ax/2e⌋ is a single-width product; if it is violated, a double-width product must be computed.)
When the modulus is a Mersenne prime (d = 1), the procedure is particularly simple. Not only is multiplication by d trivial, but the conditional subtraction can be replaced by an unconditional shift and addition. To see this, note that the algorithm guarantees that x ≢ 0 (mod m), meaning that x = 0 and x = m are both impossible. This avoids the need to consider equivalent e-bit representations of the state; only values where the high bits are non-zero need reduction.
The low e bits of the product ax cannot represent a value larger than m, and the high bits will never hold a value greater than a − 1 ≤ m − 2. Thus the first reduction step produces a value at most m + a − 1 ≤ 2m − 2 = 2e+1 − 4. This is an (e + 1)-bit number, which can be greater than m (i.e. might have bit e set), but the high half is at most 1, and if it is, the low e bits will be strictly less than m. Thus whether the high bit is 1 or 0, a second reduction step (addition of the halves) will never overflow e bits, and the sum will be the desired value.
If d > 1, conditional subtraction can also be avoided, but the procedure is more intricate. The fundamental challenge of a modulus like 232 − 5 lies in ensuring that we produce only one representation for values such as 1 ≡ 232 − 4. The solution is to temporarily add d, so that the range of possible values is d through 2e − 1, and reduce values larger than e bits in a way that never generates representations less than d. Finally subtracting the temporary offset produces the desired value.
Begin by assuming that we have a partially reduced value y bounded so that 0 ≤ y < 2m = 2e+1 − 2d. In this case, a single offset subtraction step will produce 0 ≤ y′= ((y + d) mod 2e) + d⌊(y + d)/2e⌋ − d < m. To see this, consider two cases:
0 ≤ y < m = 2e − d
In this case, y + d < 2e and y′ = y < m, as desired.
m ≤ y < 2m
In this case, 2e ≤ y + d < 2e+1 is an (e + 1)-bit number, and ⌊(y + d)/2e⌋ = 1. Thus, y′ = (y + d) − 2e + d − d = y − 2e + d = y − m < m, as desired. Because the multiplied high part is d, the sum is at least d, and subtracting the offset never causes underflow.
(For the case of a Lehmer generator specifically, a zero state or its image y = m will never occur, so an offset of d − 1 will work just the same, if that is more convenient. This reduces the offset to 0 in the Mersenne prime case, when d = 1.)
Reducing a larger product ax to less than 2m = 2e+1 − 2d can be done by one or more reduction steps without an offset.
If ad ≤ m, then one additional reduction step suffices. Since x < m, ax < am ≤ (a − 1)2e, and one reduction step converts this to at most 2e − 1 + (a − 1)d = m + ad − 1. This is within the limit of 2m if ad − 1 < m, which is the initial assumption.
If ad > m, then it is possible for the first reduction step to produce a sum greater than 2m = 2e+1 − 2d, which is too large for the final reduction step. (It also requires the multiplication by d to produce a product larger than e bits, as mentioned above.) However, as long as d2 < 2e, the first reduction will produce a value in the range required for the preceding case of two reduction steps to apply.
Schrage's method
If a double-width product is not available, Schrage's method,[15][16] also called the approximate factoring method,[17] may be used to compute ax mod m, but this comes at the cost:
The modulus must be representable in a signed integer; arithmetic operations must allow a range of ±m.
The choice of multiplier a is restricted. We require that m mod a ≤ ⌊m/a⌋, commonly achieved by choosing a ≤ √m.
One division (with remainder) per iteration is required.
While this technique is popular for portable implementations in high-level languages which lack double-width operations,[2]: 744 on modern computers division by a constant is usually implemented using double-width multiplication, so this technique should be avoided if efficiency is a concern. Even in high-level languages, if the multiplier a is limited to √m, then the double-width product ax can be computed using two single-width multiplications, and reduced using the techniques described above.
To use Schrage's method, first factor m = qa + r, i.e. precompute the auxiliary constants r = m mod a and q = ⌊m/a⌋ = (m−r)/a. Then, each iteration, compute ax ≡ a(x mod q) − r⌊x/q⌋ (mod m).
This equality holds because
so if we factor x = (x mod q) + q⌊x/q⌋, we get:
The reason it does not overflow is that both terms are less than m. Since x mod q < q ≤ m/a, the first term is strictly less than am/a = m and may be computed with a single-width product.
If a is chosen so that r ≤ q (and thus r/q ≤ 1), then the second term is also less than m: r⌊x/q⌋ ≤ rx/q = x(r/q) ≤ x(1) = x < m. Thus, the difference lies in the range [1−m, m−1] and can be reduced to [0, m−1] with a single conditional add.[18]
This technique may be extended to allow a negative r (−q ≤ r < 0), changing the final reduction to a conditional subtract.
The technique may also be extended to allow larger a by applying it recursively.[17]: 102 Of the two terms subtracted to produce the final result, only the second (r⌊x/q⌋) risks overflow. But this is itself a modular multiplication by a compile-time constantr, and may be implemented by the same technique. Because each step, on average, halves the size of the multiplier (0 ≤ r < a, average value (a−1)/2), this would appear to require one step per bit and be spectacularly inefficient. However, each step also divides x by an ever-increasing quotient q = ⌊m/a⌋, and quickly a point is reached where the argument is 0 and the recursion may be terminated.
Sample C99 code
Using C code, the Park-Miller RNG can be written as follows:
This function can be called repeatedly to generate pseudorandom numbers, as long as the caller is careful to initialize the state to any number greater than zero and less than the modulus. In this implementation, 64-bit arithmetic is required; otherwise, the product of two 32-bit integers may overflow.
To avoid the 64-bit division, do the reduction by hand:
This can also be written without a 64-bit division:
uint32_tlcg_rand(uint32_t*state){uint64_tproduct=(uint64_t)*state*279470273u;uint32_tx;// Not required because 5 * 279470273 = 0x5349e3c5 fits in 32 bits.// product = (product & 0xffffffff) + 5 * (product >> 32);// A multiplier larger than 0x33333333 = 858,993,459 would need it.// The multiply result fits into 32 bits, but the sum might be 33 bits.product=(product&0xffffffff)+5*(uint32_t)(product>>32);product+=4;// This sum is guaranteed to be 32 bits.x=(uint32_t)product+5*(uint32_t)(product>>32);return*state=x-4;}
Many other Lehmer generators have good properties. The following modulo-2128 Lehmer generator requires 128-bit support from the compiler and uses a multiplier computed by L'Ecuyer.[19] It has a period of 2126:
staticunsigned__int128state;/* The state must be seeded with an odd value. */voidseed(unsigned__int128seed){state=seed<<1|1;}uint64_tnext(void){// GCC cannot write 128-bit literals, so we use an expressionconstunsigned__int128mult=(unsigned__int128)0x12e15e35b500f16e<<64|0x2e714eb2b37916a5;state*=mult;returnstate>>64;}
The generator computes an odd 128-bit value and returns its upper 64 bits.
This generator passes BigCrush from TestU01, but fails the TMFn test from PractRand. That test has been designed to catch exactly the defect of this type of generator: since the modulus is a power of 2, the period of the lowest bit in the output is only 262, rather than 2126. Linear congruential generators with a power-of-2 modulus have a similar behavior.
The following core routine improves upon the speed of the above code for integer workloads (if the constant declaration is allowed to be optimized out of a calculation loop by the compiler):
uint64_tnext(void){uint64_tresult=state>>64;// GCC cannot write 128-bit literals, so we use an expressionconstunsigned__int128mult=(unsigned__int128)0x12e15e35b500f16e<<64|0x2e714eb2b37916a5;state*=mult;returnresult;}
However, because the multiplication is deferred, it is not suitable for hashing, since the first call simply returns the upper 64 bits of the seed state.
^Vickers, Steve (1981). "Chapter 5. Functions". ZX81 Basic Programming (2nd ed.). Sinclair Research Ltd. Retrieved 2024-04-21. The ZX81 uses p=65537 & a=75 [...]
(Note that the ZX81 manual incorrectly states that 65537 is a Mersenne prime that equals 216 − 1. The ZX Spectrum manual fixed that and correctly states that it is a Fermat prime that equals 216 + 1.)
^ abNakazawa, Naoya; Nakazawa, Hiroshi (2025). "§7.1 The Present Best MC Generator #001". Random Number Generator on Computers. pp. 67–71. ISBN978-1-003-41060-7. Note that the example implementation is suboptimal. Rather than maintaining state variables mz1 and mz2 and computing mz1a and mz2a each iteration, it is more efficient to maintain the latter as state variables. Also, the final reduction modulo m (called id in the book) is of a value that is less than 2m, so may consist of a single conditional subtraction.