December 22nd, 2006, 11:10 am
I think I understand now where I failed.In the example I gave below:{6, 15, 5, 9, 7, 2, 4, 10, 1, 16, 12, 11, 13, 8, 14, 3}{{{6, 15}, {5, 9}, {2, 7}, {4, 10}, {1, 16}, {11, 12}, {8, 13}, {3, 14}},{{5, 6}, {2, 4}, {1, 11}, {3, 8}},{{2, 5}, {1, 3}},{{1, 2}}}{{{11, 16}, {2, 3}},{{2, 11}}}{{{4, 7}, {3, 5}, {11, _}, {_, _}},{{3, 4}, {11, _}},{{3, 11}}}Instead of doing a 2nd KO, we take the set{16, 11, 3, 2}and play{{11,16},{3,11},{2,3}}and we look for the 3rd best in the union of{7,4,5} and {3}, we eliminate 11.Using that logic and rewriting my earlier conclusion:C must be in either of the following subsets:(i) 0 to L[n]-1 players defeated by B on the first KO (ii) 1 to L[n]-1 players defeated by B on the "bubble" 2nd tournamentSo C must win a 3rd tournament with L[n]-1 (minimum) to L[n] (maximum) players.But there's an interesting example:{16, 7, 13, 8, 1, 3, 14, 2, 9, 5, 4, 10, 12, 11, 15, 6}{{{7, 16}, {8, 13}, {1, 3}, {2, 14}, {5, 9}, {4, 10}, {11, 12}, {6, 15}}, {{7, 8}, {1, 2}, {4, 5}, {6, 11}}, {{1, 7}, {4, 6}}, {{1, 4}}}So if we do the bubble 2nd tournament:{{2, 3}, {2, 7}, {2, 4}}We have to find the 3rd in the union of the sets:{14} (loser to B in 1st tournament) and{3, 7, 4} (losers to B in 1st tournament)and we'll have 3 another comparisons so arrive at sevvost's upper bound 2 L[n] + n - 3.But a KO 2nd tournament will be:{{{2, 3}, {4, 7}}, {{2, 4}}}and the 3rd is to be found in the set{14, 3, 4} which takes 2 comparisons ...So my question is then:If we apply the bubble do we reduce the upper bound at the expense of increasing the lower bound, and conversely if we apply KOs do we reduce the lower bound at the expense of increasing the upper bound ?