I have n servers and I want to know the number of servers I need to make the probability that at least 10 servers are active to be 0.99. The probability that a server fails is equal to 0.01.
So what I have so far is that I know I need at least 10 servers to be active. So the probability would be:
sum (from k = 10 to n) of (n choose k)*(0.99 ^ k)*(0.01^(n-k)) = 0.99
and I would have to do this for every n from 10 to n. I want to know is there any shorter way? Like what if I did the probability that exactly 9 servers failed and I did one minus that probability like this:
1 - (n choose 9)*(0.01^9)*(0.99^(n-9)) = 0.99
Would this give me the right answer? Please help :)
Update, I used an online calculator to solve for the latter equation (1 - probability that exactly 9 failed) and I got the maximum number of servers that could be used to make the probability of at least 10 servers to be active to be greater than 0.99 would be 380 servers, any more than that would result in a probability of at least 10 servers to be active to be less than 0.99.
I'm not sure if this is correct though. :)