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?
feedback
|
|
The Ziggurat algorithm is pretty efficient for this, although the Box-Muller transform is easier to implement from scratch (and not crazy slow). | |||||||||
feedback
|
|
There are plenty of methods:
| |||||||||
feedback
|
|
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 :) | |||
feedback
|
|
Java's Random class has the nextGaussian() method for this. | |||
|
feedback
|
|
Here is a javascript implementation using the polar form of the Box-Muller transformation.
| |||
|
feedback
|
|
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. | |||
feedback
|
|
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) | |||||
feedback
|
|
I would use Box-Muller. Two things about this:
| |||||||
feedback
|
| |||||||||
feedback
|
|
Where R1, R2 are random uniform numbers: NORMAL DISTRIBUTION, with SD of 1: sqrt(-2*log(R1))*cos(2*pi*R2) This is exact... no need to do all those slow loops! | |||
feedback
|
|
I thing you should try this in EXCEL: For example: | ||||
|
feedback
|