I roll a biased dice 9000 times. the probability of seeing 1,2,3,4,5,6 are $\frac{1}{3}, \frac{1}{12}, \frac{1}{12}, \frac{1}{6}, \frac{1}{6}, \frac{1}{6}$ respectively. I need to use the Central limit theorem to estimate the probability that the total number of 1s that I see is within [2970,3040].
So far, I only know the fact that the random variables Xi of of CLT are each rolls. I'm not sure how I'm supposed to apply the information given. Please help this hopeless soul :((
Define $X_i$ as the number of 1's on the i's toss. $X_i=1$ if the $i^{th}$ toss is 1, and $X_i=0$ if the $i^{th}$ toss is not 1.
By central limit theorem, we can assume $X_i's$ have normal distribution with $E(X)=9000\times\frac{1}{3}=3000$.
$Var(X)=9000\times(\frac{1}{3}-(\frac{1}{3})^2)=2000$
$\sigma=\sqrt{Var(X)}=\sqrt{2000}$
Let $T=\frac{\bar{X}-\mu}{\sigma}$, and $T$~$N(0,1)$.
So we want to calculate:
$P(2970<X<3040)=P(\frac{2970-3000}{\sqrt{2000}}<T<\frac{3040-3000}{\sqrt{2000}})$
Using R studio, with command:
pnorm((3040-3000)/sqrt(2000))-pnorm((2970-3000)/sqrt(2000))
We get $P(2970<X<3040)=P(\frac{2970-3000}{\sqrt{2000}}<T<\frac{3040-3000}{\sqrt{2000}})=0.5632858$