1

  1. Combinations (order doesn’t matter) and repetition is not allowed.
    title: Correct answer.
  2. We know first slots are taken by, so check for last .
    title: Correct answer.
  3. Pick from as before.
    title: Correct answer.
  4. Consider where Mary or Peter are definitely there and the other is not in the pool ( from ).
    title: Correct answer.
  5. This is the first part of above.
    title: Correct answer.

2

  1. In this case, we find permutations where repetitions are allowed. It can either be heads or tails, outcomes. We flip it times.
    title: Correct answer.
  2. If there are exactly three heads, repetition is not allowed and order matters doesn’t matter. We have items which we are selecting from a total of .
    title: Correct answer.
    How many ways can we choose numbers from ?
  3. Assume we have already had heads, find permutations where repetitions are allowed where and .
    title: Incorrect answer.
    This is actually all outcomes excluding those containing either none, one or two heads:
    $$
     2^8 - \begin{pmatrix} 8\\0 \end{pmatrix} - \begin{pmatrix} 8\\1 \end{pmatrix} - \begin{pmatrix} 8\\2 \end{pmatrix} = 219
    $$
  4. Same as asking for exactly heads so:
    title: Correct answer.