For motivation: In a town, there are $114$ busses. Each bus has a $10\%$ chance of being broken on any given day, independently of the other busses. I want to find a good estimate of the probability that on any day at least $99$ busses are able to drive.
Here is what I've done: The busses are i.i.d $X_i$'s with values in $\{0,1\}$ where $0$ means broken and $1$ not broken. We calculate $E(X)=0*0.1+1*0.9=0.9$, $Var(X)=E(X^2)-E(X)^2=0.9-0.81=0.09$ and $E(S):=E(\sum_{i=1}^{114}X_i)=\sum_{i=1}^{114}E(X_i)=114*0.9=102.6$, where we have used independence of the $X_i$. This means we get $$P[S\geq99]=P[S\geq E(S)-3.6]=P[S-E(S)\geq-3.6]$$$$=P[3.6\geq S-E(S)\geq -3.6]+P[S-E(S)>3.6]=P[|S-E(S)|\leq3.6]+P[S-E(S)>3.6]\geq P[|S-E(S)|\leq3.6]=^*1-P[|S-E(S)|>3.6]\geq\frac{Var(S)}{3.6^2}=1-\frac{114*Var(X)}{12.96}$$$$=1-\frac{0.09*114}{12.96}\approx0.21$$
where the second inequality is by Chebyshev.
Now this seems unnaturally low to me, I don't think this is a good estimate. Also, when looking up the solution to the exercise, I found that in the step I labeled with * above, the solution sets $1-P(|S-E(S)|>3.6)=1-P(|S-E(S)|\geq4.4)$, which I don't understand at all. They arrive at a $47\%$ estimate in the end instead of my $21\%$.
So a) Does somebody understand where the $4.4$ comes from or b) what other way could I arrive at the $47\%$?