practice problems pending
Q1. "In a room of n people (where n >= 2), prove that there are always at least two people who have shaken hands with the exact same number of people."
Q2. "In a tournament with n players (where n >=2 ), prove that at any given moment during the tournament, there are always at least two players who have completed the exact same number of games."
Q3. Twenty pairwise distinct positive integers are all < 70. Prove that among their pairwise differences there are four equal numbers.
Q4. Fifty-one small insects are placed inside a square of side 1. Prove that at any moment there are at least three insects which can be covered by a single disk of radius 1/7.
Solution1:
Possible number of handshakes: 0,1,2 ... n-1
But 0 and n-1 are not possible together, one of them has to be removed.
So now there are n people and (n-1) possible values.
By pigeonhole principle, at least 2 people need to have same number of handshakes.
Solution 2:
Same as above.
Solution 3:
1,2...68 are possible diffs.
20C2 = 190 pairs.
So many buckets with 3 values. But 4? How?
Let's look at a different approach.
Let's say a1,a2...a20 are the picked numbers in ascending order.
(a2-a1) + (a3-a2)... + (a20-a19) = a20 - a1
Max(a20-a1) = 68
Now, to do a proof by contradiction, let's assume that no more than 3 diffs are same.
To minimize the differences:
3*1 + 3*2 .. 3*6 + 7 <= 68
But LHS = 70 hence contradiction.
So we need at least 4 diffs to be same.
Solution 4:
First thought: What if the insects are small enough to fit in the gaps left after packing as many disks as possible inside the square?
Counter: Problem doesn't say that first you pack the disks and then settle the insects. It's the reverse. First the insects are settled in any way they want and then we have to show that at least 3 of them can be covered by a single disk. In fact if we pack them like this very tightly, a single disk placed overhead can easily cover them all!
So:
Let's divide the square into 25 smaller ones each with side = 1/5.
Now at least one of those squares will have at least 3 insects since 51/25 > 2 and using pigeonhole.
To cover that square fully the diameter of the disk should be more than the diagonal of the square.
2/7 > sqrt(2)/5 => 10 > 7.sqrt(2) => 100 > 98 which is true.
H.P.
Further, why did we choose 25 smaller squares? Why not 16 or 36?
If we choose 36, then pigeonhole will fail and we can't force 3 insects into one square.
If we choose 16, the pigeonhole will pass but the disk diameter won't be enough to cover the sqaure.
So 25 is the sweet spot.
Comments
Post a Comment