I have a poisson random Variable $X$ with parameter $\lambda$. I need to find the value of $P(X \leq \lambda)$.
I know that, this is given by
$$P(X \leq \lambda) = e^{-\lambda} \sum_{x=0}^{\lambda}{\frac{\lambda^x}{x!}}$$
How to calculate further? I found an answer which says this value is 0.5, but it calculates the value numerically using a R script. Is it possible to calculate this value directly? Thanks!