Binomial to Normal Distribution¶
Given \(n\) as the number of Bernoulli trials and \(p\) as the probability of success, we have:
If \(n\) is large and \(n \cdot p \cdot q\) is not too small, the distribution approaches a Normal Distribution:
where \(np = \mu\) (mean), and \(npq = \sigma^2\) (variance). The standard deviation is \(\sigma\), and we can compute the probability using the cumulative distribution function (CDF) of the normal distribution.
The probability density function (PDF) of the normal distribution is:
To calculate the probability of a specific random value \(\mathbf{X}\) over the interval \([a, b]\) using the CDF, we have:
It is easier to compute this for the standard normal distribution \(\mathcal{N}(\mu = 0, \sigma = 1)\), also called the z-distribution. To standardize \(\mathbf{X}\), a random variable with any \(\mu\) and \(\sigma\), to mean 0 and standard deviation 1, we compute the z-score \(Z\) corresponding to \(\mathbf{X}\):
This equation shifts the mean of \(\mathbf{X}\) to 0 and scales the distribution to have \(\sigma = 1\). The standard normal PDF is:
and the CDF of the standard normal distribution is:
You can compute \(P(Z \leq \text{z-score})\) using the z-table.