Syntax
| Parameter | Description |
|---|---|
| x | Parameter of the POISSON.DIST function. |
| mean | Parameter of the POISSON.DIST function. |
| cumulative | Parameter of the POISSON.DIST function. |
Examples
Exactly 3 support tickets in an hour
=POISSON.DIST(3, 5, FALSE)
At most 2 defects per unit
=POISSON.DIST(2, 4, TRUE)
Probability of zero accidents
=POISSON.DIST(0, 1.5, FALSE)
Common Errors
x must be a non-negative integer (or will be truncated) and mean must be non-negative.
Occurs when arguments are non-numeric.
Tips
Set cumulative=TRUE to answer 'what is the probability of x or fewer events?' Set FALSE for the probability of exactly x events.
If your rate is 10 events per day but you want the probability for a 3-day window, multiply the mean by 3 (use 30).
For P(X > k), calculate =1 - POISSON.DIST(k, mean, TRUE). For example, P(more than 5 calls) = 1 - POISSON.DIST(5, mean, TRUE).
Try POISSON.DIST in Viztab
Import your data and use POISSON.DIST with 370+ other formulas. No signup required.
Open Viztab