Can someone please explain to me how to approach this problem:
Suppose that a person with seven friends invites a subset of three friends to dinner every night for one week (seven days). How many ways can this done done so that all friends are included at least once?
I can't think of a good way to break this down into cases. Thanks for the help.
For each set of $k$ friends ($k \ge 3$), the number of ways to invite three of these friends each night (thus excluding the remaining $7-k$ friends, and maybe more) is ${k \choose 3}^7$. The number of ways excluding at least one friend is $$ \sum_S (-1)^{|S|} {|S| \choose 3}^7 = \sum_{k=3}^6 (-1)^{k} {7 \choose k} {k \choose 3}^7$$ where the sum is over all subsets $S$ of at least $3$ friends. The number of ways where nobody is excluded is then $$\sum_{k=3}^7 (-1)^{k+1} {7 \choose k} {k \choose 3}^7$$