Next: which defines as being
Up: Generation of Random Numbers
Previous: Generation of Random Numbers
  Contents
Congruential generators are based on relation with m,n and
non-negative integers,
=
n mod
m
Subsections
- which defines as being congruent
to n modulo m. It means that
is the remainder
- Provided an initial seed
is supplied,
a string of distinct values can be generated.
- By taking
we find a sequence
of numbers distributed on [0,1].
- In the linear congruential generator, only one previous random variable
is used to derive the next one, we can use more of the earlier generated numbers,
each associated with a specified multiplier - a compound generator. If the last
k generated numbers are used, we can write
- where
and the set of multipliers is a= (aa,..,a).
By taking a value of just 2 for k and suitable multipliers aand
a, a compound generator with acceptable result structure
can be obtained, described next.
Amaury LATAILLADE
2002-11-04