Contents
Mersenne Twister
The Mersenne Twister is a general-purpose pseudorandom number generator (PRNG) developed in 1997 by Makoto Matsumoto (松本 眞) and Takuji Nishimura (西村 拓士). Its name derives from the choice of a Mersenne prime as its period length. The Mersenne Twister was designed specifically to rectify most of the flaws found in older PRNGs. The most commonly used version of the Mersenne Twister algorithm is based on the Mersenne prime 2^{19937}-1. The standard implementation of that, MT19937, uses a 32-bit word length. There is another implementation (with five variants ) that uses a 64-bit word length, MT19937-64; it generates a different sequence.
k-distribution
A pseudorandom sequence x_i of w-bit integers of period P is said to be k-distributed to v-bit accuracy if the following holds.
Algorithmic detail
For a w-bit word length, the Mersenne Twister generates integers in the range [0, 2^w-1]. The Mersenne Twister algorithm is based on a matrix linear recurrence over a finite binary field. The algorithm is a twisted generalised feedback shift register (twisted GFSR, or TGFSR) of rational normal form (TGFSR(R)), with state bit reflection and tempering. The basic idea is to define a series x_i through a simple recurrence relation, and then output numbers of the form x_i^T, where T is an invertible -matrix called a tempering matrix. The general algorithm is characterized by the following quantities: with the restriction that 2^{nw-r}-1 is a Mersenne prime. This choice simplifies the primitivity test and k-distribution test that are needed in the parameter search. The series x is defined as a series of w-bit quantities with the recurrence relation: where \mid denotes concatenation of bit vectors (with upper bits on the left), \oplus the bitwise exclusive or (XOR), x_{k}^{u} means the upper w − r bits of x_k, and x_{k+1}^{l} means the lower r bits of x_{k+1}. The subscripts may all be offset by -n where now the LHS, x_k, is the next generated value in the series in terms of values generated in the past, which are on the RHS. The twist transformation A is defined in rational normal form as: with I_{w-1} as the (w-1)(w-1) identity matrix. The rational normal form has the benefit that multiplication by A can be efficiently expressed as: (remember that here matrix multiplication is being done in, and therefore bitwise XOR takes the place of addition)where x_0 is the lowest order bit of x. As like TGFSR(R), the Mersenne Twister is cascaded with a tempering transform to compensate for the reduced dimensionality of equidistribution (because of the choice of A being in the rational normal form). Note that this is equivalent to using the matrix A where for T an invertible matrix, and therefore the analysis of characteristic polynomial mentioned below still holds. As with A, we choose a tempering transform to be easily computable, and so do not actually construct T itself. This tempering is defined in the case of Mersenne Twister as where x is the next value from the series, y is a temporary intermediate value, and z is the value returned from the algorithm, with \lland \gg as the bitwise left and right shifts, and & as the bitwise AND. The first and last transforms are added in order to improve lower-bit equidistribution. From the property of TGFSR, is required to reach the upper bound of equidistribution for the upper bits. The coefficients for MT19937 are: Note that 32-bit implementations of the Mersenne Twister generally have d = FFFFFFFF16. As a result, the d is occasionally omitted from the algorithm description, since the bitwise and with d in that case has no effect. The coefficients for MT19937-64 are:
Initialization
The state needed for a Mersenne Twister implementation is an array of n values of w bits each. To initialize the array, a w-bit seed value is used to supply x_0 through x_{n-1} by setting x_0 to the seed value and thereafter setting for i from 1 to n-1.
C code
Comparison with classical GFSR
In order to achieve the 2^{nw-r}-1 theoretical upper limit of the period in a TGFSR, \phi_{B}(t) must be a primitive polynomial, \phi_{B}(t) being the characteristic polynomial of The twist transformation improves the classical GFSR with the following key properties:
Variants
CryptMT is a stream cipher and cryptographically secure pseudorandom number generator which uses Mersenne Twister internally. It was developed by Matsumoto and Nishimura alongside Mariko Hagita and Mutsuo Saito. It has been submitted to the eSTREAM project of the eCRYPT network. Unlike Mersenne Twister or its other derivatives, CryptMT is patented. MTGP is a variant of Mersenne Twister optimised for graphics processing units published by Mutsuo Saito and Makoto Matsumoto. The basic linear recurrence operations are extended from MT and parameters are chosen to allow many threads to compute the recursion in parallel, while sharing their state space to reduce memory load. The paper claims improved equidistribution over MT and performance on an old (2008-era) GPU (Nvidia GTX260 with 192 cores) of 4.7 ms for 5×107 random 32-bit integers. The SFMT (SIMD-oriented Fast Mersenne Twister) is a variant of Mersenne Twister, introduced in 2006, designed to be fast when it runs on 128-bit SIMD. Intel SSE2 and PowerPC AltiVec are supported by SFMT. It is also used for games with the Cell BE in the PlayStation 3. TinyMT is a variant of Mersenne Twister, proposed by Saito and Matsumoto in 2011. TinyMT uses just 127 bits of state space, a significant decrease compared to the original's 2.5 KiB of state. However, it has a period of 2^{127}-1, far shorter than the original, so it is only recommended by the authors in cases where memory is at a premium.
Characteristics
Advantages: Disadvantages:
Applications
The Mersenne Twister is used as default PRNG by the following software: It is also available in Apache Commons, in the standard C++ library (since C++11), and in Mathematica. Add-on implementations are provided in many program libraries, including the Boost C++ Libraries, the CUDA Library, and the NAG Numerical Library. The Mersenne Twister is one of two PRNGs in SPSS: the other generator is kept only for compatibility with older programs, and the Mersenne Twister is stated to be "more reliable". The Mersenne Twister is similarly one of the PRNGs in SAS: the other generators are older and deprecated. The Mersenne Twister is the default PRNG in Stata, the other one is KISS, for compatibility with older versions of Stata.
Alternatives
An alternative generator, WELL ("Well Equidistributed Long-period Linear"), offers quicker recovery, and equal randomness, and nearly equal speed. Marsaglia's xorshift generators and variants are the fastest in the class of LFSRs. 64-bit MELGs ("64-bit Maximally Equidistributed -Linear Generators with Mersenne Prime Period") are completely optimized in terms of the k-distribution properties. The ACORN family (published 1989) is another k-distributed PRNG, which shows similar computational speed to MT, and better statistical properties as it satisfies all the current (2019) TestU01 criteria; when used with appropriate choices of parameters, ACORN can have arbitrarily long period and precision. The PCG family is a more modern long-period generator, with better cache locality, and less detectable bias using modern analysis methods.
This article is derived from Wikipedia and licensed under CC BY-SA 4.0. View the original article.
Wikipedia® is a registered trademark of the
Wikimedia Foundation, Inc.
Bliptext is not
affiliated with or endorsed by Wikipedia or the
Wikimedia Foundation.