active questions tagged pseudo-random-numbers - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T17:43:55Z http://stackoverflow.com/feeds/tag/pseudo-random-numbers http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1685339/verify-knuth-shuffle-algorithm-is-as-unbiased-as-possible 1 Verify Knuth shuffle algorithm is as unbiased as possible Adam Maras 2009-11-06T04:07:38Z 2009-12-08T13:26:03Z <p>I'm implementing a <a href="http://en.wikipedia.org/wiki/Fisher%E2%80%93Yates%5Fshuffle" rel="nofollow">Knuth shuffle</a> for a C++ project I'm working on. I'm trying to get the most unbiased results from my shuffle (and I'm not an expert on (pseudo)random number generation). I just want to make sure this is the most unbiased shuffle implementation.</p> <p><code>draw_t</code> is a byte type (<code>typedef</code>'d to <code>unsigned char</code>). <code>items</code> is the count of items in the list. I've included the code for <code>random::get( draw_t max )</code> below.</p> <pre><code>for( draw_t pull_index = (items - 1); pull_index &gt; 1; pull_index-- ) { draw_t push_index = random::get( pull_index ); draw_t push_item = this-&gt;_list[push_index]; draw_t pull_item = this-&gt;_list[pull_index]; this-&gt;_list[push_index] = pull_item; this-&gt;_list[pull_index] = push_item; } </code></pre> <p>The random function I'm using has been modified to eliminate <a href="http://en.wikipedia.org/wiki/Shuffling#Modulo%5Fbias" rel="nofollow">modulo bias</a>. <code>RAND_MAX</code> is assigned to <code>random::_internal_max</code>.</p> <pre><code>draw_t random::get( draw_t max ) { if( random::_is_seeded == false ) { random::seed( ); } int rand_value = random::_internal_max; int max_rand_value = random::_internal_max - ( max - ( random::_internal_max % max ) ); do { rand_value = ::rand( ); } while( rand_value &gt;= max_rand_value ); return static_cast&lt; draw_t &gt;( rand_value % max ); } </code></pre> http://stackoverflow.com/questions/1787386/improve-resolution-of-random-data 0 Improve "resolution" of random data Jeffrey Aylesworth 2009-11-24T02:20:19Z 2009-11-24T14:25:04Z <p>I've been working on an <a href="http://mpd.wikia.com/wiki/Music%5FPlayer%5FDaemon%5FWiki" rel="nofollow">MPD</a> front end in Ruby, with the ability to play a random album.</p> <pre><code>album = all[(rand*all.length).floor] </code></pre> <p>Where <code>all</code> is an array of the names of all albums in the library, chooses the album to play.</p> <p>This works, however, I find it plays some albums more than others, and sometimes very obviously (I've seen it play the same album twice in a row, more than once, my library has a few hundred albums, so this should statistically be <em>very</em> unlikely to happen), and on the other end, a lot of albums never get played.</p> <p>Is there any way that I can get a more random number? Is there a gem that implements a better random number algorithm? Do I need to change the seed?</p> http://stackoverflow.com/questions/1684817/c-what-exactly-does-rand-do 2 c++: what exactly does &rand do? Patrick Oscity 2009-11-06T01:23:51Z 2009-11-06T01:43:53Z <p>This is an excerpt of some c++ code, that i'll have to explain in detail in some days:</p> <pre><code>std::vector&lt;int&gt; vct(8, 5); std::generate(vct.begin(), vct.end(), &amp;rand); std::copy(vct.rbegin(), vct.rend(), std::ostream_iterator&lt;int&gt;(std::cout, "\n")); </code></pre> <p>i think i understand everything about it, except that tiny mystical &amp;rand. what exactly does it do? i mean obviously it produces some kind of pseudo-random-numbers, but they always remain the same. where does the &amp;rand come from? what kind of expression is it? where do the values it produces come from? i'm a bit confused…</p> <p>also, i could neither find any other occurrences of the word "rand" in the code, nor did i see any code that could have something to do with random numbers. that made me wonder, because my (very limited) experience in c++ showed, that only very few things simply work without having to be declared or included previously.</p> <p>thanks for helping out!</p> http://stackoverflow.com/questions/1672529/generating-random-numbers-from-n-to-n-in-c 3 Generating random numbers from -n to n in C lex 2009-11-04T09:07:15Z 2009-11-05T07:52:59Z <p>I want to generate random numbers from -n to n excluding 0. Can someone provide me the code in C? How to exclude 0?</p> http://stackoverflow.com/questions/1189008/intel-math-kernel-on-windows-calling-from-c-for-random-number-generation 4 Intel Math Kernel on windows, calling from c# for random number generation m3ntat 2009-07-27T15:58:39Z 2009-10-30T19:38:51Z <p>Has anyone used the <strong>Intel Math Kernel library</strong> <a href="http://software.intel.com/en-us/intel-mkl/" rel="nofollow">http://software.intel.com/en-us/intel-mkl/</a></p> <p>I am thinking of using this for <strong>Random Number generation from a C# application</strong> as we need extreme performance (1.6 trillion random numbers per day).</p> <p>Also any advice on minimising the overhead of <strong>consuming functions from this c++ code in my c#</strong> Monte Carlo simulation.</p> <ul> <li>Am about to download the Eval from the site and above and try and benchmark this from my c# app, any help much appreciated.</li> </ul> <p>Thanks</p> http://stackoverflow.com/questions/1587799/why-would-rand-return-a-negative-value-when-min-and-max-values-are-positive 0 Why would rand() return a negative value when min and max values are positive? Toytown Mafia 2009-10-19T09:46:49Z 2009-10-19T10:27:28Z <p>Hi,</p> <p>I have a simple piece of PHP code which requires a random number to be created. However, even though the input is always positive, it sometimes returns a negative output.</p> <p>Here's my debug code:</p> <pre><code>$debt = rand($this-&gt;gdp * 0.02, $this-&gt;gdp * 0.17); echo "&lt;p&gt;GDP: ".$this-&gt;gdp." rand(".$this-&gt;gdp * 0.02." , ".$this-&gt;gdp * 0.17.") = &lt;strong&gt;".$debt."&lt;/strong&gt;&lt;/p&gt;"; </code></pre> <p>Here's an example output:</p> <pre><code>GDP: 219254674605 rand(4385093492.1 , 37273294682.85) = 75276999 GDP: 345015694865 rand(6900313897.3 , 58652668127.05) = -1636353016 GDP: 90445390920 rand(1808907818.4 , 15375716456.4) = -165604705 GDP: 3412849650 rand(68256993 , 580184440.5) = 347516196 GDP: 2939111315 rand(58782226.3 , 499648923.55) = 119181875 GDP: 26369065 rand(527381.3 , 4482741.05) = 3632416 GDP: 215838135 rand(4316762.7 , 36692482.95) = 28784811 GDP: 511763530 rand(10235270.6 , 86999800.1) = 39954394 GDP: 42416245 rand(848324.9 , 7210761.65) = 3974882 GDP: 75090235 rand(1501804.7 , 12765339.95) = 5201966 </code></pre> <p>So why would a <code>rand()</code> of two positive numbers give a negative return?</p> <p>Any help would be much appreciated!</p> http://stackoverflow.com/questions/584566/pseudo-random-number-generator 7 Pseudo-random number generator Phantom73 2009-02-25T03:08:27Z 2009-10-16T16:31:26Z <p>What is the best way to create the best pseudo-random number generator? (any language works)</p> http://stackoverflow.com/questions/1554958/how-different-do-random-seeds-need-to-be 1 How different do random seeds need to be? unknown (yahoo) 2009-10-12T14:39:52Z 2009-10-12T15:48:08Z <p>Consider code like this (Python):</p> <pre><code>import random for i in [1, 2, 3, 4]: random.seed(i) randNumbers = [random.rand() for i in range(100)] # initialize a list with 100 random numbers doStuff(randNumbers) </code></pre> <p>I want to make sure that randNumbers differ significantly from one call to another. Do I need to make sure the seed numbers differ significantly between the subsequent calls, or is it sufficient that the seeds are different (no matter how)?</p> <p>To the pedants: please realize the above code is super-over-simplified </p> http://stackoverflow.com/questions/1537921/simple-pseudo-random-algorithm 1 Simple Pseudo-Random Algorithm Stefan Steinegger 2009-10-08T13:50:08Z 2009-10-08T15:20:38Z <p>I'm need a pseudo-random generator which takes a number as input and returns another number witch is reproducible and seems to be random.</p> <ul> <li>Each input number should match to exactly one output number and vice versa</li> <li>same input numbers always result in same output numbers</li> <li>sequential input numbers that are close together (eg. 1 and 2) should produce completely different output numbers (eg. 1 => 9783526, 2 => 283)</li> </ul> <p>It must not be perfect, it's just to create random but reproducible test data. </p> <p>I use C#.</p> <p><hr /></p> <p>I wrote this funny piece of code some time ago which produced something random. </p> <pre><code> public static long Scramble(long number, long max) { // some random values long[] scramblers = { 3, 5, 7, 31, 343, 2348, 89897 }; number += (max / 7) + 6; number %= max; // shuffle according to divisibility foreach (long scrambler in scramblers) { if (scrambler &gt;= max / 3) break; number = ((number * scrambler) % max) + ((number * scrambler) / max); } return number % max; } </code></pre> <p>I would like to have something better, more reliable, working with any size of number (no max argument).</p> <p>Could this probably be solved using a CRC algorithm? Or some bit shuffling stuff.</p> http://stackoverflow.com/questions/1440494/generating-a-random-seed-in-php-for-consumption-by-flash 0 Generating a random seed in PHP for consumption by Flash zombat 2009-09-17T18:18:19Z 2009-09-17T19:38:34Z <p>I'm working on a project with remote Flash developers, and they have requested that when my PHP application sets up the HTML to load their Flash object, I pass in a seed that they can use to generate random numbers with (the seed is stored so that a particular game can be replayed later).</p> <p>If you were seeding PHP's RNG, you might use the old standby <code>(double)microtime()*1000000</code>. However, it occurred to me that if I generate a seed using this method, I'd have a smaller range than if I just used a regular <code>rand()</code> or <code>mt_rand()</code> call.</p> <p>Since the number is being generated for external consumption as a seed, and not seeding my own generator, is there anything else to consider? Is there a better method than a regular old <code>mt_rand()</code>, which would give me 2^31 possible results on 32-bit architecture?</p> <p>It's not being used for anything fancy, just to throw a little randomness into a flash game.</p> http://stackoverflow.com/questions/1402696/how-deterministic-are-net-guids 1 How deterministic Are .Net GUIDs ? sipwiz 2009-09-09T23:37:14Z 2009-09-10T03:46:06Z <p>Yesterday I asked <a href="http://stackoverflow.com/questions/1397676/are-guids-generated-on-windows-2003-safe-to-use-as-session-ids">Are GUIDs generated on Windows 2003 safe to use as session IDs?</a> and the answer combined with combined with this article <a href="http://blogs.msdn.com/oldnewthing/archive/2008/06/27/8659071.aspx" rel="nofollow">GUIDs are globally unique, but substrings of GUIDs aren't</a> prompted me to think about replacing my current mechanism of using GUIDs as session ID's in cookies.</p> <p>Because it's a bit of work to make that change I decided to run a quick GUID test on my Vista PC to see if a sequence of GUIDs was obviously deterministic (what I'm worried about is if an attacker was able to get a sequence of GUIDs generated by my server they would be able to generate new matching ones).</p> <p>In Raymond Chen's article (which references this very old spec <a href="http://www.webdav.org/specs/draft-leach-uuids-guids-01.txt" rel="nofollow">UUIDs and GUIDs </a> from 1998) the GUID is made up of:</p> <ul> <li>60 bits of timestamp,</li> <li>48 bits of computer identifier,</li> <li>14 bits of uniquifier, and</li> <li>six bits are fixed </li> </ul> <p>Going by that if I generate 10 GUIDs the first 15 ASCII chars (excluding '-') are the timestamp, the next 12 ASCII chars are the computer identifier, the next 3.5 ASCII characters are random and the last 1.5 characters are fixed.</p> <p>Getting 10 GUIDs on my Vista PC using the .Net System.Guid.NewGuid() yields:</p> <pre><code>b4e95ead-3619-4dc2-9102-cf7ab0efd927 a45ee719-decd-46b2-8355-7becbe406f74 9af68d75-35a0-4907-b6ab-f15e33acfe96 bed88fa3-3209-4a19-97dd-85d5428ea5f4 123cb39b-8d81-41c6-8894-f1257a8f7606 e2b1f6b1-5791-4a18-80a9-5dc668574ecb c52aa660-2629-4659-bb83-5583081e5a1c 76eda32d-ceda-412e-8ade-30c47416e954 cbc4d45e-7281-40d2-9f90-00539b04fe98 be36524c-267c-4791-bc9e-3c20b29d7615 </code></pre> <p>The only discernible pattern from a quick visual inspection is that the 13th ASCII character is always 4.</p> <p>I'm again left wondering if relying on System.Guid to generate pseudo random session IDs is strong enough to protect a web application where cracking a session ID would be worth at most thousands of dollars?</p> <p>Update: Instead of using a GUID I now plan to generate my session ID's using the approach below. I'm converting the 384 bit random number to a 0x00 byte string so that it's suitable for use in an HTTP cookie.</p> <pre><code>RNGCryptoServiceProvider rngProvider = new RNGCryptoServiceProvider(); byte[] myKey = new byte[48]; rngProvider.GetBytes(myKey); string sessionID = null; myKey.ToList().ForEach(b =&gt; sessionID += b.ToString("x2")); Console.WriteLine(sessionID); </code></pre> http://stackoverflow.com/questions/1263731/pseudorandom-number-generator-for-noise 1 Pseudorandom number generator for noise phpscriptcoder 2009-08-12T00:50:49Z 2009-08-14T13:09:18Z <p>I'm trying to make the Perlin noise algorithm described at <a href="http://freespace.virgin.net/hugo.elias/models/m%5Fperlin.htm" rel="nofollow">http://freespace.virgin.net/hugo.elias/models/m_perlin.htm</a> using Lua. However, it doesn't work properly since Lua doesn't support bitwise operators, which are necessary for the pseudorandom number function on that page. I tried messing around with randomseed() but everything I could come up with just made really bizarre patterns. I need a pseudorandom number generator that will generate numbers between -1 and 1 when given the parameters x, y, and a random seed. Pseudocode is fine.</p> <p>Thanks!</p> http://stackoverflow.com/questions/1166408/c-mersenne-twister-random-integer-generator-implementation-sfmt-monte-carlo-si 1 c# Mersenne Twister random integer generator implementation (SFMT) monte carlo simulation m3ntat 2009-07-22T16:10:03Z 2009-07-23T14:15:39Z <p>So far I've been using the C# Mersenne Twister found here:</p> <p><a href="http://www.centerspace.net/resources.php" rel="nofollow">http://www.centerspace.net/resources.php</a></p> <p>I just discovered <strong>SFMT</strong> which is supposed to be twice as fast here:</p> <p><a href="http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/SFMT/" rel="nofollow">http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/SFMT/</a></p> <p><strong>Can anyone point me at a C# implementation of SFMT</strong>?</p> <p>My requirements are to generate an integer between (and including) 0 and 2^20 (1048576).</p> <p>I need to do this <strong>trillions of times everyday</strong> for a simulation running on a 24 hour clock so I am prepared to spend days tweaking this to perfection.</p> <p>Currently I've tweaked the Center Space Mersenne Twister by adding a new method:</p> <pre><code>public uint Next20() { return (uint)(genrand_int32() &gt;&gt; 12); } </code></pre> <p>To fit my requirements. The method <strong>genrand_int32() I'd like to produce my own version genrand_int20()</strong> that generates an integer between (and including) 0 and 2^20 to save on the <strong>cast above and shift</strong> but I don't understand the maths and exactly how to do this. Can anyone help?</p> <p>Also is using a <strong>uint going to be faster that int</strong>, or is just a matter of addressable numbers? because I only need up to 1048576, am only concerned with speed.</p> <p>Also this will be running on a <strong>Windows Server 2003 R2 SP2 (32bit) box on .net 2. Processor AMD Opertor 275 (4 core)</strong>.</p> <p>Thanks</p> http://stackoverflow.com/questions/1156511/seeding-random-in-django 2 Seeding random in django Christian 2009-07-20T23:26:16Z 2009-07-21T07:32:08Z <p>In a view in django I use <code>random.random()</code>. How often do I have to call <code>random.seed()</code>? One time for every request? One time for every season? One time while the webserver is running?</p> http://stackoverflow.com/questions/1062902/how-random-is-javascripts-math-random 5 How random is JavaScript's Math.random? Andrew Hedges 2009-06-30T10:22:07Z 2009-06-30T14:09:57Z <p>For 6 years I've had a <a href="http://andrew.hedges.name/experiments/random/" rel="nofollow">random number generator</a> page on my website. For a long time, it was the first or second result on Google for "random number generator" and has been used to decide dozens, if not hundreds of contests and drawings on discussion forums and blogs (I know because I see the referrers in my web logs and usually go take a look).</p> <p>Today, someone emailed me to tell me <strong>it may not be as random as I thought.</strong> She tried generating very large random numbers (e.g., between 1 and 10000000000000000000) and found that they were almost always the same number of digits. Indeed, I wrapped the function in a loop so I could generate thousands of numbers and sure enough, for very large numbers, <strong>the variation was only about 2 orders of magnitude.</strong></p> <p>Why?</p> <p>Here is the looping version, so you can try it out for yourself:</p> <p><a href="http://andrew.hedges.name/experiments/random/randomness.html" rel="nofollow">http://andrew.hedges.name/experiments/random/randomness.html</a></p> <p>It includes both a straightforward implementation taken from the <a href="https://developer.mozilla.org/en/Core%5FJavaScript%5F1.5%5FReference/Global%5FObjects/Math/random" rel="nofollow">Mozilla Developer Center</a> and some code from 1997 that I swiped off a web page that no longer exists (Paul Houle's "Central Randomizer 1.3"). View source to see how each method works.</p> <p>I've read <a href="http://stackoverflow.com/questions/424292">here</a> and <a href="http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/VERSIONS/JAVASCRIPT/java-script.html" rel="nofollow">elsewhere</a> about <strong>Mersenne Twister.</strong> What I'm interested in is why there wouldn't be greater variation in the results from JavaScript's built-in <strong>Math.random</strong> function. Thanks!</p> http://stackoverflow.com/questions/1061036/evenly-distributed-random-numbers-relatively-prime-to-2 2 Evenly distributed random numbers relatively prime to 2 Sufian 2009-06-29T23:13:55Z 2009-06-30T00:05:40Z <h2>A specific example</h2> <p>I need to generate a random number between 0 and 2, inclusive. (or choose randomly between -1, 0, and 1).</p> <p>The naive approach would be to do something like <code>rand() mod 3</code> where <code>rand()</code> returns an integer. This approach will not generate statistically random numbers unless the upper bound of <code>rand()</code> is not relatively prime (and the lower bound is 0).</p> <p>For instance, assuming rand() returned 2 bits (from 0 to 3, inclusive), the modulus would map:</p> <p>0 -> 0<br /> 1 -> 1<br /> 2 -> 2<br /> 3 -> 0</p> <p>This skew toward 0 would obviously be much less if more bits would be returned, but regardless, the skew would remain.</p> <h2>The generic question</h2> <p>Is there a way of generating an evenly distributed random number between 0 and n-1, inclusive, where n is relatively prime to 2?</p> http://stackoverflow.com/questions/918736/random-number-generator-that-produces-a-power-law-distribution 2 Random number generator that produces a power-law distribution? twk 2009-05-28T01:13:20Z 2009-05-28T03:03:45Z <p>I'm writing some tests for a C++ command line Linux app. I'd like to generate a bunch of integers with a power-law/long-tail distribution. Meaning, I get a some numbers very frequently but most of them relatively infrequently. </p> <p>Ideally there would just be some magic equations I could use with rand() or one of the stdlib random functions. If not, an easy to use chunk of C/C++ would be great.</p> <p>Thanks!</p> http://stackoverflow.com/questions/749912/convert-sequence-of-numbers-to-random-looking-ids 2 Convert sequence of numbers to random-looking IDs? Sean McSomething 2009-04-15T00:48:04Z 2009-04-15T02:16:29Z <p>I'm working on an application where I need to generate unique, non-sequential IDs. One of the constraints I have is that they must consist of 3 digits followed by 2 letters (only about 600k IDs). Given my relatively small pool of IDs I was considering simply generating all possible IDs, shuffling them and putting them into a database. Since, internally, I'll have a simple, sequential, ID to use, it'll be easy to pluck them out one at a time &amp; be sure I don't have any repeats.</p> <p>This doesn't feel like a very satisfying solution. Does anyone out there have a more interesting method of generating unique IDs from a limited pool than this 'lottery' method?</p> http://stackoverflow.com/questions/651834/deterministic-random-number-streams-in-c-stl 3 Deterministic Random Number Streams in C++ STL Kurisu 2009-03-16T19:32:06Z 2009-03-16T19:50:26Z <p>I want to supply a number, and then receive a set of random numbers. However, I want those numbers to be the same regardless of which computer I run it on (assuming I supply the same seed).</p> <p>Basically my question is: in C++, if I make use of <code>rand()</code>, but supply <code>srand()</code> with a user-defined seed rather than the current time, will I be able to generate the same random number stream on any computer?</p> http://stackoverflow.com/questions/617449/psuedo-random-number-generator-from-a-computable-normal-number 0 Psuedo-Random-Number-Generator from a computable normal number Devin Jeanpierre 2009-03-06T01:37:11Z 2009-03-06T01:57:28Z <p>Isn't it easily possible to construct a PRNG in such a fashion? Why is it not done?</p> <p>That is, as far as I know we could simply have a PRNG that takes a seed n. When you ask for a random bit, it takes the nth digit of the binary expansion of the computable normal number, and increments n.</p> <p>My first thought was that perhaps we hadn't found a computable normal number, but we <a href="http://www.sciencedirect.com/science?%5Fob=ArticleURL&amp;%5Fudi=B6V1G-44NM184-1F&amp;%5Fuser=994540&amp;%5Frdoc=1&amp;%5Ffmt=&amp;%5Forig=search&amp;%5Fsort=d&amp;view=c&amp;%5Facct=C000050024&amp;%5Fversion=1&amp;%5FurlVersion=0&amp;%5Fuserid=994540&amp;md5=374f53e97045c282254c5968eaba2f98" rel="nofollow">have</a>. The remaining thought is that there is a good reason not to-- either there's some property of PRNGs that I'm not familiar with that such a method would not have, or it would be impractical somehow, or is otherwise outstripped by other methods.</p> http://stackoverflow.com/questions/472662/random-numbers 2 Random numbers Jason Punyon 2009-01-23T12:02:37Z 2009-01-23T13:19:00Z <p>While thinking about <a href="http://stackoverflow.com/questions/472013/generate-a-series-of-random-numbers-that-add-up-to-n-in-c#472072">this</a> question and conversing with the participants, the idea came up that shuffling a finite set of clearly biased random numbers makes them random because you don't know the order in which they were chosen. Is this true and if so can someone point to some resources? </p> <p>EDIT: I thnk I might have been a little unclear. Suppose a bad random numbers generator. Take n values. These are biased(the rng is bad). Is there a way through shuffling to make the output of the rng over multiple trials statistically match the output of a known good rng?</p>