Problem Statement
Let $X$ and $Y$ be random variables such that $X \sim \text{Poisson}(\lambda)$ and $Y|X \sim \text{Binomial}(x+1,p)$. Find $\text{Cov(X,Y)}$.
Attempt at a Solution
I would like to be able to write $Y$ as $X + Z$ where $Z$ is Poisson and independent of $X$, since then by this question the variance is easy to compute. To this end, write $Y|X$ as a sum of independent binomials: $ Y|X = Z_1|X + Z_2|X, $ where $Z_1|X \sim \text{Binomial}(1,p)=\text{Bernoulli}(p)$ and $Z_2 | X \sim \text{Binomial}(x,p).$ Then $Z_2 \sim \text{Poisson}(\lambda p)$, which we can obtain by directly computing the pdf: \begin{aligned} P(Z_2 = z) &= \sum_x P(Z_2=z, X=x)\\ &= \sum_x P(Z_2=z\mid X=x)P(X=x) \\ &= \sum_{x=y}^\infty \frac{e^{-\lambda} \lambda^x}{x!}\frac{x!}{z!(x-z)!}p^z(1-p)^{x-z} \\ &= \frac{(\lambda p)^z}{z!}e^{-\lambda p} \sum_{x=z}^\infty \frac{[\lambda(1-p)]^{x-z} e^{-\lambda(1-p)}}{(x-z)!} \\ &= \frac{(\lambda p)^z}{z!}e^{-\lambda p}. \end{aligned} However, I cannot get the same approach to simplify for $Z_1|X$, which instead involves the CDF of $X$. I also tried this approach on $Y|X$ directly, hoping to obtain a sum in the form of the expectation of $X$, but I can't seem to reduce it. Even if I could, I'd still need to compute $E[XY]$ for the covariance. I suspect there may be a better approach than grinding through several more sums.