DRAW: Normal Approximation to Binomial#
Introduction#
When certain conditions are met, the Binomial Distribution can be approximated by the Normal Distribution. On this page, we will examine which conditions must be satisfied before the approximation can be applied successfully.
Activity#
First, let’s create a simple Binomial Distribution with and . In order to do this, we must first generate its domain, , and store it in :math:L_1.
To do this, you can either go into the STAT editor and manually enter the list, element by element, or you can use the SEQ function to generate the list programmatically. Either way will work! The command below shows how to store the sequence in the ,
Then we calculate the value of the BINOMPDF at each value in the domain with the BINOMPDF function and store the result in . The command below shows how to store Binomial probabilities in ,
Turn on your STATPLOT and create a histogram using as your XLIST and as your FREQ.
Question #1
Describe the shape of the histogram. Explain why the Normal Distribution would not be a good approximation to Binomial Distribution with n = 10 and p = 0.1.
TODO: the rest .