Suppose Harvard College is conducting its housing lottery. For simplicity's sake, we'll say that there are 1200 Freshmen that will be randomly assigned to 12 houses. Let X1,X2,…,X12 count how many students are place in Pforzheimer (X1), all the way to Eliot (X12) (organized by best house to worst).
Are X1 and X2 independent?
No they are not. Since the number of Freshmen is constrained to 1200, knowing that a lot of people got into one house decreases the number of people that could be in the remaining houses.
What is the joint distribution of X1,X2,…,X12?
By the story of the Multinomial distribution, (X1,X2,…,X12)∼Mult12(1200,(1/12,…,1/12))
What is the marginal distribution of X1, the number of students who are placed into Pforzheimer House, and the joint distribution of X1 and 1200−X1?
In this case, we can group together bins that are not in Pforzheimer House together. We have X1∼Bin(1200,1/12)(X1,1200−X1)∼Mult2(1200,(1/12,11/12))
What is the conditional distribution of X1 given X10+X11+X12=450?
X1∣X10+X11+X12=450∼Bin(750,1/9)
Jelly Beans
I have a jar of 30 jellybeans: 10 red, 8 green, 12 blue. I draw a sample of 12 jellybeans without replacement. Let X be the number of red jellybeans in the sample, Y the number of green jellybeans.
Find Cov(X,Y).
Let X=I1+…+I12, and Y=J1+…+J12, where
IiJi={10if ith jellybean in sample is redotherwise={10if ith jellybean in sample is greenotherwise
We can now solve using indicator variables and the fundamental bridge.
It's good to do a little sanity check at the end: it makes sense that the covariance is negative. If the sample contains a lot of red jellybeans, the sample probably has fewer green jellybeans. Another way to solve this is to create an indicator for each red jellybean and each green jellybean in the jar, where the indicator equals 1 if the jellybean is in the sample and 0 otherwise.
Stat Courses
Let X be the number of statistics majors in a certain college in the class of 2030, viewed as an r.v. Each statistics major chooses between two tracks: a general track in statistical principles, and a track in quant finance. Suppose that each statistics major chooses randomly which of these two tracks to follow, independently, with probability p of choosing the general track. Let Y be the number of statistics majors who choose the general track, and Z be the number of statistics majors who choose the quantitative finance track.
Suppose that X∼Pois(λ). Find the correlation between X and Y.
By the chicken-egg story, we know that Y and Z are independent Poisson random variables, with rate parameters λp and λq, respectively. We must first find the covariance between X and Y.
Cov(X,Y)=Cov(Y+Z,Y)=Var(Y)+Cov(Y,Z)=λp
We now plug this into the equation for correlation:
Corr(X,Y)=Var(X)Var(Y)Cov(X,Y)=λλpλp=p
Let n be the size of the Class of 2030, where n is a known constant. For this part and the next, instead of assuming that X is Poisson, assume that each of the n students chooses to be a statistics major with probability r, independently. Find the joint distributions of Y, Z, and the number of non-statistics majors, and their marginal distributions.
Under this new model, we have that X∼Bin(n,r). By the multiplication rule, we have that the probability of a student becoming a general Statistician is rp, a Goldman-Sachs Statistician is rq, and a non-Statstician (lame) is 1−r. Therefore, we can apply the story of the Multinomial here: (Y,Z,n−X)∼Mult3(n,(rp,rq,1−r))
Continuing as in the previous part, find the correlation between X and Y.
We use the fact that covariance of the marginal distributions in a multinomial is given by −npipj.