How can I convert a uniform distribution (as most random number generators produce, e.g. between 0.0 and 1.0) into a normal distribution? What if I want a mean and standard deviation of my choosing?
|
1
|
|||||
|
|
|
The Ziggurat algorithm is pretty efficient for this, although the Box-Muller transform is easier to implement from scratch (and not crazy slow). |
||||
|
|
|
Java's Random class has the nextGaussian() method for this. |
||
|
|
|
|
I would use Box-Muller. Two things about this:
|
||||
|
|
|
The standard Python library module random has what you want:
For the algorithm itself, take a look at the function in random.py in the Python library. |
||
|
|
|
|
Changing the distribution of any function to another involves using the inverse of the probability function you want. In other words, if you know the probability function p(x) and it has an inverse: Inv(p(x)) then by using the random probability function (uniform distribution) and casting the result value through the function Inv(p(x)) you should get random values cast with distribution according to the function you wanted, so now it's only a matter of choosing your desired probability function and its inverse. Hope this helped and that I didn't mixed my math :) |
||
|
|
|
|
Use the central limit theorem wikipedia entry mathworld entry to your advantage. Generate n of the uniformly distributed numbers, sum them, subtract n*0.5 and you have the output of an approximately normal distribution with mean equal to 0 and variance equal to n=10 gives you something half decent fast. If you want something more than half decent go for tylers solution (as noted in the wikipedia entry on normal distributions) |
||
|
|
|
Here is a javascript implementation using the polar form of the Box-Muller transformation.
|
||
|
|
|
|
Create and array with the distribution you require e.g. 1,1,1,2,3,3,6,6,7,8,9,9,9,9,9,9,10 use a standard random number generator to select indexes into this array. |
||
|
|
|
|
|
||
|
