2
$\begingroup$

$X$ and $Y$ are independent and geometrical distributed with same parameter $p$. How to find $E(X|X+Y=k)$ for all $k =$ $2,3,4$....

I thought $$E(X|X+Y=k) = \sum_{x=1}^{k-1} xp(x,x+y=k)/p(x+y=k)$$ $n$ is infinity

now, I found $$p(x+y= k) = p^2 (1-p)^{k-2}$$ Am I on the correct path ? How do I find $p(x,x+y=k)$ ?

  • 1
    In the summation, what is m,n?2012-11-19
  • 0
    n should be infinity and k =12012-11-19
  • 0
    Ok, can we find $Var(Y|X+Y)$ from here?2017-05-11

2 Answers 2

6

Here is a simple method:

Because the variables are iid, $E[X|X+Y = k] = E[Y|X+Y = k]$.

Now $$ E[X|X+Y = k] + E[Y|X+Y = k] = E[X+Y|X+Y = k] = k$$

Thus $E[X|X+Y = k] = k/2$.

  • 0
    yes this is correct but can it be solved my way.2012-11-19
  • 0
    Yes. You want $P(X=m,X+Y=n)$ right? This is same as $P(X=m,Y=n-m)$ which is same as due to independence $P(X=m)P(Y=n-m)$. Can you do it now?2012-11-19
  • 0
    it just gives me numerator equal to denominator and results in summation of 1+2+3+4...infinity. Where am I wrong ?2012-11-19
  • 0
    Your expression for P(X+Y = k) suggested above is incorrect. It should be $(k-1)(1-p)^{k-2}p^2$2012-11-19
  • 0
    Can you help me there ? As I supposed p(z=x+y) = Sigma for all x p(X=x,Y=z-x). Since these are independent, I supposed Sigma for all x p(X=x)p(Y=z-x)2012-11-19
  • 0
    Thanks Gautam, I got the mistake.2012-11-19
1

Your method: $$E[X|X+Y=k]=\sum_{m=1}^{k-1} m \frac{P(X=m,X+Y=k)}{P(X+Y=k)}$$

$P(X=m,X+Y=k) = p^2(1-p)^{k-2}$

$P(X+Y=k) = \sum_{m=1}^{k-1}P(X=m,X+Y=k) = (k-1)p^2(1-p)^{k-2} $

Simplify to get $$E[X|X+Y=k]=\frac{1}{k-1} \sum_{m=1}^{k-1}m = k/2$$