Probability of Poisson Distributions

58 Views Asked by At

This question is a continuation from this problem. Let's say I want to calculate the probability of the number of units between 1 faulty unit to the next is at least $Y$. How exactly would I calculate this? From a combinatorics stand point, if I was asked how many ways can I get exactly 2 heads out of 4 flips it'd be easy as saying $4\choose2$ and if it was at least 2 heads, then I would do $P(2H) + P(3H) + P(4H)$. However, I am not sure how to apply this concept to my question. How should I proceed?

EDIT: The answer to this question is leveraging the formula: $1-(1-e^{\lambda})$. I don't quite understand the intuitive explanation behind this formula.

1

There are 1 best solutions below

9
On BEST ANSWER

If each unit has probability $p = \frac{1}{500}$ of being a failure, then the number of non-faulty units we see before obtaining a failure can be modeled as a Geometric random variable. If $X \sim geometric(p)$, then the probability mass function for X is:

$P(X=x) = p(1-p)^x, \ for \ x = 0,1,2,3,...$

Also notice that $P(X>y) = 1 - F(y)$, where F is the geometric CDF. Thus:

$P(X>y) = 1 - (1 - (1-p)^y) = (1-p)^y$


UPDATE: (In response to OP's update)

First of all, the answer you provided only makes sense if there is a y in the equation. I'm fairly sure you meant to put $1 - (1- e^{-\lambda y})$. And if this is the case, then I can offer you some intuition.

The Geometric Distribution is a discrete random variable expressing "exponential" probability decay. There is of course a continuous version of this distribution as well, which is called the Exponential distribution with parameter $\lambda$. In theory, using either distribution should give you similar results (although the discrete version will be more exact in our case).

Above, I put the formula $P(X>y) = 1 - F(y)$. If we use the CDF of the exponential distribution instead, then we get:

$P(X>y) = 1 - (1 - e^{-\lambda y}) = e^{-\lambda y}$.

Which is precisely what you had above. Just set $\lambda$ to be the rate at which we see failures ($\lambda = p = 1/500$).

Suppose you want to know $P(X>50)$.

GEOMETRIC: $P(X>50) = .90484$

EXPONENTIAL: $P(X>50) = .90475$