Independent trials, dependent condition

  • Context: Undergrad 
  • Thread starter Thread starter caffeine
  • Start date Start date
  • Tags Tags
    Condition Independent
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
3 replies · 5K views
caffeine
A friend gave me this problem; it's been years since I've taken probability, and I'm really rusty. I'm curious how to solve it.

Suppose you have a normal pdf with mean mu and stdev sigma that represents the distribution of test scores.

What's the probability that two randomly selected students will have an average higher than k?

So if I let X1 and X2 be the test scores of two randomly selected students, and if they have values of k1 and k2, then I want to know the probability that:

k1 + k2 > 2k

or

P(X1 + X2 > 2k)

I'm stumped. How does one approach a problem like that?

Thanks!
 
Physics news on Phys.org
You need to define a new random variable Y = X1 + X2, then calculate P(Y > 2k). If each X is normally distributed, then Y is, too. Proof. (Even if X's were non-normal, The Central Limit Theorem states that the sum of N independent identical random variables approaches the normal distribution as N goes to infinity.)
 
EnumaElish said:
You need to define a new random variable Y = X1 + X2, then calculate P(Y > 2k). If each X is normally distributed, then Y is, too. Proof. (Even if X's were non-normal, The Central Limit Theorem states that the sum of N independent identical random variables approaches the normal distribution as N goes to infinity.)

OK, thanks. Is it correct that the mean of the distribution for Y is the sum of the averages (so mu' = mu + mu) and the stdev of the distribution for Y is the RMS sum of the deviations (so sigma' = sqrt{\sigma^2 + \sigma^2} = \sqrt{2}\sigma?

Thanks! I can't believe how much I've forgotten