|
Last edited by hbghlyj 2023-3-30 10:14Mathematics for Computer Science, Assignment 12
Problem 6. 将 $n$ 个球 独立、概率均匀地随机扔进 $n$ 个盒子。
(a) 随机变量 $X_i$ 为 1 若盒子 $i$ 为空, 否则为 0. 写出 $X_i$ 的分布. $X_1, X_2, \dots, X_n$ 是否独立?
(b) 空盒数 $∼cn$. 求常数$c$.
(c) 证明 $\Pr(\text {盒子1中的球数} ≥k ) \leq\binom nk\left(\frac{1}{n}\right)^{k}$
(d) 令 $R$ 为 $n$ 个盒子中的球数的最大值。证明 $\Pr\{R \geq k\} \leq \frac{n}{k !}$
(e) $\lim _{n \rightarrow \infty} \operatorname{Pr}\left\{R \geq n^{\epsilon}\right\}=0$ for all $ϵ > 0$.
MSE 类似问题
(a) $\Pr(X_i=0)=(1-\frac1n)^n,\Pr(X_i=1)=1-(1-\frac1n)^n$. [Bernoulli分布]
因为 $\Pr(X_1=1\mid X_2=1)<\Pr(X_1=1)$, 所以 $X_1, X_2$ 不独立.
(b) $c=(1-\frac1n)^n$
(c) 见2#或这帖 |
|