POISSON.DIST
The POISSON.DIST
function in Google Sheets calculates the value of the Poisson distribution function (or Poisson cumulative distribution function) for a specified value and mean. This function is commonly used in statistical analysis and probability calculations.
Function Syntax and Parameters
Syntax: POISSON.DIST(x, mean, [cumulative])
Parameters:
x
: The value at which you want to evaluate the distribution.mean
: The average rate at which events occur.cumulative
: [Optional] A logical value that indicates whether to calculate the cumulative distribution function (TRUE
) or the probability mass function (FALSE
). The default value isFALSE
.
Step-by-Step Tutorial
-
Calculate the Poisson distribution function:
- Example:
=POISSON.DIST(3, 5, FALSE)
- Result: Returns the probability of observing exactly 3 events in a time period with an average rate of 5 events.
- Example:
-
Calculate the Poisson cumulative distribution function:
- Example:
=POISSON.DIST(3, 5, TRUE)
- Result: Returns the probability of observing 3 or fewer events in a time period with an average rate of 5 events.
- Example:
Use Cases and Scenarios
- Insurance Claims: Calculate the probability of a specific number of insurance claims occurring within a given time period based on historical data.
- Quality Control: Determine the likelihood of a certain number of defects occurring in a production process.
- Queueing Theory: Analyze the probability of a certain number of customers arriving at a service counter within a specified time frame.
Related Functions
None.
Related Articles
None.