Quote (TritonV8 @ May 4 2013 05:26pm)
I think I tried to over-complicate this. I ended up choosing Binomial Distribution
p=.4
q=.6
n=25
Obviously a discrete function, so:
P[8<=X<=11] = f(8) + f(9) + f(10) + f(11)
Please let me know if I chose the wrong distribution!
Binomial is obviously the good choice... as long as the "random" sample is random (not gonna happen in real life).
Yes, P(X is in [8;11]) = p (X=8) + ... + p (X=11)
= ( 8 25 ) * 0.4 ^8 * 0.6 ^ 17 + ( 9 25 ) * 0.4 ^ 9 * 0.6 ^ 16 + ... + ( 11 25 ) * 0.4 ^ 11 * 0.6 ^ 14