active questions tagged random-number-generator+prng - Stack Overflowmost recent 30 from stackoverflow.com2009-12-05T11:30:54Zhttp://stackoverflow.com/feeds/tag/random-number-generator+prnghttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1692003/pseudorandom-sequence-generator-not-just-a-number-generator1Pseudorandom Sequence Generator not just a number generator.Sam Washburn2009-11-07T04:35:13Z2009-11-07T06:45:57Z
<p>I need an algorithm that pretty much will turn a unix timestamp into a suitably random number, so that if I "play back" the timestamps I get the same random numbers.</p>
<p>And here's what I mean by suitably:</p>
<ol>
<li>Most humans will not detect a loop or pattern in the random numbers.</li>
<li>It need not be cryptographically secure.</li>
<li>All numbers must be capable of being generated. (I've found that LFSR don't do this)</li>
<li>The numbers are 32 bit integers</li>
</ol>
<p>And I would like it to be fairly fast.</p>
<p>So far my idea is to just seed a PRNG over and over, but I'm not sure if that's the best way to handle this.</p>
<p>Any thoughts and ideas will be much appreciated.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/426821/what-type-of-random-number-generator-is-used-in-the-gaming-industry8What Type of Random Number Generator is Used in the Gaming Industry?dsimcha2009-01-09T02:09:51Z2009-08-06T13:24:31Z
<p>Given the extremely high requirements for unpredictability to prevent casinos from going bankrupt, what random number generation algorithm and seeding scheme is typically used in devices like slot machines, video poker machines, etc.?</p>
<p>EDIT: Related questions:</p>
<ul>
<li><a href="http://stackoverflow.com/questions/203382/do-stateless-random-number-generators-exist">http://stackoverflow.com/questions/203382/do-stateless-random-number-generators-exist</a></li>
<li><a href="http://stackoverflow.com/questions/37702/true-random-number-generator">http://stackoverflow.com/questions/37702/true-random-number-generator</a></li>
<li><a href="http://stackoverflow.com/questions/300854/alternative-entropy-sources">http://stackoverflow.com/questions/300854/alternative-entropy-sources</a></li>
</ul>
http://stackoverflow.com/questions/37702/true-random-number-generator7True random number generator goldenmean2008-09-01T10:25:46Z2009-03-07T00:17:10Z
<p>Sorry for this not being a "real" question, but Sometime back i remember seeing a post here about randomizing a randomizer randomly to generate truly random numbers, not just pseudo random. I dont see it if i search for it.</p>
<p>Does anybody know about that article?</p>
http://stackoverflow.com/questions/203382/do-stateless-random-number-generators-exist8Do stateless random number generators exist?Gili2008-10-15T01:02:45Z2009-03-07T00:15:53Z
<p>Is there a difference between generating multiple numbers using a single random number generator (RNG) versus generating one number per generator and discarding it? Do both implementations generate numbers which are equally random? Is there a difference between the normal RNGs and the secure RNGs for this?</p>
<p>I have a web application that is supposed to generate a list of random numbers on behalf of clients. That is, the numbers should appear to be random from each client's point of view. Does this mean I need retain a separate random RNG per client session? Or can I share a single RNG across all sessions? Or can I create and discard a RNG on a per-request basis?</p>
<p><strong>UPDATE</strong>: This question is related to <a href="http://stackoverflow.com/questions/471157/is-a-subset-of-a-random-sequence-also-random">http://stackoverflow.com/questions/471157/is-a-subset-of-a-random-sequence-also-random</a></p>
http://stackoverflow.com/questions/616434/do-prng-need-to-be-thread-safe2Do PRNG need to be thread safe?BCS2009-03-05T20:13:25Z2009-03-05T22:13:44Z
<p>As long as concurrent calls don't cause seg-v's or return the same value, what reasons are there for preventing race conditions and data corruption in <a href="http://en.wikipedia.org/wiki/Pseudorandom%5Fnumber%5Fgenerator" rel="nofollow">PRNGs</a> when those error's primary effects are unpredictable results and that is the point of a PRNG?</p>
<p><hr /></p>
<p><em>Edit:</em> are there any PRNG that wouldn't suffer under race conditions and data corruption?</p>
http://stackoverflow.com/questions/512548/create-programmatic-colour-picker2Create programmatic colour pickerj pimmel2009-02-04T18:01:03Z2009-02-05T18:14:46Z
<p>How would one create a <strong><em>deterministic</em></strong> Javascript HTML colour picker which given arguments of how many colours are desired returns an array of HTML hex colour codes, ie:</p>
<pre><code> function createColours(numColours) {
return [/* colours array of size numColours */]
}
</code></pre>
<p>The colours themselves can be <em>chosen / generated</em> randomly, but the method must guarantee that colours chosen are always the same between calls and always in the same order in series.</p>
<p>For example, if the series of colours decided on by the function started with the following 8:</p>
<pre><code> "#47092E", "#CC2A43", "#00C66B", "#BC1300", "#667E00", "#795800", "#FFD245", "#6EFFAD", etc, etc
</code></pre>
<p>The function would behave with the following consistent responses across separate method invocations on the client</p>
<pre><code> ["#47092E", "#CC2A43"] == createColours(2);
["#47092E", "#CC2A43", "#00C66B", "#BC1300", "#667E00"] == createColours(5);
["#47092E"] == createColours(1);
["#47092E", "#CC2A43", "#00C66B", "#BC1300", "#667E00", "#795800", "#FFD245", "#6EFFAD", #and 49 others#] == createColours(57);
</code></pre>
<p><strong>Note</strong>: The colours are not defined as a variable in advance; the method might be asked for 345 colours, all of which it would be required to generate by whatever suitable means.</p>
<p>The problem to be solved is - <strong>first and foremost</strong> - how would you create a capability within the method to generate the n HEX colour values consistently the same each time also preserving the sequence</p>