active questions tagged random+random-number-generator - Stack Overflowmost recent 30 from stackoverflow.com2009-12-23T09:35:55Zhttp://stackoverflow.com/feeds/tag/random+random-number-generatorhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1813055/java-util-random-peculiarity0java.util.Random peculiarityMarc Müller2009-11-28T17:01:34Z2009-11-28T18:36:55Z
<p>So here is one of the simplest things one might do:</p>
<pre><code>Random rng = new Random();
int a = rng.nextInt(10);
int b = rng.nextInt(10);
</code></pre>
<p>So far so good. But we want to avoid having equal a and b, so naturally we do:</p>
<pre><code>Random rng = new Random();
int a = rng.nextInt(10);
int b = rng.nextInt(10);
while (a == b){
b = rng.nextInt(10);
}
</code></pre>
<p>However — to my very very very big surprise — the while loop <em>never</em> exits. Never.</p>
<p>I understand that, in theory, with random numbers you <em>could</em> have an infinite sequence of one number. But I've had this code running for 10 minutes now and it hasn't exited the loop.</p>
<p>What's up with this? I'm running JDK 6 Update 16 on the latest Linux Mint.</p>
http://stackoverflow.com/questions/1641371/php-random-numbers-1PHP Random NumbersBrendan Berman2009-10-29T02:55:43Z2009-10-29T04:08:54Z
<p>i need to print out numbers 1-100 in a random order. the print statement should be:</p>
<p>echo 'h{'.$num.'}';</p>
<p>what is the shortest code to do this?</p>
http://stackoverflow.com/questions/1640258/need-a-fast-random-generator-for-c1Need a fast random generator for c++Martin Andersson2009-10-28T21:33:34Z2009-10-28T22:08:28Z
<p>Hi guys.</p>
<p>I'm trying to do some opt-3 swapping on my TSP generator for euclidian distances, and since I in many cases have more than ~500 nodes, I need to randomly select at least 1 of the 3 nodes that I want to try swapping.</p>
<p>So basically I need a random-number function that's <strong>fast</strong>. (the normal rand() is way too slow) It doesn't have to be awesome, just good <em>enough</em>.</p>
<p>EDIT:
I forgot to mention, i'm sitting at an environment where I can't add any libraries except the Standard Language Library (such as STL, iostream etc). So no boost =/</p>
http://stackoverflow.com/questions/1638237/boost-random-number-library-use-same-random-number-generator-for-different-varia0boost random number library, use same random number generator for different variate generators scandido2009-10-28T16:04:38Z2009-10-28T17:06:00Z
<p>It seems that one can use the following code to produce random numbers from a particular Normal distribution:</p>
<pre><code>float mean = 0, variance = 1;
boost::mt19937 randgen(static_cast<unsigned int>(std::time(0)));
boost::normal_distribution<float> noise(mean, variance);
variate_generator<mt19937, normal_distribution<float> > nD(randgen, noise);
float random = nD();
</code></pre>
<p>This works fine, however, I would like to be able to draw numbers from several distributions, i.e. one would think something like:</p>
<pre><code>float mean1 = 0, variance1 = 1, mean2 = 10, variance2 = 0.25;
boost::mt19937 randgen(static_cast<unsigned int>(std::time(0)));
boost::normal_distribution<float> noise1(mean1, variance1);
boost::normal_distribution<float> noise2(mean2, variance2);
variate_generator<mt19937, normal_distribution<float> > nD(randgen, noise1);
variate_generator<mt19937, normal_distribution<float> > nC(randgen, noise2);
float random1 = nD();
float random2 = nC();
</code></pre>
<p>However, the problem appears to be that nD() and nC() are generating similar sequences of numbers. I hypothesize this is because the constructor for variate_generator appears to make a copy of randgen, not use it explicitly. Thus, the same psuedo-random sequence is being generated and simply pushed through different transformations (due to the different parameters of the distributions). </p>
<p>Does anyone know if there is a way, in Boost, to create a single random number generator and use it for multiple distributions? Alternatively, does the design of the Boost random library intend users to create one random number generator per distribution? Obviously, I could write code to transform a sequence of uniform random numbers to a sequence from an arbitrary distribution, but I'm looking for something simple and already built-in to the library. </p>
<p>Thanks in advance for your help.</p>
http://stackoverflow.com/questions/1046714/what-is-a-good-random-number-generator-for-a-game11What is a good random number generator for a game?mmyers2009-06-25T23:34:43Z2009-10-23T21:36:23Z
<p>What is a good random number generator to use for a game in C++?</p>
<p>My considerations are:</p>
<ol>
<li>Lots of random numbers are needed, so speed is good.</li>
<li>Players will always complain about random numbers, but I'd like to be able to point them to a reference that explains that I really did my job. </li>
<li>Since this is a commercial project which I don't have much time for, it would be nice if the algorithm either a) was relatively easy to implement or b) had a good non-GPL implementation available.</li>
<li>I'm already using <code>rand()</code> in quite a lot of places, so any other generator had better be good to justify all the changes it would require.</li>
</ol>
<p>I don't know much about this subject, so the only alternative I could come up with is the <a href="http://en.wikipedia.org/wiki/Mersenne%5FTwister" rel="nofollow">Mersenne Twister</a>; does it satisfy all these requirements? Is there anything else that's better?</p>
<p><strong>Edit:</strong> Mersenne Twister seems to be the consensus choice. But what about point #4? Is it really that much better than <code>rand()</code>?</p>
<p><strong>Edit 2:</strong> Let me be a little clearer on point 2: There is no way for players to cheat by knowing the random numbers. Period. I want it random enough that people (at least those who understand randomness) can't complain about it, but I'm not worried about predictions.
That's why I put speed as the top consideration.</p>
<p><strong>Edit 3:</strong> I'm leaning toward the Marsaglia RNGs now, but I'd still like more input. Therefore, I'm setting up a bounty.</p>
<p><strong>Edit 4:</strong> Just a note: I intend to accept an answer just before midnight UTC today (to avoid messing with someone's rep cap). So if you're thinking of answering, don't wait until the last minute!<br />
Also, I like the looks of Marsaglia's XORshift generators. Does anyone have any input about them?</p>
http://stackoverflow.com/questions/1587799/why-would-rand-return-a-negative-value-when-min-and-max-values-are-positive0Why would rand() return a negative value when min and max values are positive?Toytown Mafia2009-10-19T09:46:49Z2009-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->gdp * 0.02, $this->gdp * 0.17);
echo "<p>GDP: ".$this->gdp." rand(".$this->gdp * 0.02." , ".$this->gdp * 0.17.") = <strong>".$debt."</strong></p>";
</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-generator7Pseudo-random number generatorPhantom732009-02-25T03:08:27Z2009-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-be1How different do random seeds need to be?unknown (yahoo)2009-10-12T14:39:52Z2009-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/1527938/tsql-generate-5-character-length-string-all-digits-0-9-that-doesnt-already-ex2TSQL Generate 5 character length string, all digits [0-9] that doesn't already exist in database...Brad2009-10-06T20:27:48Z2009-10-08T19:11:25Z
<p>What's the best way to do this?</p>
<p>I need to generate a 5 digit length string where all the characters are numeric. However, I need to be able to do this 'x' amount of times (user variable) and store this random strings in a database. Furthermore, I can't generate the same string twice. Old strings will be removed after 6 months.</p>
<p>Pseudo-code</p>
<pre><code>DECLARE @intIterator INT,
@intMax
SET @intIterator = 1
SET @intMax = 5 (number of strings to generate)
WHILE @intIterator <= @intMax
BEGIN
-- GENERATE RANDOM STRING OF 5 NUMERIC DIGITS
???
-- INSERT INTO DB IF DOESN'T ALREADY EXIST
INSERT INTO TSTRINGS
SELECT @RANDOMSTRING
IF @@ERROR = 0
SET @intIterator = @intIterator + 1
END
</code></pre>
<p>I know this probably isn't the best way to do it, so advice is appreciated. But really looking for ideas on how to generate the numeric 5 length strings.</p>
http://stackoverflow.com/questions/1428110/non-repeating-pseudo-random-number-stream-with-clumping1Non-repeating pseudo random number stream with 'clumping' OldCodeOrder2009-09-15T16:05:15Z2009-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/1479823/in-php-how-do-i-generate-a-big-pseudo-random-number4In PHP, how do I generate a big pseudo-random number?Alix Axel2009-09-25T22:23:06Z2009-10-05T14:50:22Z
<p>I'm looking for a way to generate a <strong>big</strong> random number with PHP, something like:</p>
<pre><code>mt_rand($lower, $upper);
</code></pre>
<p>The closer I've seen is <a href="http://pt.php.net/manual/en/function.gmp-random.php" rel="nofollow">gmp_random</a>() however it doesn't allow me to specify the lower and upper boundaries only the number of bits per limb (which I've no idea what it is).</p>
<p><strong>EDIT: Axsuuls answer seems to be pretty close to what I want and very similar to gmp_random however there seems to be only one flaw in one scenario.</strong></p>
<p>Suppose I wan't to get a random number between:</p>
<ul>
<li>1225468798745475454898787465154</li>
</ul>
<p>and:</p>
<ul>
<li>1225468798745475454898787465200</li>
</ul>
<p>So if the function is called <strong>BigRandomNumber</strong>():</p>
<pre><code>BigRandomNumber($length = 31);
</code></pre>
<p>This can easily return 9999999999999999999999999999999 which is out of the specified boundary.</p>
<p><strong>How can I use a min / max boundary instead of a length value?</strong></p>
<pre><code>BigRandomNumber('1225468798745475454898787465154', '1225468798745475454898787465200');
</code></pre>
<p>This should return a random number between <strong>1225468798745475454898787465 [154 .. 200]</strong>.</p>
<p>For the reference I believe the solution might have to make use of the <a href="http://stackoverflow.com/questions/1503655/optimizing-comparisons-of-arbitrary-length-numbers-in-php/1503695#1503695">function supplied in this question</a>.</p>
http://stackoverflow.com/questions/1474382/a-good-and-simple-measure-of-randomness7A Good and SIMPLE Measure of Randomnesslkessler2009-09-24T21:56:05Z2009-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/1411662/how-do-you-seed-a-prng-with-two-seeds1How do you seed a PRNG with two seeds?Penchant2009-09-11T15:34:57Z2009-09-18T18:15:54Z
<p>For a game that I'm making, where solar systems have an x and y coordinates, I'd like to use the coordinates to randomly generate the features for that solar system. The easiest way to do this seems to seed a random number generator with two seeds, the x and y coordinates. Is there anyway to get one reliable seed from the two seeds, or is there a good PRNG that takes two seeds and produces long periods?</p>
<p>EDIT: I'm aware of binary operations between the two numbers, but I'm trying to find the method that will lead to the least number of collisions? Addition and multiplication will easily result in collisions. But what about XOR?</p>
http://stackoverflow.com/questions/1343324/find-out-what-a-random-number-generator-was-seeded-with-in-c4Find out what a random number generator was seeded with in C++brian2009-08-27T19:30:16Z2009-08-28T18:31:09Z
<p>I've got an unmanaged c++ console application in which I'm using srand() and rand(). I don't need this to solve a particular problem, but was curious: is the original seed passed to srand() stored somewhere in memory that I can query? Is there any way to figure out what the seed was?</p>
http://stackoverflow.com/questions/1313223/replace-rand-with-opensslrandompseudobytes1replace rand() with openssl_random_pseudo_bytes()tylerl2009-08-21T17:24:32Z2009-08-21T21:50:12Z
<p>I need a replacement for PHP's <code>rand()</code> function that uses a cryptographically strong random number generator. </p>
<p>The <code>openssl_random_pseudo_bytes()</code> function gets you access to the strong random number generator, but it outputs its data as a byte string. Instead, I need an integer between 0 and <em>X</em>.</p>
<p>I imagine the key is to get the output of <code>openssl_random_pseudo_bytes()</code> into an integer, then you can do any math on it that you need to. I can think of a few "brute force" ways of converting from a byte string to an integer, but I was hoping for something ... elegant.</p>
<p><hr /></p>
<p><strong>Edit</strong></p>
<p>Using the suggestion from <em>angrychimp</em>, I've created a drop-in replacement for rand() using OpenSSL. I'll include it here for posterity:</p>
<pre><code>function crypto_rand($min,$max) {
$range = $max - $min;
if ($range == 0) return $min; // not so random...
$length = (int) (log($range,2) / 8) + 1;
$num = hexdec(bin2hex(openssl_random_pseudo_bytes($length,$s))) % $range;
return $num + $min;
}
</code></pre>
http://stackoverflow.com/questions/1201670/unique-random-number-sequence-using-qrand-and-qsrand0Unique random number sequence using qrand() and qsrand()Suresh2009-07-29T16:59:09Z2009-08-02T14:38:05Z
<p>I want to generate unique random number sequence in QT, Using QDateTime::currentDateTime().toTime_t() as seed value, will qrand() generate unique random numbers?</p>
http://stackoverflow.com/questions/1190689/problem-with-rand-in-c4Problem with rand() in C [closed]akway2009-07-27T21:20:52Z2009-07-27T22:11:31Z
<blockquote>
<p><strong>Possible Duplicate:</strong><br />
<a href="http://stackoverflow.com/questions/1108780/why-do-i-always-get-the-same-sequence-of-random-numbers-with-rand">why do i always get the same sequence of random numbers with rand() ?</a> </p>
</blockquote>
<p>This is my file so far:</p>
<pre><code>#include <stdio.h>
int main(void) {
int y;
y = generateRandomNumber();
printf("\nThe number is: %d\n", y);
return 0;
}
int generateRandomNumber(void) {
int x;
x = rand();
return x;
}
</code></pre>
<p>My problem is rand() ALWAYS returns 41. I am using gcc on win... not sure what to do here.</p>
<p>EDIT: Using time to generate a random number won't work. It provides me a number (12000ish) and every time I call it is just a little higher (about +3 per second). This isn't the randomness I need. What do I do?</p>
http://stackoverflow.com/questions/1166408/c-mersenne-twister-random-integer-generator-implementation-sfmt-monte-carlo-si1c# Mersenne Twister random integer generator implementation (SFMT) monte carlo simulationm3ntat2009-07-22T16:10:03Z2009-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() >> 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/288739/generate-random-numbers-uniformly-over-entire-range4Generate Random numbers uniformly over entire rangeAlien012008-11-13T23:27:48Z2009-07-13T21:49:56Z
<p>I need to generate random numbers with in specified interval [max,min]</p>
<p>Also the random numbers should be uniformly distributed over interval, not located to particular point</p>
<p>Currenly I am generating as:</p>
<pre><code>for(int i=0;i<6;i++)
{
DWORD random= rand()%(max-min+1) + min;
}
</code></pre>
<p>From my tests random numbers are generated around one point only</p>
<pre><code>Example
min= 3604607;
max= 7654607;
</code></pre>
<p>Random numbers generated:</p>
<pre><code>3631594
3609293
3630000
3628441
3636376
3621404
</code></pre>
<p>Edit (added from answers below): Ok RAND_MAX is 32767. I am on C++ windows platform.. Is there any other method to generate random numbers with uniform distribution?</p>
http://stackoverflow.com/questions/1041509/php-best-random-numbers0PHP: Best random numbersmarco92w2009-06-24T23:39:50Z2009-06-25T18:03:00Z
<p>Hello!</p>
<p>I heard that PHP's rand() function doesn't give good random numbers. So I started to use mt_rand() which is said to give better results. But how good are these results? Are there any methods to improve them again?</p>
<p>My idea:</p>
<pre><code><?php
function rand_best($min, $max) {
$generated = array();
for ($i = 0; $i < 100; $i++) {
$generated[] = mt_rand($min, $max);
}
shuffle($generated);
$position = mt_rand(0, 99);
return $generated[$position];
}
?>
</code></pre>
<p>This should give you "perfect" random numbers, shouldn't it?</p>
<p>I hope you can help me. Thanks in advance!</p>
http://stackoverflow.com/questions/591253/when-using-random-which-form-returns-an-equal-50-chance4When using random, which form returns an equal 50% chance? Casey2009-02-26T16:15:37Z2009-06-19T21:08:18Z
<p>I'm guessing that most built in random generators return something like this:</p>
<pre><code>[0.0, 1.0)
</code></pre>
<p>so if I would like a 50% chance would I use something like this:</p>
<pre><code>if random() < .5
</code></pre>
<p>or something like:</p>
<pre><code>if random() <= .5
</code></pre>
<p>Thanks for the help.</p>
http://stackoverflow.com/questions/984396/how-to-get-mysql-random-integer-range0How to get mysql random integer range?kevzettler2009-06-11T23:57:12Z2009-06-16T01:02:30Z
<p>I am trying to generate a random integer for each row I select between 1 and 60 as timer.</p>
<pre><code>SELECT downloads.date, products.*, (FLOOR(1 + RAND() * 60)) AS timer
</code></pre>
<p>I have searched and keep coming up to this FLOOR function as how to select a random integer in a range. This is giving me a 1 for every row.
What am I missing?</p>
<p>I am on mysql 5.0.75</p>
<p>Heres the rest of the query I belive it might be a nesting issue</p>
<pre><code>SELECT *
FROM (
SELECT downloads.date, products.*, FLOOR(1 + (RAND() * 60)) AS randomtimer,
(
SELECT COUNT( * )
FROM distros
WHERE distros.product_id = products.product_id
) AS distro_count,
(SELECT COUNT(*) FROM downloads WHERE downloads.product_id = products.product_id) AS true_downloads
FROM downloads
INNER JOIN products ON downloads.product_id = downloads.product_id
) AS count_table
WHERE count_table.distro_count > 0
AND count_table.active = 1
ORDER BY count_table.randomtimer , count_table.date DESC LIMIT 10
</code></pre>
http://stackoverflow.com/questions/785058/random-strings-in-python-2-6-is-this-ok2Random strings in Python 2.6 (Is this OK?)mikelikespie2009-04-24T09:01:29Z2009-06-02T13:24:54Z
<p>I've been trying to find a more pythonic way of generating random string in python that can scale as well. Typically, I see something similar to</p>
<pre><code>''.join(random.choice(string.letters) for i in xrange(len))
</code></pre>
<p>It sucks if you want to generate long string.</p>
<p>I've been thinking about random.getrandombits for a while, and figuring out how to convert that to an array of bits, then hex encode that. Using python 2.6 I came across the bitarray object, which isn't documented. Somehow I got it to work, and it seems really fast.</p>
<p>It generates a 50mil random string on my notebook in just about 3 seconds.</p>
<pre><code>def rand1(leng):
nbits = leng * 6 + 1
bits = random.getrandbits(nbits)
uc = u"%0x" % bits
newlen = int(len(uc) / 2) * 2 # we have to make the string an even length
ba = bytearray.fromhex(uc[:newlen])
return base64.urlsafe_b64encode(str(ba))[:leng]
</code></pre>
<p><hr /></p>
<p><strong>edit</strong></p>
<p>heikogerlach pointed out that it was an odd number of characters causing the issue. New code added to make sure it always sent fromhex an even number of hex digits.</p>
<p>Still curious if there's a better way of doing this that's just as fast.</p>
http://stackoverflow.com/questions/872563/efficient-algorithm-to-randomly-select-items-with-frequency5Efficient algorithm to randomly select items with frequencyrampion2009-05-16T14:48:41Z2009-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>∑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> = ∑<sub>h≤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> < 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> ≤ x<sub>k</sub> < 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/867602/quickest-way-to-generate-random-bits3quickest way to generate random bitsdagw2009-05-15T08:41:18Z2009-05-15T16:35:05Z
<p>What would be the fastest way to generate a large number of (pseudo-)random bits. Each bit must be independent and be zero or one with equal probability. I could obviously do some variation on </p>
<pre><code>randbit=rand()%2;
</code></pre>
<p>but I feel like there should be a faster way, generating several random bits from each call to the random number generator. Ideally I'd like to get an int or a char where each bit is random and independent, but other solutions are also possible.</p>
<p>The application is not cryptographic in nature so strong randomness isn't a major factor, whereas speed and getting the correct distribution is important.</p>
http://stackoverflow.com/questions/841908/database-generated-human-friendly-codes0Database-Generated Human-Friendly CodesZack Peterson2009-05-08T21:33:35Z2009-05-12T22:51:54Z
<p>I'd like to create some human-friendly codes to identify my objects.</p>
<p>I'm thinking about using the following rules:</p>
<ul>
<li>6-digit random number</li>
<li>the first character is not zero</li>
<li>each code has an <a href="http://en.wikipedia.org/wiki/Edit%5Fdistance" rel="nofollow">edit distance</a> value of 2 or greater* from every other such code</li>
<li>maybe a checksum too</li>
</ul>
<p>I'd like my MS SQL database to enforce that the codes I use are not only each unique, but also conform to the above criteria too.</p>
<p>How would I write a database check constraint to enforce rules such as these?</p>
<p>How could I make the database use such numbers as default values for inserted rows?</p>
<p>*<em>so a single keystroke typo won't retreive a different-than-intended record</em></p>
http://stackoverflow.com/questions/734482/what-is-the-proper-method-of-constraining-a-pseduo-random-number-to-a-smaller-ran7What is the proper method of constraining a pseduo-random number to a smaller range?Chas. Owens2009-04-09T14:28:50Z2009-04-11T15:14:48Z
<p>What is the best way to constrain the values of a PRNG to a smaller range? If you use modulus and the old max number is not evenly divisible by the new max number you bias toward the <code>0</code> through <code>(old_max - new_max - 1)</code>. I assume the best way would be something like this (this is floating point, not integer math)</p>
<pre><code>random_num = PRNG() / max_orginal_range * max_smaller_range
</code></pre>
<p>but something in my gut makes me question that method (maybe floating point implementation and representation differences?). </p>
<p>The random number generator will produce consistent results across hardware and software platforms, and the constraint needs to as well. </p>
<p>I was right to doubt the pseudocode above (but not for the reasons I was thinking). MichaelGG's <a href="http://stackoverflow.com/questions/734482/what-is-the-proper-method-of-constraining-a-pseduo-random-number-to-a-smaller-ran/739945#739945">answer</a> got me thinking about the problem in a different way. I can model it using smaller numbers and test every outcome. So, let's assume we have a PRNG that produces a random number between 0 and 31 and you want the smaller range to be 0 to 9. If you use modulus you bias toward 0, 1, 2, and 3. If you use the pseudocode above you bias toward 0, 2, 5, and 7. I don't think there can be a good way to map one set into the other. The best that I have come up with so far is to regenerate the random numbers that are greater than <code>old_max/new_max</code>, but that has deep problems as well (reducing the period, time to generate new numbers until one is in the right range, etc.). </p>
<p>I think I may have naively approached this problem. It may be time to start some serious research into the literature (someone has to have tackled this before).</p>
http://stackoverflow.com/questions/712785/simulating-randomness-1simulating randomnessbLee2009-04-03T06:54:23Z2009-04-03T07:16:55Z
<p>I'm just curious...</p>
<p>How do you simulate randomness? How is it done in modern OS (Windows, Linux, etc.)?</p>
<p>Edit:
Okay, NOT JUST GENERATING RANDOM NUMBER, which can be just done with calling rand() functions in most high level programming languages.</p>
<p>But, I'm more concerned with how it is actually done in modern operating systems.</p>
http://stackoverflow.com/questions/677373/generate-random-values-in-c5Generate random values in C#pragadheesh2009-03-24T13:22:39Z2009-03-27T17:29:29Z
<p>How can I generate random Int64 and UInt64 values using the <code>Random</code> class in C#?</p>
http://stackoverflow.com/questions/679623/generate-user-friendly-codes3Generate User Friendly CodesB Z2009-03-24T23:14:00Z2009-03-26T03:46:05Z
<p>I am researching methods to generate a random human friendly code but not (easily) guessable. This will be used to give away prizes (think unique discount codes). We are to generate about 50k. Are there any standard methods/algorithms to accomplish this? I was thinking of using a GUID and applying CRC. Is this a bad idea?</p>
<p>Using .netframework 3.5 if it matters.</p>