How many sales will be won?
Now Amir wants to know how many deals he can expect to close each week if his win rate changes. Luckily, you can use your binomial distribution knowledge to help him calculate the expected value in different situations. Recall from the video that the expected value of a binomial distribution can be calculated by \(n \times p\).
Este exercício faz parte do curso
Introduction to Statistics in Python
Instruções do exercício
- Calculate the expected number of sales out of the 3 he works on that Amir will win each week if he maintains his 30% win rate.
- Calculate the expected number of sales out of the 3 he works on that he'll win if his win rate drops to 25%.
- Calculate the expected number of sales out of the 3 he works on that he'll win if his win rate rises to 35%.
Exercício interativo prático
Experimente este exercício completando este código de exemplo.
# Expected number won with 30% win rate
won_30pct = ____ * ____
print(won_30pct)
# Expected number won with 25% win rate
won_25pct = ____
print(won_25pct)
# Expected number won with 35% win rate
won_35pct = ____
print(won_35pct)