Struggling with these problems, which I believe are both cases of pigeonhole principle but I am struggling to get the right answer.
1) An IT survey asks desktop computer users the following questions: -- which OS type they are using (Windows, macOS, Linux, other) -- if Windows: Windows 10, 8.1, 7 or other -- if macOS: 10.12, 10.11, lower -- if Linux: Mint, Debian, Ubuntu, other -- screen resolution used (lower, equal or higher than 1920x1080) -- whether they play games on their desktop (yes/no) How many people have to be asked to guarantee that you will find 10 with identical answers?
2) How many subsets are there of a set of 100 elements that contain at least 4 elements? You must simplify your answer until it contains only unresolved large exponential expressions of the form with a and b integers.
Thank you.
For (2)
There are $2^{100}$ subsets of a set of $100$ elements (each element is either in or our of the subset). How many of them have fewer than 4 elements? ${{100}\choose{3}}+{{100}\choose{2}}+{{100}\choose{1}}+{{100}\choose{0}}=166751$. So the number of subsets containing at least $4$ elements is $2^{100}-166751$.