Suppose the number of sales, N, in a year on a sales portfolio has a poisson distribution with parameter $\lambda$. Sales are either large with probability $p$ or small with probability $1-p$, independently from each other.
Suppose we observer $r$ large sales. Show that the conditional distribution of $N - r \mid r$ is poisson.
I've managed to complete the question from first principles:
Let $R$ be the number of large sales, we have $ R \mid N$ is binomially distributed with parameters $N$ and $p$.
If we consider $P(N - r = s \mid R = r)$ and apply Bayes conditional probability formula we eventually get the result.
I am wondering if there is perhaps a simplier way to do it? For instance, could we perhaps just directly use the the result that, $$ \text{ Posterior PDF } \propto \text{Prior PDF } \times \text{ Likelihood}$$ that is, $$f(\theta \mid x) \propto f(\theta) \times L(x \mid \theta)$$
Can this general formula be applied in this case as a shortcut?
Let's call the random variables for total sales $N$, larger sales $R$ and smaller sales $M$. Clearly $N=R+M$.
You are looking for $\Pr(M=m\mid R=r)$ and how it varies with $m$. Using your Bayes expression and dropping multiplicative terms unrelated to $m$, this is $$\Pr(N=m+r\mid R=r)$$ $$\propto \Pr(N=m+r)\Pr(R=r \mid N=m+r)$$ $$= \frac{e^{-\lambda} \lambda^{m+r}}{(m+r)!} \frac{(m+r)!}{r!\, m!}p^r(1-p)^{m}$$ $$\propto \frac{(\lambda(1-p))^{m}}{ m!}$$ which is proportional to the probability mass function of a Poisson distribution with parameter $\lambda(1-p)$