HMMT 十一月 2021 · THM 赛 · 第 2 题
HMMT November 2021 — THM Round — Problem 2
题目详情
- Let n be the answer to this problem. An urn contains white and black balls. There are n white balls and at least two balls of each color in the urn. Two balls are randomly drawn from the urn without replacement. Find the probability, in percent, that the first ball drawn is white and the second is black.
解析
- Let n be the answer to this problem. An urn contains white and black balls. There are n white balls and at least two balls of each color in the urn. Two balls are randomly drawn from the urn without replacement. Find the probability, in percent, that the first ball drawn is white and the second is black. Proposed by: David Vulakh Answer: 19 Solution: Let the number of black balls in the urn be k ≥ 2. Then the probability of drawing a n k white ball first is , and the probability of drawing a black ball second is . This gives us the n + k n + k − 1 equation nk n = ( n + k )( n + k − 1) 100 from which we get ( n + k )( n + k − 1) = 100 k Let m = n + k . Since 100 | m ( m − 1), we must have that either 100 divides one of m, m − 1 or 25 divides one of m, m − 1 and 4 divides the other. Since m, m − 1 > k , if either of m or m − 1 is greater than or equal to 100, the product m ( m − 1) > 100 k . Therefore, the only possible values for m are 25 and 76. If m = 25, we have m ( m − 1) = 600 = ⇒ k = 6 = ⇒ n = 19 If m = 76, we have m ( m − 1) = 5700 = ⇒ k = 57 = ⇒ n = 19 So n = 19 is the unique solution.