1

Given a set $A \subseteq \{10,11,12,...98,99\}$ such that $|A|=10$. Prove using Pigeonhole Principle there are 2 disjoint non-empty subsets of $A$ with the same Sum.

Direction or Hint would be appreciated.

  • 1
    Firstly you can calculate the number of ways of selecting 2 disjoint subsets with 2 elements each and then you can calculate the different number of sums possible if that comes out to be less than your first calculation then you are done – user481779 Dec 31 '17 at 11:18

2 Answers2

5

Hint. The sum of the elements of a non-empty subset of $A$ is an integer in the interval $$\left[10,\sum_{k=90}^{99}k\right]=[10,945].$$ Moreover $A$ has $2^{10}-1=1023$ non-empty subsets.

Robert Z
  • 147,345
1

The range of sums of a subset of $|A| \le 10$ is $\le 21 (10+11)$ and $945\ge (90+91+...+99)$, therefore $925$ different sums you can get from a subset of $\{10,11,...,98,99\}$ if $|A|\le10.$

In a set $A, |A| = 10$, there are $2^{|A|} - 1$ non-empty subsets = $1023$.

$1023 \gt 945$, therefore considering $945$ "pigeonholes", atleast $2$ disjoint sets will share the same sum. We can force our sets $A,B\, s.t \,\Sigma A = \Sigma B$ to be disjoint easily by -

$$ A = A \backslash \{A\cap B\} $$ $$ B = B \backslash \{B\cap A\} $$

As required.

Yariv Levy
  • 1,145