Step 1: 0 green jellybeans and 5 red jellybeans Number of ways = \(\binom{7}{5} = C(7, 5) = 21\)
Step 2: 1 green jellybean and 4 red jellybeans
Number of ways = \(\binom{5}{1} \times \binom{7}{4} = C(5, 1) \times C(7, 4) = 5 \times 35 = 175\)
Total ways = Step 1 + Step 2 = \(21 + 175 = 196\)
Answer: 196
Step 1: 4 representatives and 1 senator
Number of ways = \(\binom{13}{4} \times \binom{14}{1} = C(13, 4) \times C(14, 1) = 715 \times 14 = 10,010\)
Step 2: 5 representatives
Number of ways = \(\binom{13}{5} = C(13, 5) = 1287\)
Total ways = Step 1 + Step 2 = \(10,010 + 1287 = 11,297\)
Answer: 11,297
For each toss of a coin \(2^5 = 32\) outcomes.
For each roll of a die \(6^2 = 36\) outcomes.
For drawing cards \(\binom{52}{3}\) = \(C(52,3)\)
total outcome: \(32*36*2210 = 25459200\)
Answer: 25459200
P(no 3 1st) = \(\frac{48}{52}\)
P(no 3 2nd) = \(\frac{47}{51}\)
P(no 3 3rd) = \(\frac{46}{50}\)
P(no 3) = \(\frac{48}{52} \times \frac{47}{51} \times \frac{46}{50}\)
P(at least one 3 ) = 1 - P(no 3) = 1 - \(\frac{48}{52} \times \frac{47}{51} \times \frac{46}{50}\) = 0.217
Answer: 0.217
Step 1. How many different combinations of 5 movies can he rent?
Total combinations of 5 movies out of 31 = \(C(31, 5)\) = 228,675
Step 2. How many different combinations of 5 movies can he rent if he wants at least one mystery?
Combination of 5 movies with no mysteries = \(C(17, 5)\) = 5,157
Combination of 5 movies with at least one mystery = \(C(31, 5)\) - \(C(17, 5)\) = 223,518
Answer: 223,518
Brahms = \(C(4,3)\) = 4
Haydn = \(C(104,3)\) = 18,136,160
Mendelssohn = \(C(17,3)\) = 680
Number of schedules =\(C(4,3)×C(104,3)×C(17,3)\) = \(4*18,136,160*680 = 3.35616×10^7\)
Answer: \(3.35616×10^7\)
# Step 1
# If he wants to include no more than 4 nonfiction books, how many different reading schedules are possible?
no_more_than_4nf <- choose(19, 13) -
choose(19, 9) * choose(5, 5)
# Step 2
# If he wants to include all 6 plays, how many different reading schedules are possible?
all_6_plays <- choose(18, 7)
no_more_than_4nf
## [1] -65246
all_6_plays
## [1] 31824
5 sycamores next to each other = \(5!\)
5 cypress next to each other = \(5!\)
probability = \(\frac{5!*5!}{10!}\) = .0039
Answer:.0039
Step 1. Find the expected value of the proposition. Round your answer to two decimal places. Losses must be expressed as negative values.
Probability of winning = P(Q or Lower) = \(\frac{48}{52} = \frac{12}{13}\)
Probability of losing = P(nQ or Lower) = \(\frac{4}{52} = \frac{1}{13}\)
Expected Value = EV = (\(\frac{12}{13}\) * 4) - (\(\frac{1}{13}\) * 16) = \(\frac{32}{13}\) = 2.46
Step 2. If you played this game 833 times how much would you expect to win or lose? Round your answer to two decimal places. Losses must be expressed as negative values.
\(\frac{32}{13}\) * 833 = 2049.18
Answer: $2049.18