active questions tagged random-number-generator+algorithm - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T13:02:42Z http://stackoverflow.com/feeds/tag/random-number-generator+algorithm http://www.creativecommons.org/licenses/by-nc/2.5/rdf 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/1626023/c-normal-random-number 3 C# Normal Random Number J.Hendrix 2009-10-26T17:12:10Z 2009-10-26T21:50:58Z <p>I would like to create a function that accepts <code>Double mean</code>, <code>Double deviation</code> and returns a random number with a normal distribution. </p> <p>Example: if I pass in 5.00 as the mean and 2.00 as the deviation, 68% of the time I will get a number between 3.00 and 7.00</p> <p>My statistics is a little weak…. Anyone have an idea how I should approach this? My implementation will be C# 2.0 but feel free to answer in your language of choice as long as the math functions are standard.</p> <p>I think <a href="http://stackoverflow.com/questions/1197321/need-help-generating-discrete-random-numbers-from-distribution/1197393#1197393">this</a> might actually be what I am looking for. Any help converting this to code?</p> <p>Thanks in advance for your help.</p> http://stackoverflow.com/questions/90184/pseudo-random-generator-assembler 4 Pseudo random generator, Assembler TCJ 2008-09-18T05:07:49Z 2009-10-18T12:35:33Z <p>Which "random" numbers generator algorithm is the best for an assembler program? Something easy, not a long piece of code.</p> <p>Not external library allowed, just trying to keep it simple.</p> <p>@<a href="#90284" rel="nofollow">Bill Barksdale</a>: I'm looking for an easy algorithm to use in a assembler program assigned in a course. </p> http://stackoverflow.com/questions/1557208/generating-random-number-between-1-1-in-c 0 Generating random number between [-1, 1] in C? itsaboutcode 2009-10-12T22:09:12Z 2009-10-15T19:41:01Z <p>I have seen many questions on SO about this particular subject but none of them has any answer for me, so I thought of asking this question.</p> <p>I wanted to generate a random number between [-1, 1]. How I can do this? </p> http://stackoverflow.com/questions/1428110/non-repeating-pseudo-random-number-stream-with-clumping 0 Non-repeating pseudo random number stream with 'clumping' OldCodeOrder 2009-09-15T16:05:15Z 2009-10-07T14:07:57Z <p>I'm looking for a method to generate a pseudorandom stream with a somewhat odd property - I want clumps of nearby numbers. </p> <p>The tricky part is, I can only keep a limited amount of state no matter how large the range is. There are algorithms that give a sequence of results with minimal state (linear congruence?) </p> <p>Clumping means that there's a higher probability that the next number will be close rather than far. </p> <p>Example of a desirable sequence (mod 10): 1 3 9 8 2 7 5 6 4<br /> I suspect this would be more obvious with a larger stream, but difficult to enter by hand.</p> <p>Update:<br /> I don't understand why it's impossible, but yes, I am looking for, as Welbog summarized:</p> <ul> <li>Non-repeating </li> <li>Non-Tracking </li> <li>"Clumped" </li> </ul> http://stackoverflow.com/questions/1474382/a-good-and-simple-measure-of-randomness 7 A Good and SIMPLE Measure of Randomness lkessler 2009-09-24T21:56:05Z 2009-09-27T17:05:43Z <p>What is the best algorithm to take a long sequence of integers (say 100,000 of them) and return a measurement of how random the sequence is?</p> <p>The function should return a single result, say 0 if the sequence is not all all random, up to, say 1 if perfectly random. It can give something in-between if the sequence is somewhat random, e.g. 0.95 might be a reasonably random sequence, whereas 0.50 might have some non-random parts and some random parts.</p> <p>If I were to pass the first 100,000 digits of Pi to the function, it should give a number very close to 1. If I passed the sequence 1, 2, ... 100,000 to it, it should return 0.</p> <p>This way I can easily take 30 sequences of numbers, identify how random each one is, and return information about their relative randomness.</p> <p>Is there such an animal?</p> http://stackoverflow.com/questions/426821/what-type-of-random-number-generator-is-used-in-the-gaming-industry 8 What Type of Random Number Generator is Used in the Gaming Industry? dsimcha 2009-01-09T02:09:51Z 2009-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/910215/need-for-predictable-random-generator 66 Need for predictable random generator Thinker 2009-05-26T11:31:40Z 2009-07-27T18:12:00Z <p>I'm a web-game developer and I got a problem with random numbers. Let's say that a player has 20% chance to get a critical hit with his sword. That means, 1 out of 5 hits should be critical. The problem is I got very bad real life results -- sometimes players get 3 crits in 5 hits, sometimes none in 15 hits. Battles are rather short (3-10 hits) so it's important to get good random distribution.</p> <p>Currently I use PHP mt_rand(), but we are just moving our code to C++, so I want to solve this problem in our game's new engine.</p> <p>I don't know if the solution is some uniform random generator, or maybe to remember previous random states to force proper distribution.</p> http://stackoverflow.com/questions/1041585/fast-generation-of-random-numbers-that-appear-random 1 Fast generation of random numbers that appear random... James Richards 2009-06-25T00:11:39Z 2009-06-27T12:15:28Z <p>I am looking for an efficient way to generate numbers that a human would perceive as being random. Basically, I think of this as avoiding long sequences of 0 or 1 bits. I expect humans to be viewing the bit pattern, and a very low powered cpu should be able to calculate near a thousand of these per second.</p> <p>There are two different concepts that I can think of to do this, but I am lost finding a efficient way of accomplishing them. </p> <ol> <li><p>Generate a random number with a fixed number of one bits. For a 32-bit random number, this requires up to 31 random numbers, using the Knuth selection algorithm. is there a more efficient way to generate a random number with some number of bits set? Unfortunately, 0000FFFF doesn't look very random.</p></li> <li><p>Some form of "part-wise' density seems like it'd look better - but I can't come up with a clear way of doing so - I'd imagine going through each chunk, and calculate how far it is from the ideal density, and try to increase the bit density of the next chunk. This sounds complex.</p></li> </ol> <p>Hopefully there's another algorithm that I haven't thought about for this. Thanks in advance for your help. </p> <p>[EDIT] I should be clearer with what I ask -<br /> (a) Is there an efficient way to generate random numbers without "long" runs of a single bit, where "long" is a tunable parameter?<br /> (b) Other suggestions on what would make a number appear to be less-random? </p> http://stackoverflow.com/questions/872563/efficient-algorithm-to-randomly-select-items-with-frequency 5 Efficient algorithm to randomly select items with frequency rampion 2009-05-16T14:48:41Z 2009-05-18T03:47:14Z <p>Given an array of <code>n</code> word-frequency pairs:</p> <pre>[ (w<sub>0</sub>, f<sub>0</sub>), (w<sub>1</sub>, f<sub>1</sub>), ..., (w<sub>n-1</sub>, f<sub>n-1</sub>) ]</pre> <p>where <code>w<sub>i</sub></code> is a word, <code>f<sub>i</sub></code> is an integer frequencey, and the sum of the frequencies <code>&sum;f<sub>i</sub> = m</code>,</p> <p>I want to use a pseudo-random number generator (pRNG) to select <code>p</code> words <code>w<sub>j<sub>0</sub></sub>, w<sub>j<sub>1</sub></sub>, ..., w<sub>j<sub>p-1</sub></sub></code> such that the probability of selecting any word is proportional to its frequency:</p> <pre>P(w<sub>i</sub> = w<sub>j<sub>k</sub></sub>) = P(i = j<sub>k</sub>) = f<sub>i</sub> / m</pre> <p>(Note, this is selection with replacement, so the same word <em>could</em> be chosen every time).</p> <p>I've come up with three algorithms so far:</p> <ol> <li><p>Create an array of size <code>m</code>, and populate it so the first <code>f<sub>0</sub></code> entries are <code>w<sub>0</sub></code>, the next <code>f<sub>1</sub></code> entries are <code>w<sub>1</sub></code>, and so on, so the last <code>f<sub>p-1</sub></code> entries are <code>w<sub>p-1</sub></code>.<pre>[ w<sub>0</sub>, ..., w<sub>0</sub>, w<sub>1</sub>,..., w<sub>1</sub>, ..., w<sub>p-1</sub>, ..., w<sub>p-1</sub> ]</pre> Then use the pRNG to select <code>p</code> indices in the range <code>0...m-1</code>, and report the words stored at those indices.<br /> This takes <code>O(n + m + p)</code> work, which isn't great, since <code>m</code> can be much much larger than n.</p></li> <li><p>Step through the input array once, computing<pre>m<sub>i</sub> = &sum;<sub>h&le;i</sub>f<sub>h</sub> = m<sub>i-1</sub> + f<sub>i</sub></pre> and after computing <code>m<sub>i</sub></code>, use the pRNG to generate a number <code>x<sub>k</sub></code> in the range <code>0...m<sub>i</sub>-1</code> for each <code>k</code> in <code>0...p-1</code> and select <code>w<sub>i</sub></code> for <code>w<sub>j<sub>k</sub></sub></code> (possibly replacing the current value of <code>w<sub>j<sub>k</sub></sub></code>) if <code>x<sub>k</sub> &lt; f<sub>i</sub></code>.<br /> This requires <code>O(n + np)</code> work.</p></li> <li>Compute <code>m<sub>i</sub></code> as in algorithm 2, and generate the following array on n word-frequency-partial-sum triples:<pre>[ (w<sub>0</sub>, f<sub>0</sub>, m<sub>0</sub>), (w<sub>1</sub>, f<sub>1</sub>, m<sub>1</sub>), ..., (w<sub>n-1</sub>, f<sub>n-1</sub>, m<sub>n-1</sub>) ]</pre> and then, for each k in <code>0...p-1</code>, use the pRNG to generate a number <code>x<sub>k</sub></code> in the range <code>0...m-1</code> then do binary search on the array of triples to find the <code>i</code> s.t. <code>m<sub>i</sub>-f<sub>i</sub> &le; x<sub>k</sub> &lt; m<sub>i</sub></code>, and select <code>w<sub>i</sub></code> for <code>w<sub>j<sub>k</sub></sub></code>.<br /> This requires <code>O(n + p log n)</code> work.</li> </ol> <p><strong>My question is</strong>: Is there a more efficient algorithm I can use for this, or are these as good as it gets?</p> http://stackoverflow.com/questions/693880/create-random-number-sequence-with-no-repeats 10 Create Random Number Sequence with No Repeats Unknown 2009-03-29T00:40:36Z 2009-04-03T12:39:09Z <h3>Duplicate:</h3> <blockquote> <p><a href="http://stackoverflow.com/questions/196017/unique-random-numbers-in-o1">Unique random numbers in O(1)?</a></p> </blockquote> <p>I want an pseudo random number generator that can generate numbers with no repeats in a random order.</p> <p>For example:</p> <p>random(10)</p> <p>might return 5, 9, 1, 4, 2, 8, 3, 7, 6, 10</p> <p>Is there a better way to do it other than making the range of numbers and shuffling them about, or checking the generated list for repeats?</p> <p><hr /></p> <h3>Edit:</h3> <p>Also I want it to be efficient in generating big numbers without the entire range.</p> <p><hr /></p> <h3>Edit:</h3> <p>I see everyone suggesting shuffle algorithms. But if I want to generate large random number (1024 byte+) then that method would take alot more memory than if I just used a regular RNG and inserted into a Set until it was a specified length, right? Is there no better mathematical algorithm for this.</p> http://stackoverflow.com/questions/37702/true-random-number-generator 7 True random number generator goldenmean 2008-09-01T10:25:46Z 2009-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/613361/generating-random-number-with-certain-rate 0 Generating Random Number with Certain Rate neversaint 2009-03-05T02:06:06Z 2009-03-06T16:41:52Z <p>Dear all,</p> <p>I have the following C++ code that tried to generate a random number. The <a href="http://stackoverflow.com/questions/601727/generating-synthetic-dna-sequence-with-subtitution-rate/601750#601750">idea</a> is we given some rate "x" and number of runs; we hope it would generate the number as many as (x * number of runs times).</p> <pre><code>#include &lt;iostream&gt; #include &lt;vector&gt; #include &lt;fstream&gt; #include &lt;sstream&gt; #include &lt;time.h&gt; using namespace std; int main () { // Initialize Random Seed srand (time(NULL)); string line; double SubsRate = 0.003; double nofRuns = 1000000; for (unsigned i=0; i &lt; nofRuns ; i++) { int toSub = rand() % 1000 + 1; if (toSub == (SubsRate * 1000)) { cout &lt;&lt; toSub &lt;&lt; " Sub" &lt;&lt; endl; } } return 0; } </code></pre> <p>Hence if we run the code above K times with this command:</p> <pre><code>$ a=0 ; while test $a -lt 10 ; do ./MyCode | wc -l ; a=`expr $a + 1` ; done </code></pre> <p>We expect it to generate number "3" as many as ~3000 times in 1M runs. But some how my code above my code above only generate number "3" as many as 900 ~ 1000 times.</p> <p>How can I improve on my code above?</p> http://stackoverflow.com/questions/239063/pseudo-random-generator-with-same-output 4 Pseudo Random Generator with same output BlueGene 2008-10-27T04:13:30Z 2008-11-25T22:26:29Z <p>I came across an article about Car remote entry system at <a href="http://auto.howstuffworks.com/remote-entry2.htm" rel="nofollow">http://auto.howstuffworks.com/remote-entry2.htm</a> In the third bullet, author says,</p> <blockquote> <p>Both the transmitter and the receiver use the same pseudo-random number generator. When the transmitter sends a 40-bit code, it uses the pseudo-random number generator to pick a new code, which it stores in memory. On the other end, when the receiver receives a valid code, it uses the same pseudo-random number generator to pick a new one. In this way, the transmitter and the receiver are synchronized. The receiver only opens the door if it receives the code it expects.</p> </blockquote> <p>Is it possible to have two PRNG functions producing same random numbers at the same time? </p>