My watch list
my.chemeurope.com  
Login  

Inverse transform sampling



Inverse transform sampling , also known as the probability integral transform, is a method of sampling a number at random from any probability distribution given its cumulative distribution function (cdf). This method is generally applicable, but may be too computationally expensive in practice for some probability distributions. See Box-Muller transform for an example of an algorithm which is less general but more computationally efficient.

Contents

Definition

The probability integral transform states that if X is a continuous random variable with a strictly increasing cumulative distribution function FX, and if Y = FX(X), then Y has a uniform distribution on [0, 1].

The method

The problem that the inverse transform sampling method solves is as follows:

  • Let X be a random variable whose distribution can be described by the cdf F.
  • We want to generate values of X which are distributed according to this distribution.

Many programming languages have the ability to generate pseudo-random numbers which are effectively distributed according to the standard uniform distribution. If a random variable has that distribution, then the probability of its falling within any subinterval (a, b) of the interval from 0 to 1 is just the length ba of that subinterval.

The inverse transform sampling method works as follows:

  1. Generate a random number from the standard uniform distribution; call this u.
  2. Compute the value x such that F(x) = u; call this xchosen.
  3. Take xchosen to be the random number drawn from the distribution described by F.

Expressed differently, given a continuous uniform variable U in [0, 1] and an invertible distribution function F, the random variable X = F −1(U) has distribution F (or, X is distributed F).

Proof of correctness

Let F be a continuous cumulative distribution function, and let F − 1 be its inverse function:[1]

F^{-1}(u) = \inf\;\{x \mid F(x)=u, 0<u<1\}

Claim: If U is a uniform random variable on (0;1) then F − 1(U) follows the distribution F.

Proof:

\Pr(F^{-1}(U) \leq x) \!
= \Pr(\inf\;\{x \mid F(x)=U\} \leq x) \!    (by the definition of F − 1)
= \Pr(U \leq F(x)) \!    (applying F, which is monotonic, to both sides)
= F(x) \!    (because \Pr(U \leq y) = y, since U is uniform on the unit interval)

See also

  • Copula, defined by means of probability integral transform.

References

  1. ^ Luc Devroye. Non-Uniform Random Variate Generation. New York: Springer-Verlag, 1986. (online) See chapter 2, section 2, p. 28.
 
This article is licensed under the GNU Free Documentation License. It uses material from the Wikipedia article "Inverse_transform_sampling". A list of authors is available in Wikipedia.
Your browser is not current. Microsoft Internet Explorer 6.0 does not support some functions on Chemie.DE