Below is a graph showing the probability of drawing an odd number (y-axis) from a Poisson distribution with a given expected value (x-axis)
x = seq(0,1e4,1) // range of values to explore
lambdas = seq(0,4,0.01) // expected value of the Poison distribution
FracOdd = numeric(n+1) // response variable
for (i in 1:length(lambdas))
{
FracOdd[i] = sum(dpois(x,lambdas[i])[seq(2,length(x),2)]) // calculate probability of drawing an odd number
}
plot(y=FracOdd,x=lambdas, type="l", lwd=3, xlab="Expected value", ylab="Probability of drawing an odd number") // plot the data
It seems that the probability of drawing an odd number from a Poisson distribution with non-infinite mean is always lower than the probability of drawing an even number.
- What is the intuition for why the probability of drawing an odd number from a Poisson distribution always below 0.5?
- Is the function I drew numerically, easy to derive analytically?
