A random number is a number that is generated by a process, whose outcome is unpredictable, and which cannot be subsequently reliably reproduced. Random numbers are important in statistical analysis and probability theory.
A pseudo-random number generator (PRNG) is a finite state machine with an initial value called the seed [4]. Upon each request, a pseudo-random number generator will return a pseudo-random number based on some deterministic computation or algorithm. The generation of pseudo-random numbers is an important and common task in computer programming. The word pseudo-random is used because the numbers are not random in the sense that they are completely unpredictable and independent of each other. However, they are sufficiently random for practical purposes.
Linear Congruential Method
Mid Square Method
Linear congruential generators (LCGs) are a class of pseudorandom number generators (PRNGs) that generate a sequence of integers [0, m-1] calculated with a linear equation of the form:
Xn+1 = (aXn + c) mod m
where X is the sequence of pseudorandom values m, 0 < m - the “modulus” a, 0 < a < m - the “multiplier” c, 0 <= c < m - the “increment” X0, 0 <= X0 < m - the “seed” or “start value”.
Xn+1 = (aXn + c) mod m
Mixed Linear Congruential Method
Generate by running the program.
Multiplicative congruential generators (MCGs) are a class of pseudorandom number generators (PRNGs) that generate a sequence of integers [0, m-1] calculated with a linear equation of the form:
Xn+1 = (aXn) mod m
where X is the sequence of pseudorandom values m, 0 < m - the “modulus” a, 0 < a < m - the “multiplier” X0, 0 <= X0 < m - the “seed” or “start value”.
Xn+1 = (aXn) mod m
Multiplicative Congruential Method
Generate by running the program.
Additive congruential generators (ACGs) are a class of pseudorandom number generators (PRNGs) that generate a sequence of integers [0, m-1] calculated with a linear equation of the form:
Xn+1 = (Xn + c) mod m
where X is the sequence of pseudorandom values m, 0 < m - the “modulus” c, 0 <= c < m - the “increment” X0, 0 <= X0 < m - the “seed” or “start value”.
Repeat the following steps n - 2 times:
Calculate the next random number:
next = (X1 + X2) % m
Display next.
Update X1 and X2:
X1 = X2 X2 = next
Increment i by 1.
Generate by running the program.
Arithmetic congruential generators (ACGs) are a class of pseudorandom number generators (PRNGs) that generate a sequence of integers [0, m-1] calculated with a linear equation of the form:
Xn+1 = Xn-1 + Xn
where X is the sequence of pseudorandom values m, 0 < m - the “modulus” X0, 0 <= X0 < m - the “seed” or “start value”.
Repeat the following steps n - 2 times:
Calculate the next random number:
next = (X1 + X2) % m
Display next.
Update X1 and X2:
X1 = X2 X2 = next
Increment i by 1.
Arithmetic Congruential Method
Generate by running the program.
The middle-square method is a method of generating pseudorandom numbers. In practice it is not a good method, since its period is usually very short and it has some severe weaknesses, such as the output sequence almost always converging to zero.
Xn+1 = (Xn)^2
Generate by running the program.