Jump to content

Non-uniform random variate generation

From Wikipedia, the free encyclopedia

Non-uniform random variate generationorpseudo-random number samplingis thenumericalpractice of generatingpseudo-random numbers(PRN) that follow a givenprobability distribution. Methods are typically based on the availability of auniformly distributedPRN generator.Computational algorithms are then used to manipulate a singlerandom variate,X,or often several such variates, into a new random variateYsuch that these values have the required distribution. The first methods were developed forMonte-Carlo simulationsin theManhattan project,[citation needed]published byJohn von Neumannin the early 1950s.[1]

Finite discrete distributions[edit]

For adiscrete probability distributionwith a finite numbernof indices at which theprobability mass functionftakes non-zero values, the basic sampling algorithm is straightforward. The interval [0, 1) is divided innintervals [0,f(1)), [f(1),f(1) +f(2)),... The width of intervaliequals the probabilityf(i). One draws a uniformly distributed pseudo-random numberX,and searches for the indexiof the corresponding interval. The so determinediwill have the distributionf(i).

Formalizing this idea becomes easier by using the cumulative distribution function

It is convenient to setF(0) = 0. Thenintervals are then simply [F(0),F(1)), [F(1),F(2)),..., [F(n− 1),F(n)). The main computational task is then to determineifor whichF(i− 1) ≤X<F(i).

This can be done by different algorithms:

Continuous distributions[edit]

Generic methods for generatingindependentsamples:

Generic methods for generatingcorrelatedsamples (often necessary for unusually-shaped or high-dimensional distributions):

For generating anormal distribution:

For generating aPoisson distribution:

Software libraries[edit]

GNU Scientific Libraryhas a section entitled "Random Number Distributions" with routines for sampling under more than twenty different distributions.[5]

See also[edit]

Footnotes[edit]

  1. ^Von Neumann, John(1951)."Various Techniques Used in Connection with Random Digits"(PDF).In Householder, A. S.; Forsythe, G. E.; Germond, H. H. (eds.).Monte Carlo Methods.National Bureau of Standards Applied Mathematics Series. Vol. 12. US Government Printing Office. pp. 36–38.Any one who considers arithmetical methods of producing random digits is of course, in a state of sin.Also online is alow-quality scan of the original publication.
  2. ^Ripley (1987)[page needed]
  3. ^Fishman (1996)[page needed]
  4. ^Fishman (1996)[page needed]
  5. ^"Random Number Distributions - GSL 2.7 documentation".The GNU Operating System and the Free Software Movement.Retrieved2022-08-18.

Literature[edit]