In: Statistics and Probability
6. P (x <= 9)
Given,
n= 23 , p=0.22
Excel function :
BINOM.DIST function
Returns the individual term binomial distribution probability. Use BINOM.DIST in problems with a fixed number of tests or trials, when the outcomes of any trial are only success or failure, when trials are independent, and when the probability of success is constant throughout the experiment. For example, BINOM.DIST can calculate the probability that two of the next three babies born are male.
Syntax
BINOM.DIST(number_s,trials,probability_s,cumulative)
The BINOM.DIST function syntax has the following arguments:
Number_s Required. The number of successes in trials.
Trials Required. The number of independent trials.
Probability_s Required. The probability of success on each trial.
Cumulative Required. A logical value that determines the form of the function. If cumulative is TRUE, then BINOM.DIST returns the cumulative distribution function, which is the probability that there are at most number_s successes; if FALSE, it returns the probability mass function, which is the probability that there are number_s successes.