PDA

View Full Version : "There's no such thing as random."


Mike Haven
03-31-2003, 09:51 PM
i found this really interesting article at another site (http://www.pokerineurope.com/pokerarticles/detail.php?articleid=323) by a former programmer where basically he tells us that although the deals at poker sites are not really random we shouldn't worry two hoots if we trust that the sites are not fixing the deals

BruceZ
03-31-2003, 10:22 PM
Computer generated random numbers are called "pseudo-random" numbers for this reason. They are generated by a formula, and they are predictable to someone who knows the formula and the seed, but they are intended to be impossible to predict by someone who does not, and they are intended to exhibit the same statistical properties for a particular application, such as poker, as you would expect from truly random numbers. There is no way to ever completely guarantee this performance, but there are mathematical methods for evaluating it.

Truly random numbers may be generated from physical processes which depend on quantum mechanics such as radioactive decay. Also, thermal white guausian noise may be used, such as the noise you receive when you are between channels on a TV or radio. Some poker sites utilize these methods, and they should be truly random.

On the other hand, hand dealt games are certainly not random, and they may not even be as "random" as pseudo-random number generators.