Knockout Stage

Sign up to mark as complete Sign up to bookmark this question
Asset Pricingx / 34
Behavioral Questionsx / 7
Brain Teasersx / 76
Derivatives Theoryx / 108
Digital Assets - Cryptox / 64
Energy Tradingx / 40
Linear Algebrax / 24
Math Questionsx / 45
Probability and Statisticsx / 169
Programmingx / 35
Totalx / 602

Knockout Stage

32 teams are playing in a competition. They are currently at the knock out stage, where each game 2 teams compete with each other to advance to the next round. The stages look as follows:

knockoutstage

The teams are numbered from 1 to 32, according to their superiority. In other words, Team #1 always beats Team #2, Team #2 always beats Team #3, etc.

What's the probability that Team #1 and Team #3 will play in the final?
Consider the "two sides" of the knockout stage table, being the left side of the table, and the right side of the table. As you can see in the figure, teams from opposite sides of the final can only meet in the final. Therefore, we need to meet two conditions:
  • Team #3 needs to be on the opposite side of the table compared to Team #1, otherwise they won't meet in the final.
  • Team #2 needs to be on the same side as Team #1, such that it will be eliminated agains Team #1 and it won't face (and eliminate) Team #3.
So, the probability that Team #1 and Team #3 meet in the final is equal to \begin{equation} 1 * \frac{16}{31} * \frac{15}{30}  = \frac{8}{31}  \end{equation}
  • "1" because Team #1 can start at either the left side or the right side.
  • $ \frac{16}{31}$ because Team #3 needs to be at the opposite side from Team #1, where it can be at any of the 16 of the remaining 31 spots.
  • $\frac{15}{30} $ because team #2 needs to be at the same side as Team #1, where it can be at any of the 15 of the remaining 30 spots. The reason it's 15 and not 16 is because Team #1 already has one spot at that side of the tree.
Alternative method - Combinatorial Analysis

It would be possible to solve this using combinatorial analysis as well, however, it's more intensive to do so.
  • In order to construct a half of the three, there is a total of $\binom{32}{16} = 601.080.390$ ways to do so.
  • Considering the positions of Teams #1 (first half), #2 (first half), and #3 (second half) are fixed, the number of successful ways to order the teams in the first half is $\binom{32-3}{16-2} = 77.558.760$.
This is only done for if Teams #1 and #2 are in the first half of the tree, and Team #3 in the other half. It can also happen the other way around. Therefore, the probability that Team #1 and Team #3 end up in the final, is equal to \begin{equation} 2 * \frac{77.558.760}{601.080.390} = \frac{155.117.520}{601.080.390} = \frac{8}{31} \end{equation} Simulation
If you want to simulate this with Python, try the following:
import random


def simulate_tournament():
teams = list(range(1, 33))
random.shuffle(teams)

half1 = teams[:16]
half2 = teams[16:]

if 1 in half1 and 3 in half2 and 2 in half1:
return True
elif 1 in half2 and 3 in half1 and 2 in half2:
return True
else:
return False

def estimate_probability(num_simulations=100000):
count = 0
for _ in range(num_simulations):
if simulate_tournament():
count += 1
return count / num_simulations

probability = estimate_probability()
probability
Correct Answer: 0.26
Title Category Subcategory Difficulty Status
All Faces Probability and StatisticsGeneralMedium
All-Boys City Probability and StatisticsGeneralEasy
Bikes on the Road Probability and StatisticsGeneralEasy
Birthday Problem #1 Probability and StatisticsGeneralEasy
Birthday Problem #2 Probability and StatisticsGeneralEasy
Both Card Colors Probability and StatisticsGeneralEasy
Checkmate Probability and StatisticsGeneralEasy
Coin Race #1 Probability and StatisticsGeneralEasy
Coins in Boxes Probability and StatisticsGeneralEasy
Complementary Probability and StatisticsGeneralMedium
Different Digits Probability and StatisticsGeneralEasy
Even Heads Probability and StatisticsGeneralEasy
Even Sum Probability and StatisticsGeneralEasy
Exponential Distribution #2 Probability and StatisticsGeneralMedium
Five Ascending Cards Probability and StatisticsGeneralMedium
Gambler's Ruin #1 Probability and StatisticsGeneralEasy
Gambler's Ruin #2 Probability and StatisticsGeneralEasy
Gambler's Ruin #3 Probability and StatisticsGeneralMedium
Going to the Beach #2 Probability and StatisticsGeneralHard
Higher Card Probability and StatisticsGeneralMedium
How Many Children Probability and StatisticsGeneralHard
Jumping Robots Probability and StatisticsGeneralHard
Lower Die Probability and StatisticsGeneralMedium
Meeting Probability Probability and StatisticsGeneralEasy
Multiply 3 Dice Probability and StatisticsGeneralEasy
Old Phone #1 Probability and StatisticsGeneralMedium
Old Phone #2 Probability and StatisticsGeneralHard
Optimal Spread Probability and StatisticsGeneralHard
Outcome Dice Probability and StatisticsGeneralEasy
Perfect Correlation Probability and StatisticsGeneralEasy
Rainy Day Probability and StatisticsGeneralMedium
Tennis Game Probability and StatisticsGeneralMedium
Example
Tennis Match: Win in 2 or 3 Sets Probability and StatisticsGeneralMedium
Two Digit Number Probability and StatisticsGeneralEasy
Uniform Distribution #2 Probability and StatisticsGeneralMedium
Uniform Distribution #3 Probability and StatisticsGeneralMedium
Uniformly Distributed Profit Probability and StatisticsGeneralMedium
Variance of Two Variables Probability and StatisticsGeneralEasy
Walking Home #1 Probability and StatisticsGeneralEasy
Walking Home #2 Probability and StatisticsGeneralEasy

Please log in to see the discussion.