Math Problem Statement

You are throwing k balls into n bins. Let Xi be the number of balls thrown into bin i. a) (2 points) What is E[Xi ] and Var(Xi)? b) (2 points) What is the expected number of empty bins? c) (2 points) Define a collision to occur when a ball lands in a non-empty bin (if there are n balls in a bin, count that as n − 1 collisions). What is the expected number of collisions? d) (4 points) Calculate the expected value of the ’total score’, defined as the sum of the squares of the number of balls in each bin. For example, if there are three bins with 2, 3, and 0 balls respectively, the total score would be calculated as: 22 + 32 + 02 = 4 + 9 + 0 = 13. Hint: E[X2 i ] = E[Xi ] 2 + Var(Xi).

Solution

Ask a new question for Free

By Image

Drop file here or Click Here to upload

Math Problem Analysis

Mathematical Concepts

Binomial Distribution
Expected Value
Variance
Probability Theory
Combinatorics

Formulas

E[Xi] = k / n
Var(Xi) = k * (1 / n) * ((n-1) / n)
E[Empty Bins] = n * (1 - 1/n)^k
E[Collisions] = k(k-1) / 2n
E[Total Score] = (k(n-1) + k^2) / n

Theorems

Binomial Theorem
Law of Total Expectation
Indicator Random Variable Theorem

Suitable Grade Level

University Level (Probability Theory)