Generating non-uniform random numbers - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T05:39:11Z http://stackoverflow.com/feeds/question/977354 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/977354/generating-non-uniform-random-numbers 3 Generating non-uniform random numbers Robert Greiner 2009-06-10T18:24:12Z 2009-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#977376 9 Answer by McWafflestix for Generating non-uniform random numbers McWafflestix 2009-06-10T18:27:55Z 2009-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#977508 5 Answer by DCW for Generating non-uniform random numbers DCW 2009-06-10T18:54:25Z 2009-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#1023575 1 Answer by Dan Dyer for Generating non-uniform random numbers Dan Dyer 2009-06-21T10:06:19Z 2009-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>