How many distinct integers between 1 and 100 inclusive would you have to pick (at the very least) to be guaranteed that there will be two of them that sum to 101?
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
Make a partition of the set { 1 , 2 , . . . , 1 0 0 } as follows:
{ 1 , 1 0 0 } , { 2 , 9 9 } ,..., { 5 0 , 5 1 }
The sum of any two elements of the same subset is 101, thus, we can choose at most 1 element of each set such that the sum of any two elements, that we have selected, is different to 101. Indeed, we can pick 50 elements, and, by Pigeonhole Principle, the next element we choose will belong to the same set of another element already selected. Therefore we have to pick up at least 51 elements of the initial set.