Hazal Gunduz
1. A bag contains 5 green and 7 red jellybeans. How many ways can 5 jellybeans be withdrawn from the bag so that the number of green ones withdrawn will be less than 2?
choose(5,1)
## [1] 5
5 ways to get 1 green jellybean
choose(7,4)
## [1] 35
35 ways to get 4 red jellybeans
choose(7,5)
## [1] 21
21 ways to get 5 red jellybeans
(choose(5,1) * choose(7,4)) + choose(7,5)
## [1] 196
196 total possibilities
2. A certain congressional committee consists of 14 senators and 13 representatives. How many ways can a subcommittee of 5 be formed if at least 4 of the members must be representatives?
(choose(13,4) * choose(14,1)) + choose(13,5)
## [1] 11297
3. If a coin is tossed 5 times, and then a standard six-sided die is rolled 2 times, and finally a group of three cards are drawn from a standard deck of 52 cards without replacement, how many different outcomes are possible?
(2^5 * 6^2 * choose(52,3))
## [1] 25459200
4. 3 cards are drawn from a standard deck without replacement. What is the probability that at least one of the cards drawn is a 3? Express your answer as a fraction or a decimal number rounded to four decimal places.
We can find by the probability that at least one is a 3 we will take complement of the probability that no card is 3.
1 - (48/52 * 47/51 *46/50)
## [1] 0.2173756
5. Lorenzo is picking out some movies to rent, and he is primarily interested in documentaries and mysteries. He has narrowed down his selections to 17 documentaries and 14 mysteries.
Step 1. How many different combinations of 5 movies can he rent?
choose(31,5)
## [1] 169911
Step 2. How many different combinations of 5 movies can he rent if he wants at least one mystery?
We will subtract the answer from the all documentaries from step 1 to find out at least one mystery.
choose(31,5) - choose(17,5)
## [1] 163723
6. In choosing what music to play at a charity fund raising event, Cory needs to have an equal number of symphonies from Brahms, Haydn, and Mendelssohn. If he is setting up a schedule of the 9 symphonies to be played, and he has 4 Brahms, 104 Haydn, and 17 Mendelssohn symphonies from which to choose, how many different schedules are possible? Express your answer in scientific notation rounding to the hundredths place.
# 4 ways for 3 symphonies from Brahms
# 104 ways for 3 symphonies from Haydn
# 17 ways for 3 symphonies from Mendelssohn
format((choose(4,3) * choose(104,3) * choose(17,3)), scientific = T, digits = 3)
## [1] "4.95e+08"
7. An English teacher needs to pick 13 books to put on his reading list for the next school year, and he needs to plan the order in which they should be read. He has narrowed down his choices to 6 novels, 6 plays, 7 poetry books, and 5 nonfiction books.
Step 1. If he wants to include no more than 4 nonfiction books, how many different reading schedules are possible? Express your answer in scientific notation rounding to the hundredths place.
# 4 nonfiction books out of 5 & 9 other books out of 19(6 novels, 6 plays, 7 poetry)
# 3 nonfiction books out of 5 & 10 other books out of 19
# 2 nonfiction books out of 5 & 11 other books out of 19
# 1 nonfiction books out of 5 & 12 other books out of 19
# 0 nonfiction books & 13 other books out of 19
format((choose(5,4) * choose(19,9) + choose(5,3) * choose(19,10) + choose(5,2) * choose(19,11) + choose(5,1) * choose(19,12) + choose(5,0) * choose(19,13)), scientific = T, digits = 3)
## [1] "2.42e+06"
Step 2. If he wants to include all 6 plays, how many different reading schedules are possible? Express your answer in scientific notation rounding to the hundredths place.
# 6 plays out of 6 & 7 other books out of 18 other books (6 novels, 7 poetry, 5 nonfiction)
format((choose(6,6) * choose(18,7)), scientific = T, digits = 3)
## [1] "3.18e+04"
8. Zane is planting trees along his driveway, and he has 5 sycamores and 5 cypress trees to plant in one row. What is the probability that he randomly plants the trees so that all 5 sycamores are next to each other and all 5 cypress trees are next to each other? Express your answer as a fraction or a decimal number rounded to four decimal places.
# There are two possible ways which are: (S S S S S C C C C C) OR (C C C C C S S S S S)
round((2 / choose(10,5)), 4)
## [1] 0.0079
9. If you draw a queen or lower from a standard deck of cards, I will pay you $4. If not, you pay me $16. (Aces are considered the highest card in the deck.)
Step 1. Find the expected value of the proposition. Round your answer to two decimal places. Losses must be expressed as negative values.
# There are 52 cards, 44 of them are a queen or lower, 8 of them are above queen
round((4 * (44/52)) + (-16 * (8/52)), 4)
## [1] 0.9231
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.
round(0.9231 * 833, 2)
## [1] 768.94