Prove that among any 101 distinct positive integers, there exists 11 numbers with a sum divisible by 11.
I have tried to seperate the 101 positive integers into 10 sets such that 1 set has at least 11 integers, but I do not know what to do from here.
Break the sets according to their class mod 11 (the remainder upon dividing by 11). There are two cases: either every subset will be non-empty, or one subset will be missing. If a subset is missing, then you have 10 subsets, and one will have size at least 11. The sum of any 11 elements in that subset will be a multiple of 11. If every subset is non-empty, then take one element from each subset. Then their sum will be $0+1+2+3+...+10=0 \pmod{11}$.