Why is it hard for a program to generate random numbers? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T18:09:25Z http://stackoverflow.com/feeds/question/632873 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/632873/why-is-it-hard-for-a-program-to-generate-random-numbers 12 Why is it hard for a program to generate random numbers? nzpcmad 2009-03-11T00:36:05Z 2009-08-24T23:01:48Z <p>My kids asked me this question and I couldn't really give a concise, understandable explanation.</p> <p>So I'm hoping someone on SO can.</p> http://stackoverflow.com/questions/632873/why-is-it-hard-for-a-program-to-generate-random-numbers/632882#632882 4 Answer by eduffy for Why is it hard for a program to generate random numbers? eduffy 2009-03-11T00:38:01Z 2009-03-11T00:38:01Z <p>Because computers are deterministic machines.</p> http://stackoverflow.com/questions/632873/why-is-it-hard-for-a-program-to-generate-random-numbers/632883#632883 0 Answer by JimDaniel for Why is it hard for a program to generate random numbers? JimDaniel 2009-03-11T00:38:26Z 2009-03-11T00:38:26Z <p>Because a program is a system and everything in a system is made to run with consistency and regularity. Randomness has no place in a system.</p> http://stackoverflow.com/questions/632873/why-is-it-hard-for-a-program-to-generate-random-numbers/632885#632885 0 Answer by Alan for Why is it hard for a program to generate random numbers? Alan 2009-03-11T00:38:41Z 2009-03-11T00:38:41Z <p>It is hard because given the same sets of inputs and conditions, a program will produce the same result everytime. This by definition is not random.</p> http://stackoverflow.com/questions/632873/why-is-it-hard-for-a-program-to-generate-random-numbers/632887#632887 3 Answer by Nikhil Chelliah for Why is it hard for a program to generate random numbers? Nikhil Chelliah 2009-03-11T00:38:50Z 2009-03-11T00:38:50Z <p>Because given any input, an algorithm produces the exact same output every single time. And you can't just provide a "random" input, because you're trying to generate the random number in the first place.</p> http://stackoverflow.com/questions/632873/why-is-it-hard-for-a-program-to-generate-random-numbers/632889#632889 46 Answer by Jesse Rusak for Why is it hard for a program to generate random numbers? Jesse Rusak 2009-03-11T00:40:03Z 2009-03-11T00:40:03Z <p>How about, "Because computers just follow instructions, and random numbers are the opposite of following instructions. If you make a random number by following instructions, then it's not very random! Imagine trying to give someone instructions on how to choose a random number."</p> http://stackoverflow.com/questions/632873/why-is-it-hard-for-a-program-to-generate-random-numbers/632892#632892 9 Answer by coobird for Why is it hard for a program to generate random numbers? coobird 2009-03-11T00:40:18Z 2009-03-11T00:52:55Z <p>Ask them to devise a step-by-step method to generate a random number.</p> <p>And don't accept "pick a number from 1 to 10" as an answer ;)</p> <p>Trying out a problem should illustrate the difficulty of having to generate random numbers from a set of instructions, just like what computers actually have to do.</p> http://stackoverflow.com/questions/632873/why-is-it-hard-for-a-program-to-generate-random-numbers/632893#632893 0 Answer by Rob for Why is it hard for a program to generate random numbers? Rob 2009-03-11T00:40:43Z 2009-03-11T00:40:43Z <p>Algorithms to generate random numbers are inevitably deterministic. They take a small random seed, and use it to obtain a long string of pseudo-random digits.</p> <p>It's very difficult to do this without introducing subtle patterns into the data. A string of digits can look perfectly random but have repeated patterns which make the distribution innappropriate for applications where randomness is required.</p> http://stackoverflow.com/questions/632873/why-is-it-hard-for-a-program-to-generate-random-numbers/632894#632894 0 Answer by ConcernedOfTunbridgeWells for Why is it hard for a program to generate random numbers? ConcernedOfTunbridgeWells 2009-03-11T00:40:50Z 2009-03-11T00:40:50Z <p>Computers can only execute algorithmic computations, and a truly random number isn't an algorithmic thing. You can get algorithms that produce numbers that behave like random numbers; such algorithms are called 'Pseudo-Random number generators'.</p> <p>At various times in the past, people have made random number generators from analog-digital converters connected to sources of electronic noise, but this tends to be fairly specialised kit.</p> http://stackoverflow.com/questions/632873/why-is-it-hard-for-a-program-to-generate-random-numbers/632897#632897 0 Answer by LuckyLindy for Why is it hard for a program to generate random numbers? LuckyLindy 2009-03-11T00:41:27Z 2009-03-11T00:41:27Z <p>Primarily because computers don't have any functions that behave in discrete, non-random ways. A computer is predictable, which allows us to program reliable software. If it wasn't predictable it would be easier to generate a random number (since our software could rely on this unpredictable method).</p> <p>While it's possible to generate pseudo-random numbers, and numbers that are distributed randomly, you cannot generate truly random numbers without separate hardware. There is hardware that generates truly random numbers based on "quantum" interactions (at least according to the manufacturers). Online poker sites sometimes use these adapters for their generators. </p> <p>Apparently there are even online services to provide random numbers - <a href="http://www.random.org/" rel="nofollow">random.org</a> for example. </p> http://stackoverflow.com/questions/632873/why-is-it-hard-for-a-program-to-generate-random-numbers/632898#632898 9 Answer by John Feminella for Why is it hard for a program to generate random numbers? John Feminella 2009-03-11T00:42:23Z 2009-03-11T00:42:23Z <p>Here's my attempt at explaining randomness at an approximately eighth-grade level. Hope your kids find it useful!</p> <p>Surprising as it may seem, <strong>a computer is not very smart.</strong> Computers must follow their instructions blindly, and are therefore completely predictable. A computer that doesn't follow its instructions in this manner is, in fact, broken! We want computers to do exactly what we tell them.</p> <p>That's precisely what makes it hard to do things randomly. Computers must be told a sequence of instructions on how to generate random numbers. But that's not really random, because if you gave anybody else the instructions and the same starting point, they could come up with the same answers. So computers can't be truly random just by following instructions.</p> http://stackoverflow.com/questions/632873/why-is-it-hard-for-a-program-to-generate-random-numbers/632904#632904 3 Answer by Thomas L Holaday for Why is it hard for a program to generate random numbers? Thomas L Holaday 2009-03-11T00:43:58Z 2009-03-11T00:43:58Z <p>"Kids, unless they're broken, computers never lie, and they always do what you tell them to do. Even when we are disappointed by the results, it always turns out that they were doing what they were told to do with complete fidelity. They can only do two things: add one and one, and move a number from one place to another. If you want them to produce random numbers, you need to explain to them how to do that in terms of adding one and one and moving. Once you have explained that, the results will not be random."</p> http://stackoverflow.com/questions/632873/why-is-it-hard-for-a-program-to-generate-random-numbers/632907#632907 2 Answer by Neil Butterworth for Why is it hard for a program to generate random numbers? Neil Butterworth 2009-03-11T00:45:36Z 2009-03-11T00:45:36Z <p>Because the only true source of randomness exists at the quantum level. With suitable hardware assists, computers can access this level. for example, they can sample the decay of a radioactve isotope or the noise from a thermionic valve. But your basic PC doesn't come with this cool stuff.</p> http://stackoverflow.com/questions/632873/why-is-it-hard-for-a-program-to-generate-random-numbers/632922#632922 0 Answer by Ash for Why is it hard for a program to generate random numbers? Ash 2009-03-11T00:51:42Z 2009-03-11T00:51:42Z <p>As surprising as it may seem, it is difficult to get a computer to do something by chance. A computer follows its instructions blindly and is therefore completely predictable. (A computer that doesn't follow its instructions in this manner is broken.) There are two main approaches to generating random numbers using a computer: Pseudo-Random Number Generators (PRNGs) and True Random Number Generators (TRNGs).</p> http://stackoverflow.com/questions/632873/why-is-it-hard-for-a-program-to-generate-random-numbers/632923#632923 0 Answer by Frank Schwieterman for Why is it hard for a program to generate random numbers? Frank Schwieterman 2009-03-11T00:52:54Z 2009-03-11T00:52:54Z <p>Its not hard, here's a couple for free: 12, 1400, 397.6</p> http://stackoverflow.com/questions/632873/why-is-it-hard-for-a-program-to-generate-random-numbers/632928#632928 0 Answer by tvanfosson for Why is it hard for a program to generate random numbers? tvanfosson 2009-03-11T00:55:18Z 2009-03-11T00:55:18Z <p>Actually, on most modern computers it's not hard to produce numbers that are "random enough" for most purposes. As others have noted, the critical thing is having a source of randomness. You can't just write a program that will produce randomness algorithmically, but you can observe randomness in the various activities of most computers of reasonable complexity, i.e., the ones we typically think of when writing programs. One such source is timing data of interrupts from various system devices.</p> <p>At one time many computers had no way to get at this data and could only offer pseudorandomness, that is, a random, but repeatable distribution of numbers based on a particular seed. For many purposes this is sufficient -- choosing a different seed each time results in good enough randomness. For other purposes, such as encryption, this isn't strong enough and you need some randomness to start with that isn't repeatable or predictable. Today, most computers (with the exception of embedded devices, perhaps) are sophisticated enough to have a source of randomness that can generate encryption-strength random numbers. For instance, Linux has <a href="http://en.wikipedia.org/wiki/Urandom" rel="nofollow">/dev/random</a> and the .NET framework supports the cryptographically strong <a href="http://msdn.microsoft.com/en-us/library/system.security.cryptography.randomnumbergenerator.aspx" rel="nofollow">RandomNumberGenerator</a> class which has a number of implementations.</p> http://stackoverflow.com/questions/632873/why-is-it-hard-for-a-program-to-generate-random-numbers/632929#632929 0 Answer by Frank Schwieterman for Why is it hard for a program to generate random numbers? Frank Schwieterman 2009-03-11T00:55:26Z 2009-03-11T00:55:26Z <p>Its probably helpful to distinguish between a number that is hard to predict (which a computer can create) from something that is not deterministic (which is a bit tougher for computers, and theoretically, any physical being).</p> http://stackoverflow.com/questions/632873/why-is-it-hard-for-a-program-to-generate-random-numbers/632936#632936 14 Answer by Cesar for Why is it hard for a program to generate random numbers? Cesar 2009-03-11T00:57:12Z 2009-03-11T00:57:12Z <p><img src="http://farm4.static.flickr.com/3175/3005273787%5F29661699de%5Fo.jpg" alt="alt text" /></p> http://stackoverflow.com/questions/632873/why-is-it-hard-for-a-program-to-generate-random-numbers/632937#632937 0 Answer by seuvitor for Why is it hard for a program to generate random numbers? seuvitor 2009-03-11T00:57:38Z 2009-03-11T00:57:38Z <p>It's easy to come up with an algorithm that generates unexpected numbers, that appear random in some sense. But to design an algorithm that generates true random numbers, well, that's hard.</p> <p>Imagine designing an algorithm to simulate a dice roll. You can easily formulate some procedure to generate different numbers on each iteration. But can you <em>guarantee</em> that, in the long run (I mean, up to the infinity), the amount of times that 6 came out will be the same as any other number? When designing a good random number generator, that's the kind of commitment that you have to assume. You have to provide strong guarantees (i.e. mathematical proofs) about the randomness, if the application (e.g. lottery) requires it.</p> http://stackoverflow.com/questions/632873/why-is-it-hard-for-a-program-to-generate-random-numbers/632941#632941 3 Answer by Kevin Conner for Why is it hard for a program to generate random numbers? Kevin Conner 2009-03-11T01:00:59Z 2009-03-11T01:00:59Z <p>Generating random numbers on a computer is like playing "Eenie meenie miney moe" when choosing who's It first in a game of tag. On the surface it does look random, but when you get into the details, it's completely deterministic. It's hard to make eenie meenie miney moe into a scheme that a person really can't predict the outcome of.</p> <p>Also there's some difficulties with getting the distribution nice and even.</p> http://stackoverflow.com/questions/632873/why-is-it-hard-for-a-program-to-generate-random-numbers/632945#632945 0 Answer by Juliano for Why is it hard for a program to generate random numbers? Juliano 2009-03-11T01:03:23Z 2009-03-11T01:03:23Z <p>It is relevant to note that <a href="http://en.wikipedia.org/wiki/Random%5Fnumber%5Fgenerator%5Fattack#Human%5Fgeneration%5Fof%5Frandom%5Fquantities" rel="nofollow">humans perform very poorly at generating random numbers</a>. Computers are worse because they just follow a strict set commands. Humans can only generate good (pseudo) random numbers when following an algorithm, a set of commands. Computers are the same.</p> <p>Although it should be noted that computers can gather entropy from the "environment" connected to it, like keyboard and mouse actions, what aids in generating random numbers (either directly or by seeding a PRNG).</p> http://stackoverflow.com/questions/632873/why-is-it-hard-for-a-program-to-generate-random-numbers/632949#632949 3 Answer by Quibblesome for Why is it hard for a program to generate random numbers? Quibblesome 2009-03-11T01:04:01Z 2009-03-11T10:11:15Z <p>Because is no such thing as a random number.</p> <p>Random is a human concept that we use when we cannot comprehend data and do not understand it. If we are to believe that science will ultimately lead to an understanding of how everything works then surely everything <em>is</em> deterministic. </p> <p>Take away the human and there is no random there is only "this". It happens because it happens, not because it is random.</p> http://stackoverflow.com/questions/632873/why-is-it-hard-for-a-program-to-generate-random-numbers/633008#633008 0 Answer by Stefan for Why is it hard for a program to generate random numbers? Stefan 2009-03-11T01:41:23Z 2009-03-11T01:41:23Z <p>To make the computer generate a random number, the computer has to have a source of randomness to start with. </p> <p>It has to be feeded a seed that can't be expected or calculated by just looking at the seed, if the seed comes from a clock then it can be predicted or calculated by knowing the time, if the seed comes from like filming a lavalamp and get numbers from the picture stream then it's harder to just look at the seed to know what next number will be.</p> <p>The computer does not have an built in lava lamp to generate that randomness, thats whats make it hard, we have to substitute real randomness with some input that exists in the computer, maybe by logging passing tcpip-packets or other things, but its not many ways to get that randomness sources in.</p> http://stackoverflow.com/questions/632873/why-is-it-hard-for-a-program-to-generate-random-numbers/633085#633085 8 Answer by MrValdez for Why is it hard for a program to generate random numbers? MrValdez 2009-03-11T02:10:53Z 2009-03-11T02:25:09Z <p>Here's a kid friendly explanation:</p> <ol> <li><p>Get a Dice (the number of sides doesn't matter)</p></li> <li><p>Write these down on a piece of paper:</p> <ul> <li>Move right</li> <li>Move up</li> <li>Move up</li> <li>Turn the dice over</li> <li>Move down</li> <li>Move right</li> </ul></li> <li><p>Show them the dice and paper. Explain that the dice represents the computer and the paper represent the math or algorithm that tells the computer what number it will return.</p></li> <li><p>Now, roll the dice. Tell them that you are "seeding" or asking the computer to start at a random dice position.</p></li> <li><p>Follow each step in the paper (move right) by moving the dice.</p> <ul> <li>Let's say that you threw a 6 sided die and it was seeded at 5. By moving right, you get a 4.</li> </ul></li> <li><p>Explain that the computer must start with a starting value. This could be given by any number of sources such as the date or mouse movement. Show them that how they throw the dice determines the starting value.</p></li> <li><p>Explain that the piece of paper is how the computer get the next number. Tell them that the instructions on the paper can be changed as easily as the algorithm for the random generator can be changed by the programmer.</p></li> <li><p>Have fun showing them the various possibilities that is only limited by their imaginations.</p></li> </ol> <p>Now for the answer to your question:</p> <blockquote> <p>Tell them that when a good mathematician knows the starting value and what step the computer is currently at, the mathematician can tell what is the next value of the random number. </p> </blockquote> <ol> <li>Ask the child were to hide the paper and throw the dice.</li> <li>Then ask the child to follow the steps on the paper, you then write down how he gets the next random number.</li> <li>Afterwards, show them your paper. Now that you have a copy of their random number generator, its easy for anyone else to "guess" the next random to come out.</li> </ol> <p>No matter how creative the child is with their algorithm, you should still be able to deduce their algorithm. Tell your child that in the computer world, nothing is hidden and just by observation, even if its just the numbers that was observed, the random number algorithm can be discovered.</p> <p>...as a side effect, if the child was able to come up with a good algorithm that confused you, in which you can't deduce the next sequence, then you have a bright child. :D</p> http://stackoverflow.com/questions/632873/why-is-it-hard-for-a-program-to-generate-random-numbers/633128#633128 1 Answer by John Rasch for Why is it hard for a program to generate random numbers? John Rasch 2009-03-11T02:33:31Z 2009-03-11T02:33:31Z <p>A simple explanation for the children:</p> <p>The definition of randomness is a philosophical and mathematical question, beyond the scope of this answer, but by definition there is no such thing as a "random" number. In a metaphysical sense, a number is only random in sequential form; however, there is a probability that a sequence follows certain statistical distributions depending on the sample size. A random number generator (in our case a pseudo-random number generator, or <em>PRNG</em>) is simply a device to produce a quasi-random sequence of numbers that we can only estimate (based on the given probability inherent within the sequence) to be random.</p> <p>You should explain to the children that programs can only mimic these devices using complex mathematical formulas (which guarantee a lack of "randomness" by definition because they are a result of some function, or procedural algorithm). Typically, rigorous statistical analysis is necessary in order to differentiate the use of a quantum hardware PRNG (use this as an opportunity to explain to your kids the Heisenberg Principle!) and that of a strong software PRNG.</p> http://stackoverflow.com/questions/632873/why-is-it-hard-for-a-program-to-generate-random-numbers/634003#634003 0 Answer by sharptooth for Why is it hard for a program to generate random numbers? sharptooth 2009-03-11T10:38:28Z 2009-03-11T10:44:34Z <p>Computers just don't have suitable hardware. Ordinary computer's hardware is meant to be deterministic. With suitable hardware <a href="http://www.intel.com/design/software/drivers/platform/security.htm" rel="nofollow">like mentioned here</a> random numbers are not a problem at all.</p> http://stackoverflow.com/questions/632873/why-is-it-hard-for-a-program-to-generate-random-numbers/1325226#1325226 0 Answer by Gordon Potter for Why is it hard for a program to generate random numbers? Gordon Potter 2009-08-24T22:56:08Z 2009-08-24T22:56:08Z <p>Awhile back I came across the "Dice-O-Matic"</p> <p><a href="http://GamesByEmail.com/News/DiceOMatic" rel="nofollow">http://GamesByEmail.com/News/DiceOMatic</a></p> <p>Kind of interesting real world application of the problem.</p> http://stackoverflow.com/questions/632873/why-is-it-hard-for-a-program-to-generate-random-numbers/1325241#1325241 2 Answer by mgb for Why is it hard for a program to generate random numbers? mgb 2009-08-24T23:01:48Z 2009-08-24T23:01:48Z <p>Had to be done really</p> <p><img src="http://imgs.xkcd.com/comics/random%5Fnumber.png" alt="alt text" /></p>