What is the probability that out of 245 booked reservations that exactly 224 people show up for the flight? What is the probability that no more than 224 people show up? How are these two probabilities different?

1 Answer
Jul 21, 2016

#P(x=224)# is exactly
#P(x<=224)# is at most

#p(x=224)# close to 0
#p(x<=224)# close to 1

Explanation:

I suppose given no additional information the probability of a person showing up is 50/50 although I doubt that the probability of missing your flight is that high. In any case we need to find

#P(x=224)#

for this a reasonable distribution is the binomial and we are interested in 224 success out of 245 thus

#p(x=224) = (245!)/((245-224)!224!) (1/2)^224(1/2)^(245-224)#

#p(x=224) = (245!)/((21)!224!)(1/2)^(245) ~~2*10^(-44)#

this is if we are to assume exactly.

Now at at most is equivalent to

#P(x<=224)#

in this case we need to consider
#p(x=224) + p(x=223) + ...# all the way down to #p(x=1)#. So first question asks what is the probability of exactly while the other considers the entire range. Now we can use the Cumulative distribution thus

#P(x<=224) = sum_(i=0)^224 (245!)/((245-i)!i!) (1/2)^i(1/2)^(245-i)#

close to 1