Tell me more ×
Cross Validated is a question and answer site for statisticians, data analysts, data miners and data visualization experts. It's 100% free, no registration required.

from a deck of 52 cards, 9 cards are drawn at random without replacement. If X and Y are the number of hearts and diamonds respectively. What is the joint probability of X and Y and also what is the probability of X being greater than Y?

share|improve this question
2  
If this is homework please add homework tag. – mpiktas May 28 '12 at 14:14
If this is homework, I'll feel pretty bad about giving the answer. – Max May 28 '12 at 14:15

1 Answer

Denote the number of hearts as $X$ and the number of diamonds as $Y$. The probability of obtaining $x$ hearts and $y$ diamonds is $P(X=x,Y=y)=\frac{\binom{13}{x}\binom{13}{y}\binom{26}{9-x-y}}{\binom{52}{9}}$, with $x\geq0$, $y\geq0$, and $x+y\leq9$.

The probability that $X$ is greater than $Y$ is a simple sum.

$$P(X>Y)=\sum_{y=0}^{4}\sum_{x=y+1}^{9-y}P(X=x,Y=y)$$

share|improve this answer
It's Beautiful. – miura May 28 '12 at 20:32

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.