retagged by
615 views
1 votes
1 votes
Selection of how many integers from the first ten positive integers (1, 2, ...) guarantees that there must be a pair of these integers with a sum equal to 11 ?
retagged by

1 Answer

Best answer
1 votes
1 votes
Among numbers 1 to 10, there are 5 pairs that corresponds to the sum 11. They are (10,1),(9,2),(8,3),(7,4) and (6,5). We can create a run of selections without any pair corresponding to the sum 11 upto a max of 5 numbers. For eg. the set {1,2,3,4,5} does not have any pairs summing up as 11. But in this set, if we add another  number from the set {1,..10} – {1,2,3,4,5}, then there will be a pair which corresponds to the sum 11 and that will be the one that we have enumerated in the beginning. This problem corresponds to a pigeon hole principle where 5 holes are filled up without a matching sum;however, the 6th number have to be placed along with the pair that corresponds to the sum 11.
selected by

Related questions

3 votes
3 votes
2 answers
2