I test my skills in statistics and probabilities and I decided to work with distributions. So, I tried to solve the below problem
Problem
Suppose that a hospital serves in average $80$ citizens daily from a city with $11000$ citizens. In a random day, what is the probability that the hospital serves at most $8$ citizens?
My solution
I defined a random variable $X$ {number of citizens who will be served in one day }.
$X \sim b(x;n=11000,p)$, where \begin{align} p &= \frac{E(X)}{n} = \frac{80}{11000} = 0.07 \end{align}
Provided that $npq = 76.4 > 10$:
$b(x;n=11000,p) \sim N(pq,npq)$
According to the central limit theorem, \begin{align} Z = \frac{X - np}{\sqrt{npq}} = \frac{8-80}{8.74} = -8.23 \end{align} So $P(Z\le -8.23) = 0$.
Where is my fault? I think my reasoning is not correct.