Binomial Distributions
Binomial Distributions – At Most
Learning Objectives
Calculate the probability of at most number of successes.
If we want to calculate the probability of a range of x values using the formula:
- We need to add all possible probabilities together.
- Ex:
If we want to calculate the probability of a range of x values using BINOM.DIST:
- Set ‘cumulative’ = TRUE (or 1)
- Ex: P(at most 2 sales) = P(x ≤ 2) = BINOM.DIST(2, , p, TRUE)
Let us re-examine the salesperson problem:
- There are ten calls made in the day.
- This means that there are between 0 and 10 possible sales made in a day.
- What if we add up all of those possible probabilities?
- Let us examine this in the next example.
Example 26.1.1
Problem Setup: Again, let a salesperson call 10 clients in a day. Let the odds of the salesperson making a sale with any one of the clients be =0.3
Question: What is the probability that the salesperson makes between 0 and 10 sales in a day?
Solution: In the previous section, we found the probabilities for all possible number of sales:
To calculate the probability of between 0 and 10 sales in the day, add up all these probabilities:
Conclusion: There is a 100% chance that the salesperson makes between 0 and 10 sales in a day. Why is this? Because that range encompasses all the possible outcomes that can happen and we know that the sum of all possible probabilities in a probability distribution must equal to 1.
- How would we do the calculation in the previous example in Excel?
- We would use Cumulative = TRUE or 1.
- Let us try this in the next example.
Example 26.1.2.
Problem Setup: We will use Excel’s binom.dist call to calculate the probability of between 0 and 10.
Solution: Click here to download the Excel solutions. Also, see the video below:
- Let us now consider the probability of at most a certain number of successes occurring.
- We denote ‘at most’ with a ‘≤’ symbol.
- It can also be stated as ‘less than or equal to.’
Example 26.2.1 – Using the Formula
Problem Setup: A hotel’s records indicate that 5% of its guests are visitors from the U.S.A.
Question: From a random sample of 12 guests, what is the probability that at most one of them is from the U.S.A.?
Solution: We know the following:
- and .
This gives:
Conclusion: There is an 88.16% chance that at most one of their guests is from the U.S.A.
In Excel’s BINOM.DIST function, when cumulative is set to TRUE (or 1):
- Excel calculates the probability of having up to and including (‘number_s‘) successes.
- BINOM.DIST(, , , 1) = P( ≤ )
- Let us revisit example 26.2 to better understand this concept.
Example 26.2.2 – Using BINOM.DIST()
If we wanted to solve example 26.2 using Excel’s BINOM.DIST() function:
P(x ≤ 1) = BINOM.DIST(1, 12, 0.05, 1) = BINOM.DIST(1, 12, 0.05, TRUE) = 0.8816
Click here to download the Excel solution file for the above problem.
Key Takeaways: Binomial Distributions – At Most
- Are there any notes you want to take from this section? Is there anything you’d like to copy and paste below?
- These notes are for you only (they will not be stored anywhere)
- Make sure to download them at the end to use as a reference