Homework 6

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?

Solution: Could be 7 reds or 6 reds and 1 green.

choose(5,1) * choose(7,4) + choose(5,0) * choose(7,5)
## [1] 196

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?

Solution: Could be 4 reps with 1 senator or 5 reps.

choose(13,4) * choose(14,1) + choose(13,5) * choose(14,0)
## [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?

Solution: 2 outcomes x 5 then 6 outcomes x 2 then 52,51,50 x 3

(2^5) * (6^2) * (52*51*50)
## [1] 152755200

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.

Solution: We’ll do 1 - (Not a three/52 * not/51 * not/50)

round((1 - (48/52 * 47/51 * 46/50)),4)
## [1] 0.2174

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.

Solutions: 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 step 1 less the number of ways to select all documentaries.

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.

Solution:

symph <- choose(4,3) * choose(104,3) * choose(17,3)
formatC(symph,format="e",digits=2)
## [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.

Solutions:

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.

Total of 24 possible books. Order matters.

 nf <- factorial(19)/factorial(19-13) + (factorial(19)/factorial(19-12)) * (factorial(5)/factorial(5-1)) + (factorial(19)/factorial(19-11)) * (factorial(5)/factorial(5-2)) + (factorial(19)/factorial(19-10)) * (factorial(5)/factorial(5-3)) + (factorial(19)/factorial(19-9)) * (factorial(5)/factorial(5-4))
formatC(nf,format="e",digits=2)
## [1] "3.74e+14"

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.

ap <- (factorial(6)/factorial(6-6)) * (factorial(18)/factorial(18-7))
formatC(ap,format="e",digits=2)
## [1] "1.15e+11"

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.

Solution: 2 ways it could work = SSSSSCCCCC or CCCCCSSSSS

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.)

Solutions:

Step 1. Find the expected value of the proposition. Round your answer to two decimal places. Losses must be expressed as negative values. 8 cards lose

exp_win = (1 - 8/52) * 4
exp_loss = (8/52) * 16
exp_value = exp_win - exp_loss
round(exp_value,2)
## [1] 0.92

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(exp_value * 833,2)
## [1] 768.92