active questions tagged random-number-generator+theory - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T09:44:36Z http://stackoverflow.com/feeds/tag/random-number-generator+theory http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/300854/alternative-entropy-sources 5 Alternative Entropy Sources Peter C. 2008-11-19T02:35:42Z 2009-12-09T23:35:09Z <p>Okay, I guess this is entirely subjective and whatnot, but I was thinking about entropy sources for random number generators. It goes that most generators are seeded with the current time, correct? Well, I was curious as to what other sources could be used to generate perfectly valid, random (The loose definition) numbers.</p> <p>Would using multiple sources (Such as time + current HDD seek time [We're being fantastical here]) together create a "more random" number than a single source? What are the logical limits of the amount of sources? How much is really enough? Is the time chosen simply because it is convenient?</p> <p>Excuse me if this sort of thing is not allowed, but I'm curious as to the theory behind the sources.</p> http://stackoverflow.com/questions/137340/could-a-truly-random-number-be-generated-using-pings-to-psuedo-randomly-selected 36 Could a truly random number be generated using pings to psuedo-randomly selected IP addresses? _ande_turner_ 2008-09-26T01:57:39Z 2009-11-15T10:24:40Z <p>The question posed came about during a 2nd Year Comp Science lecture while discussing the impossibility of generating numbers in a deterministic computational device.</p> <p>This was the only suggestion which didn't depend on non-commodity-class hardware.</p> <p>Subsequently nobody would put their reputation on the line to argue definitively for or against it. </p> <p>Anyone care to make a stand for or against. If so, how about a mention as to a possible implementation?</p> http://stackoverflow.com/questions/56411/how-to-test-randomness-case-in-point-shuffling 14 How to test randomness (case in point - Shuffling) Tnilsson 2008-09-11T12:27:22Z 2008-10-05T05:54:34Z <p>First off, this question is ripped out from <a href="http://beta.stackoverflow.com/questions/56215/interesting-interview-questions#56291" rel="nofollow">this</a> question. I did it because I think this part is bigger than a sub-part of a longer question. If it offends, please pardon me.</p> <p>Assume that you have a algorithm that generates randomness. Now how do you test it? Or to be more direct - Assume you have an algorithm that shuffles a deck of cards, how do you test that it's a perfectly random algorithm?</p> <p>To add some theory to the problem - A deck of cards can be shuffled in 52! (52 factorial) different ways. Take a deck of cards, shuffle it by hand and write down the order of all cards. What is the probability that you would have gotten exactly that shuffle? Answer: 1 / 52!.</p> <p>What is the chance that you, after shuffling, will get A, K, Q, J ... of each suit in a sequence? Answer 1 / 52!</p> <p>So, just shuffling once and looking at the result will give you absolutely no information about your shuffling algorithms randomness. Twice and you have more information, Three even more...</p> <p>How would you black box test a shuffling algorithm for randomness?</p>