Maths Olympiad Prep

Library / /442 of 740

, 2024

Combinatorics Difficulty 5.0 AIME, harder Find the answer United States

Problem:

There are 1024 players, ranked from 1 (most skilled) to 1024 (least skilled), participating in a single elimination tournament. In each of the 10 rounds, the remaining players are paired uniformly at random. In each match, the player with a lower rank always wins, and the loser is eliminated from the tournament.

For each positive integer n[1,1024]n \in [1,1024], let f(n)f(n) be the expected number of rounds that the participant with rank nn participates in. Estimate the minimum positive integer NN such that f(N)<2f(N)<2.

Submit a positive integer EE. If the correct answer is AA, you will receive max (0,20EA2)\left(0,20-\left\lfloor\frac{|E-A|}{2}\right\rfloor\right) points.

A number or a short expression. Fractions can be typed as 3/2, and spacing doesn't matter.

Solution

Solution:

The probability that the rank NN player passes round ii (where i=0i=0 is implied as 1) is
(10242iN1)(1023N1) \frac{\binom{1024-2^{i}}{N-1}}{\binom{1023}{N-1}}

Summing this from i=0i=0 to 99 (each represents the expectation of advancing one round), we must find the minimum NN for which the sum goes below 22. Let rr indicate N1N-1.

The first term is 11, the second simplifies to 1023r1023\frac{1023-r}{1023}, and round ii's contribution is
j=02i21023rj1023j \prod_{j=0}^{2^{i}-2} \frac{1023-r-j}{1023-j}

At this point, a program may output N=350N=350.

However, one may notice that for larger ii, this term vanishes; in fact, estimating this product with k2i1k^{2^{i}-1} where k=1023r1023k=\frac{1023-r}{1023}.

The trailing terms in the product will be a bit smaller than kk, but vanishes. If we do find the estimate for kk where i=09k2i1=2\sum_{i=0}^{9} k^{2^{i}-1}=2, kk will be a bit too small, the true kk being something slightly greater.

The main concern is how many great of an upper limit for ii we choose to approximate with for kk. If we stop at i=2i=2, for instance, we have 1+k+k3=21+k+k^{3}=2, where we might find k=23k=\frac{2}{3} a just estimate, 23+827\frac{2}{3}+\frac{8}{27} being just shy of 11. We may produce/cursory check 0.670.67 or 0.680.68 as an estimate for kk (from this equation, around 0.6830.683). This produces N=339N=339 or N=328N=328.

Estimating the real solution to 1+k+k3+k7=21+k+k^{3}+k^{7}=2 produces very close to the maximum number of points. Given our estimate for k1k_{1}, just above 23\frac{2}{3}, we can estimate that k712821870.06k^{7} \approx \frac{128}{2187} \approx 0.06.

Then, we estimate the solution to k+k3=10.06k+k^{3}=1-0.06, for which we might notice that if k=k1δk=k_{1}-\delta, then by Newton's method, we can approximate kk by
δ(1+3k2)δ(1+349)=0.06 \delta \cdot\left(1+3 k^{2}\right) \approx \delta \cdot\left(1+3 \cdot \frac{4}{9}\right)=0.06

making δ\delta about 0.06370.026\frac{0.06 \cdot 3}{7} \approx 0.026. If this is subtracted from k1=0.683k_{1}=0.683, then k=0.657k=0.657, producing N=351N=351.

Want a route through all this instead of an archive? The track puts 2,000 problems in a working order, from AMC 10 level to the IMO shortlist.

Source: MathNet, licensed CC-BY-4.0. Statement reproduced verbatim; metadata (topic, difficulty) added by this project.