Generating non-uniform random numbers - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T05:39:11Zhttp://stackoverflow.com/feeds/question/977354http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/977354/generating-non-uniform-random-numbers3Generating non-uniform random numbersRobert Greiner2009-06-10T18:24:12Z2009-06-21T10:06:19Z
<p>Can you tell me any ways to generate <b>non-uniform</b> random numbers?<br />
I am using Java but the code examples can be in whatever you want.</p>
<p>One way is to create a skewed distribution by adding two uniform random numbers together (i.e. rolling 2 dice).</p>
http://stackoverflow.com/questions/977354/generating-non-uniform-random-numbers/977376#9773769Answer by McWafflestix for Generating non-uniform random numbersMcWafflestix2009-06-10T18:27:55Z2009-06-10T18:59:33Z<p>Try generating uniformly distributed random numbers, then applying your inverted non-uniform <a href="http://en.wikipedia.org/wiki/Cumulative%5Fdistribution%5Ffunction" rel="nofollow">cumulative distribution function</a> to each of them.</p>
http://stackoverflow.com/questions/977354/generating-non-uniform-random-numbers/977508#9775085Answer by DCW for Generating non-uniform random numbersDCW2009-06-10T18:54:25Z2009-06-10T18:54:25Z<p>What distribution of deviates do you want?</p>
<p>Here is a technique which always works, but isn't always the most efficient. The cumulative distrubtion function P(x) gives the fraction of the time that values fall below x. Thus P(x)=0 at the lowest possible value of x and P(x)=1 at the highest possible value of x. Every distribution has a unique CDF, which encodes all the properties of the distrubtion in the way that P(x) rises from 0 to 1. If y is a uniform deviate on the interval [0,1], then x satisfying P(x)=y will be disributed according to your distribution. To make this work comuptationally, you just need a way computing the inverse of P(x) for your distribution.</p>
<p>The <a href="http://www.meta-numerics.net" rel="nofollow">Meta.Numerics</a> library defines a large number of commonly used distrubtions (e.g. normal, lognormal, exponential, chi squared, etc.) and has functions for computing the CDF (Distribution.LeftProbability) and the inverse CDF (Distribution.InverseLeftProbability) of each.</p>
<p>For specialized techniques that are fast for particular distrubtions, e.g. the Box-Muller technique for normaly distributed deviates, see the book Numerical Recipies.</p>
http://stackoverflow.com/questions/977354/generating-non-uniform-random-numbers/1023575#10235751Answer by Dan Dyer for Generating non-uniform random numbersDan Dyer2009-06-21T10:06:19Z2009-06-21T10:06:19Z<p>If you are using Java then my <a href="https://uncommons-maths.dev.java.net" rel="nofollow">Uncommons Maths</a> library may be of interest. It includes classes for generating random numbers for Uniform, Gaussian, Poisson, Binomial and Exponential distributions. <a href="http://blog.uncommons.org/2008/04/06/a-java-programmers-guide-to-random-numbers-part-2-not-just-coins-and-dice/" rel="nofollow">This article</a> shows how you might use these distributions.</p>