0%

Problem 783


Problem 783


Urns

Given n and k two positive integers we begin with an urn that contains kn white balls. We then proceed through n turns where on each turn k black balls are added to the urn and then 2k random balls are removed from the urn.

We let Bt(n,k) be the number of black balls that are removed on turn t.

Further define E(n,k) as the expectation of t=1nBt(n,k)2.

You are given E(2,2)=9.6

Find E(106,10). Round your answer to the nearest whole number.


罐子

对于给定的正整数nk,考虑一个一开始装有kn个白球的罐子。在之后的n轮中,每一轮我们向罐中加入k个黑球,再随机拿出2k个任意颜色的球,

Bt(n,k)为在第t轮拿出的黑球的数目。

再记E(n,k)t=1nBt(n,k)2的期望值。

已知E(2,2)=9.6

E(106,10),并将你的答案四舍五入至整数。


Gitalking ...