Suppose that we have a very large group of people playing the game of heads or tails with 10 coins. Each round follows a certain process:
Assume that everyone playing the game is extremely smart, and is trying to maximize their chance of winning the game. With a large number of people in a round, the average percentage of those who make it through is P % of the people in that round.
Find the closest integer to P .
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
The probability of getting k heads out of n coins follows the binomial distribution and it is given by P r ( X = k ) = ( k n ) p k ( 1 − p ) n − k , where p is the probability of getting a head in a toss.
For 10 fair coins, we have n = 1 0 and p = 2 1 and P r ( X = k ) = ( k 1 0 ) ( 2 1 ) k ( 2 1 ) 1 0 − k = 2 1 0 ( k 1 0 ) .
Let the large number of people before a round be N . As the players are extremely smart the distribution of number of players N k selecting k heads in the next toss follows the P r ( X = k ) . The average number of players who make it through a round is the expected value of number of winners in a round as given below.
E [ X ] = k = 0 ∑ 1 0 P r ( X = k ) N k = k = 0 ∑ 1 0 2 2 0 ( k 1 0 ) 2 N = 2 2 0 ( 1 0 2 0 ) N
⟹ N E [ X ] = 2 2 0 ( 1 0 2 0 ) = 1 0 2 4 2 1 8 4 7 5 6 ≈ 0 . 1 8 = 1 8 %
⟹ P = 1 8
I'm not sure that the assumption that 'smart' player's bets would follow a binomial distribution. If each player was trying to maximize their chances of making it to the next round, then they would guess the number of heads in each round that was most likely to occur. I think the assumption in the problem is that the players guess randomly in accordance with the likelihood of being correct.
Log in to reply
You are right, I was just saying the random guessing follows that of a binomial distribution. Notice that the outcome with the highest probability is X = 5 . If everyone bets that theoretically no one will win and the players know about this and therefore, they are more people bet the middle 4, 5 and 6 then the end 0, 1, 2 and 8, 9, 10, and hence follows the binomial distribution.
Problem Loading...
Note Loading...
Set Loading...
The players are not going to accept the possibility that one of their opponents will have a better chance of winning than them, so they are bound to play for a situation where everyone has the same chance of winning. If N ( x ) people choose x then the probability that any one of those people wins is N ( x ) 1 ( x 1 0 ) 2 − 1 0 0 ≤ x ≤ 1 0 and so these probabilities must all be equal. Thus we must have (if there are M players in total) N ( x ) = 2 1 0 M ( x 1 0 ) 0 ≤ x ≤ 1 0 and so the expected number of survivors of a round is E [ N ] = n = 0 ∑ 1 0 2 2 0 M ( x 1 0 ) 2 = 2 2 0 M ( 1 0 2 0 ) and so the expected proportion of survivors is ( 1 0 2 0 ) 2 − 2 0 which is 1 8 % to the nearest percentage point.