Discrete Distributions Practice Problems

Important! These are all exam-level problems. Do not attempt these problems without a solid foundation in the subject and use them for exam practice.

1. Suppose Alex encodes 40 packets of data into 100 packets to transmit to bob, using error correction as we have already described in class. What is the probability that Bob can recover the data?

It is important to notice that this is a Binary Distribution, where X = Bin(100, .5). Hence, we know we can tolerate 60 packets lost, so we must find the Pr[X<=60] = ∑ i=0 to 60 of (100 choose i) * .5i * .5100-i = ∑ i=0 to 60 of (100 choose i) * .5100.  
Toggle Solution

2. Name the following types of distributions:
    a. The amount of people that punch a tree before it breaks in half.
    b. The number of girls in a family.
    c. The number of heads in 421 coin flips.
    d. The number of dogs James sees on campus between 1 pm and 4 pm.
    e. Number of red lights Natasha runs through on her commute to and from school.
    f. The amount of times I need to message Santa Clause before he responds.

a. Geometric
b. Binomial
c. Binomial
d. Poisson
e. Poisson
f. Geometric  
Toggle Solution

3. A normal textbook barely ever has a misprint in it. Assume, on average, a textbook as one mispring per page. What is the chance that you see exactly 4 misprings on the first page?

We can model this using a poisson distribution with a mean of 1. Hence, Pr[exactly 4] = 14 * e-1 / 4! = 1/(4!e). 
Toggle Solution