| New Reply |
Random number from a unknown distribution |
Share Thread |
| Jul15-12, 09:48 PM | #1 |
|
|
Random number from a unknown distribution
Dear all,
I apologize if it is the wrong place, I don't know where I had to post this question since I'm not a mathematician. Well, suppose you have a set of numbers which can be describe by a unknown distribution. I just like to know whether we can use those numbers to generate a set of random number so that they will have the same probability distribution. More precisely, I have a set of atomic velocities which do not obey to the Maxwell distribution. I'd like to generate a new (random) set of velocity. I thought about multiplying each initial value by a uniform random number between -1 and 1 but it does not seem to work. Thank you, Éric. |
| Jul15-12, 10:00 PM | #2 |
|
|
Hey aihaike.
In terms of generating a random number process that generates something from an arbitrary distribution, there are techniques for doing this, but you need to be able to describe your distribution at least by some sort of histogram. It doesn't need to be an analytic one, but it needs to have at least some kind of bin-representation (i.e. histogram). You could fit a curve to the histogram but this is not necessary. Once you have enough samples to build a good histogram, you can then use something like the Metropolis-Hastings algorithm to generate a random number from your histogram distribution. http://en.wikipedia.org/wiki/Metropo...ings_algorithm You will need to implement some code to get the maximum and I recommend you use the uniform distribution where the constant * the uniform PDF "boxes in" your histogram distribution. Also you will need to have your histogram be defined on a finite-interval. If it's defined on the entire real line or equivalent in multiple dimensions, you need to create a finite-interval that captures the majority of the distribution that's good enough. For example getting five standard deviations from the mean of a normal is going to be more than enough for most purposes. Once you use MH and use the right test distribution taking into account your histogram and making sure the assumptions are good for using MH (there are other techniques you can look into), then this is your random number generator for your histogram distribution. Just make sure you get a lot of samples to construct the histogram. |
| Jul15-12, 10:15 PM | #3 |
|
|
Hey Chiro,
Thank you for your quick and useful reply! I looks like exactly what I was looking for. I'll try it out. Thanks again. Éric. |
| New Reply |
Similar discussions for: Random number from a unknown distribution
|
||||
| Thread | Forum | Replies | ||
| random number with which distribution | Set Theory, Logic, Probability, Statistics | 1 | ||
| Distribution of the decimals of a random number | Calculus & Beyond Homework | 1 | ||
| Number of steps distribution for a continuous time random walk with memory | General Physics | 0 | ||
| distribution of a random variable , pdf vs probability distribution | Set Theory, Logic, Probability, Statistics | 1 | ||
| Expectation and variance of a random number of random variables | Calculus & Beyond Homework | 3 | ||