Given two arrival processes $N_t = X_t + Y_t$, $X_t$ and $Y_t$ independent, with $Y_t$,$X_t$ each occuring with $P = 0.5$, what is $E[N_t|X_t = n]$?
To answer this, I'm trying to find find $P(N_t|N_s=n)$, given $t,s \geq 0$, $N\sim\text{Poisson}(\lambda)$.
$$\frac{P(N_t = M)P(N_t-N_s = n - m)}{P(N_s=n)}$$
$$\frac{e^{-t}(t)^n}{m!} \frac{e^{-\lambda (s-t)}\lambda (s-t)^{m-n}}{(n-m)!}$$
which reduces to
$$ \binom{n}{m}(\frac{t}{s})^m (1-\frac{t}{s})^{n-m}$$
which is clearly a binomial.
However, I think I might have approached this problem from the wrong direction (I fail to see how the above is useful for solving this problem), and I'm not sure what to do now.
Just apply the Linearity of Expectation. $$\begin{align}\mathsf E(N_t\mid X_t) & = \mathsf E(X_t+Y_t\mid X_t) \\[1ex] & = \mathsf E(X_t\mid X_t)+\mathsf E(Y_t\mid X_t) \\[1ex] & = \ldots\end{align}$$
Which, if $X_t$ and $Y_t$ are independent, then simplifies into an easy solution. Are they?