Encyclopedia > Lagged Fibonacci Generators

  Article Content

Lagged Fibonacci Generators

A Lagged Fibonacci Generator (LFG) is an example of a pseudorandom number generator. This class of random number generator is aimed at being an improvement on the 'standard' linear congruential generator. These are based on a generalisation of the Fibonacci sequence.

The Fibonacci sequence may be described by the recurrence relation:

Sn = Sn-1 + Sn-2 (1)

Hence, the new term is the sum of the last two terms in the sequence. This can be generalised to the sequence:

Sn = Sn-j (*) Sn-k (mod M), 0 < j < k (2)

In which case, the new term is some combination of any two previous terms. M is usually a power of 2, often 232 or 264. The (*) operator denotes a general binary operation. This may be either addition, subtraction, multiplication, or the bitwise arithmetic exclusive-or operator (XOR). The theory of this type of generator is rather complex, and it may not be sufficient simply to choose random values for j and k. These generators also tend to be very sensitive to initialisation.

Generators of this type employ k words of state (they 'remember' the last k values).

If the operation used is addition, then the generator is described as an Additive Lagged Fibonacci Generator or ALFG, if multiplication is used, it is a Multiplicative Lagged Fibonacci Generator or MLFG, and if the XOR operation is used, it is called a Two-tap Generalised Shift Feedback Register[?] or GFSR. The Mersenne Twister algorithm is a variation on a GFSR.

Properties of Lagged Fibonacci Generators

Lagged Fibonacci generators have a maximum period of (2k - 1)*2M-1 if addition or exclusive-or operations are used to combine the previous values. If, on the other hand, multiplication is used, the the maximum period is (2k - 1)*2M-3, or 1/4 of period of the additive case.

For the generator to achieve this maximum period, the polynomial:

y = xk + xj + 1

must be primitive over the integers mod 2. Values of j and k satisfying this constraint have been published in the literature. Popular pairs are:

{j = 7, k = 10}, {j = 5, k = 17}, {j = 24, k = 55}, {j = 65, k = 71}, {j = 128, k = 159} (source: http://www.ccs.uky.edu/csep/RN)

It is required that at least one of the first k values chosen to initialise the generator be odd.

Problems with LFGs

The initialisation of LFGs is a very complex problem; any maximum period LFG has a large number of possible cycles, all different. Choosing a cycle is possible, but methods for doing this may endanger the randomness of subsequent outputs. Secondly, the output of LFGs is very sensitive to initial conditions, and statistical defects may appear initially but also periodically in the output sequence unless extreme care is taken. Another potential problem with LFGs is that the mathematical theory behind them is incomplete, making it necessary to rely on statistical tests rather than theoretical performance. These reasons, combined with the existence of the free and very high-quality Mersenne Twister algorithm tend to make 'home-brewed' implementations of LFGs less than desirable in the presence of superior alternatives.

see also Linear congruential generator, Mersenne Twister.



All Wikipedia text is available under the terms of the GNU Free Documentation License

 
  Search Encyclopedia

Search over one million articles, find something about almost anything!
 
 
  
  Featured Article
Flapper

... loose, leaving the arms bare and dropping the wasteline to the hips. Rayon stockings were worn over garter belts[?]. Skirts rose to just below the knee by 1927, allowing ...

 
 
 
This page was created in 48.2 ms