There are many situations where it is convenient or just plain necessary, to approximate one distribution with another. For example, if we toss a coin one million times, how many heads will there be? The appropriate distribution is Binomial(1 000 000, 0.5) but such a distribution is utterly impractical to calculate and some software may not even be able to do this. For a start, you would need to calculate every factorial for integers between 0 and a million. However, under certain conditions, the Binomial(p, n) distribution is very well approximated by a Normal(np, (np(1-p))½) distribution. In our example, that would mean using a Normal(500 000, 500) and we could readily calculate, for example, the probability of having exactly 501 000 heads by using the Normal probability density function:
(1) | f(501000)=\frac{1}{\sqrt{2\pi (500)^{2}}}exp\Big(-\frac{(501000-500000)^{2}}{2(500)^{2}}\Big)=0.0108 \text{%} |
or
=NORM.DIST(501000,500000,500,0)
This section looks at a number of approximations, why they work and how to use them. It also provides you with a better understanding of the inter-relationships between the most common distributions.
Before proceeding, it is worthwhile reading about the Central Limit Theorem. because it explains the Normal distribution approximation to most of the distributions offered here.
Here are a few examples of approximations of distributions:
The section on recursive distributions shows you how you can create precise discrete distributions where the parameters have become unmanageably large to deal with in the normal way.
In addition to approximating distributions by other distribution, it sometimes is useful to create your own distribution, which can be done in four ways, as explained here.
Once you have reviewed the material in this section, you might like to test how much you have learned by taking a quiz:
A quiz on Approximating distributions: