Tutorial: Random Number Generation - UC Santa Barbara

A pseudo-random number generator is an algorithm that produces numbers that look random. The numbers are not actually random. You get the same sequence every time you run the algorithm, if you use the same seed. The (pseudo)-random number generator has a state, s, which is an array of integers. To get the next \random" number in the sequence ... ................
................