"

Poisson Distributions

Calculating At Least, At Most and More Than ‘X’ Events

Learning Objectives

Calculate the probability of at least, at most or more than a certain number of events, x.

Calculating the Probability of At Most ‘X‘ Events Occurring

  1. Use the formula to calculate each probability up to and including x: P(Xx)=P(X=0)+P(X=1)+...+P(X=x)
  2. Use cumulative = TRUE in Excel: P(Xx) = POISSON.DIST(x, λ, TRUE)

Which is better? It is often much quicker to use Excel’s POISSON.DIST than the formula.

Calculating the Probability of More Than ‘X‘ Events Occurring

  1. Use the formula and a complement to calculate: P(X>x)=1[P(0)+P(1)+...+P(x)]
  2. Use a complement and TRUE in Excel: P(X>x)=1POISSON.DIST(x, λ, TRUE)

Why use a complement? Since there is no upper limit to the number of events that can occur, P(X>x)=P(x+1)+P(x+2)+...+P(). We cannot perform this calculation without using limit theory. Instead, we use a complement of up to the probability of x events occurring.

Calculating the Probability of At Least ‘X‘ Events Occurring

  1. Use the formula and a complement: P(Xx)=1[P(0)+P(1)+...+P(x1)]
  2. Use a complement and TRUE in Excel: P(Xx) = 1− POISSON.DIST(x1, λ, TRUE)

Why do we use x1 instead of x? Since x is included in the interval, it needs to be excluded when taking the complement. Ie: P(Xx)=1P(X<x)=1P(Xx1)

License

Icon for the Creative Commons Attribution-NonCommercial 4.0 International License

An Introduction to Business Statistics for Analytics (1st Edition) Copyright © 2024 by Amy Goldlist; Charles Chan; Leslie Major; Michael Johnson is licensed under a Creative Commons Attribution-NonCommercial 4.0 International License, except where otherwise noted.

Share This Book