Inverse transform sampling (also known as inversion sampling, the inverse probability integral transform, the inverse transformation method,
Smirnov
Smirnov (masculine, russian: Смирнов) or Smirnova (feminine, russian: Смирнова, link=no) is one of the two most common surnames in Russia. ''Smirnov'' (russian: Смирнов, link=no) is derived from an adjectival nickname ''smirn ...
transform, or the golden rule
[Aalto University, N. Hyvönen, Computational methods in inverse problems. Twelfth lecture https://noppa.tkk.fi/noppa/kurssi/mat-1.3626/luennot/Mat-1_3626_lecture12.pdf]) is a basic method for
pseudo-random number sampling, i.e., for generating sample numbers at
random from any
probability distribution
In probability theory and statistics, a probability distribution is the mathematical function that gives the probabilities of occurrence of different possible outcomes for an experiment. It is a mathematical description of a random phenomenon i ...
given its
cumulative distribution function
In probability theory and statistics, the cumulative distribution function (CDF) of a real-valued random variable X, or just distribution function of X, evaluated at x, is the probability that X will take a value less than or equal to x.
Ev ...
.
Inverse transformation sampling takes
uniform samples of a number
between 0 and 1, interpreted as a probability, and then returns the largest number
from the domain of the distribution
such that
. For example, imagine that
is the standard
normal distribution with mean zero and standard deviation one. The table below shows samples taken from the uniform distribution and their representation on the standard normal distribution.
We are randomly choosing a proportion of the area under the curve and returning the number in the domain such that exactly this proportion of the area occurs to the left of that number. Intuitively, we are unlikely to choose a number in the far end of tails because there is very little area in them which would require choosing a number very close to zero or one.
Computationally, this method involves computing the
quantile function
In probability and statistics, the quantile function, associated with a probability distribution of a random variable, specifies the value of the random variable such that the probability of the variable being less than or equal to that value equ ...
of the distribution — in other words, computing the
cumulative distribution function
In probability theory and statistics, the cumulative distribution function (CDF) of a real-valued random variable X, or just distribution function of X, evaluated at x, is the probability that X will take a value less than or equal to x.
Ev ...
(CDF) of the distribution (which maps a number in the domain to a probability between 0 and 1) and then inverting that function. This is the source of the term "inverse" or "inversion" in most of the names for this method. Note that for a
discrete distribution, computing the CDF is not in general too difficult: we simply add up the individual probabilities for the various points of the distribution. For a
continuous distribution, however, we need to integrate the
probability density function (PDF) of the distribution, which is impossible to do analytically for most distributions (including the
normal distribution). As a result, this method may be computationally inefficient for many distributions and other methods are preferred; however, it is a useful method for building more generally applicable samplers such as those based on
rejection sampling.
For the
normal distribution, the lack of an analytical expression for the corresponding quantile function means that other methods (e.g. the
Box–Muller transform) may be preferred computationally. It is often the case that, even for simple distributions, the inverse transform sampling method can be improved on: see, for example, the
ziggurat algorithm and
rejection sampling. On the other hand, it is possible to approximate the quantile function of the normal distribution extremely accurately using moderate-degree polynomials, and in fact the method of doing this is fast enough that inversion sampling is now the default method for sampling from a normal distribution in the statistical package
R.
Definition
The
probability integral transform states that if
is a
continuous random variable with
cumulative distribution function
In probability theory and statistics, the cumulative distribution function (CDF) of a real-valued random variable X, or just distribution function of X, evaluated at x, is the probability that X will take a value less than or equal to x.
Ev ...
, then the random variable
has a
uniform distribution
Uniform distribution may refer to:
* Continuous uniform distribution
* Discrete uniform distribution
* Uniform distribution (ecology)
* Equidistributed sequence In mathematics, a sequence (''s''1, ''s''2, ''s''3, ...) of real numbers is said to be ...
on
, 1 The inverse probability integral transform is just the inverse of this: specifically, if
has a uniform distribution on
, 1and if
has a cumulative distribution
, then the random variable
has the same distribution as
.
Intuition
From