hot questions tagged random-number-generator+math - Stack Overflowmost recent 30 from stackoverflow.com2009-12-12T08:59:25Zhttp://stackoverflow.com/feeds/tag?tagnames=random-number-generator%2bmath&sort=hothttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1626023/c-normal-random-number3C# Normal Random NumberJ.Hendrix2009-10-26T17:12:10Z2009-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/1542911/obscure-vbmath-random-numbers-generator-behavior0Obscure VBMath random numbers generator behavior.kripto_ash2009-10-09T10:00:25Z2009-10-13T13:29:08Z
<p>Hi, </p>
<p>I want to repeat a random number sequence generated by a legacy software using the VBMath.Rnd and VBMath.Randomize functions in VB .NET</p>
<p>Reading on the documentation for those functions on <a href="http://msdn.microsoft.com/en-us/library/ht1sfkd6.aspx" rel="nofollow">MSDN</a> i found that you are supposed to "reset" the generator calling Rnd with a negative value if you want the same seed to give you the same result sequence each time.</p>
<p>But doing some tests... things didn't work as expected.</p>
<p>The legacy software does something like this at the start of the application on different executions:</p>
<pre><code>float[] rNums = new float[4];
VBMath.Randomize(154341.77394338892);
for (int index = 0; index < 4; index++)
{
rNums[index] = VBMath.Rnd();
}
</code></pre>
<p>And my code does something like this:</p>
<pre><code>VBMath.Rnd(-1);
VBMath.Randomize(154341.77394338892);
for (int index = 0; index < 4; index++)
{
Console.WriteLine("rNum[" + index + "] " + rNums[index] + " = " + VBMath.Rnd());
}
</code></pre>
<p>The results for this test are:</p>
<pre><code>rNum[0] 0,6918146 = 0,2605162
rNum[1] 0,5121228 = 0,4748411
rNum[2] 0,8309224 = 0,8112976
rNum[3] 0,972851 = 0,8011347
</code></pre>
<p>The sequence that i want to reproduce in the second code any number of times is the sequence generated from the hard coded initial state of the generator. That means the sequence you would get if you run the first code alone.</p>
<p>I can not change the first code.</p>
<p>Any idea on why the VBMath.Rnd and VBMath.Randomize functions arent working as expected?</p>
<p>Did i miss something?</p>
<p><hr /></p>
<h2>ANSWER</h2>
<p>Thee problem is that since the legacy code doesn't call Rnd with a negative value, the generator doesn't clear its state and the call to Rnd gets chained to the previous value of the seed (in this case, the hard-coded value). </p>
<p>To solve the problem and be able to repeat the process all over again without all the problems that would imply "reproducing" the initial state, i cloned the generator code and patched it so i could reproduce the same situation every time depending on a parameter.</p>
<p>I know.. its ugly.. but it solves my problem (Btw i also know that there are some rounding errors and that the generated values are not exact.. they differ in like the last digit or something) but i don't need exact precision. </p>
<p>The rounding error probably comes from my choice of language for the cloning of the algorithm. If someone could help out on how to get the exact same result (match the rounding errors) that would be nice.</p>
<p>The patched code follows.</p>
<pre><code>public sealed class RndGenerator
{
static int m_rndSeed = 0x50000;
// This is the value that the programmer sets the seed at ProjectData object
// initialization
const int CONSTANT_INIT_RNDSEED = 0x50000;
// Methods
private static float GetTimer()
{
DateTime now = DateTime.Now;
return (float)(((((60 * now.Hour) + now.Minute) * 60) + now.Second) + (((double)now.Millisecond) / 1000.0));
}
public static void Randomize()
{
float timer = GetTimer();
int rndSeed = m_rndSeed;
int num = BitConverter.ToInt32(BitConverter.GetBytes(timer), 0);
num = ((num & 0xffff) ^ (num >> 0x10)) << 8;
rndSeed = (rndSeed & -16776961) | num;
m_rndSeed = rndSeed;
}
public static void Randomize(double Number)
{
Randomize(Number, false);
}
public static void Randomize(double Number, bool useHardCodedState)
{
int num;
int rndSeed = 0;
if (useHardCodedState)
rndSeed = CONSTANT_INIT_RNDSEED;
else
rndSeed = m_rndSeed;
if (BitConverter.IsLittleEndian)
{
num = BitConverter.ToInt32(BitConverter.GetBytes(Number), 4);
}
else
{
num = BitConverter.ToInt32(BitConverter.GetBytes(Number), 0);
}
num = ((num & 0xffff) ^ (num >> 0x10)) << 8;
rndSeed = (rndSeed & -16776961) | num;
m_rndSeed = rndSeed;
}
public static float Rnd()
{
return Rnd(1f);
}
public static float Rnd(float Number)
{
int rndSeed = m_rndSeed;
if (Number != 0.0)
{
if (Number < 0.0)
{
long num3 = BitConverter.ToInt32(BitConverter.GetBytes(Number), 0);
num3 &= (long)0xffffffffL;
rndSeed = (int)((num3 + (num3 >> 0x18)) & 0xffffffL);
}
rndSeed = (int)(((rndSeed * 0x43fd43fdL) + 0xc39ec3L) & 0xffffffL);
}
m_rndSeed = rndSeed;
return (((float)rndSeed) / 1.677722E+07f);
}
}
</code></pre>
http://stackoverflow.com/questions/1189008/intel-math-kernel-on-windows-calling-from-c-for-random-number-generation4Intel Math Kernel on windows, calling from c# for random number generationm3ntat2009-07-27T15:58:39Z2009-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/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/1009858/random-number-generation-without-using-bit-operations5Random number generation without using bit operationsMartin2009-06-17T22:38:04Z2009-06-17T23:00:12Z
<p>I'm writing a vertex shader at the moment, and I need some random numbers. Vertex shader hardware doesn't have logical/bit operations, so I cannot implement any of the standard random number generators.
Is it possible to make a random number generator using only standard arithmetic? the randomness doesn't have to be particularly good!</p>
http://stackoverflow.com/questions/56411/how-to-test-randomness-case-in-point-shuffling14How to test randomness (case in point - Shuffling)Tnilsson2008-09-11T12:27:22Z2008-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>
http://stackoverflow.com/questions/918736/random-number-generator-that-produces-a-power-law-distribution2Random number generator that produces a power-law distribution?twk2009-05-28T01:13:20Z2009-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>