\(\text{PoissonCDF}\)

You can use the \(\text{PoissonCDF}\) function to calculate the cumulative distribution function (CDF) of the Poisson distribution.

You can use the \poissonc backslash command to insert this function.

The following variants of this function are available:

  • \(\text{real } \text{PoissonCDF} \left ( \text{<k>}, \text{<}\lambda\text{>} \right )\)

Where \(k\), and \(\lambda\) are scalar values representing the value of interest (number of events), and the rate. Note that this function is defined over the range \(k \geq 0\) and \(\lambda > 0\). The \(\text{PoissonCDF}\) function will generate a run-time error or return NaN for values for which the function is not defined.

The value is calculated directly using the relation:

\[\text{PoissonCDF} \left ( k, \lambda \right ) = \text{Q} \left ( \left \lfloor k + 1 \right \rfloor, \lambda \right )\]

Where \(\text{Q}\) is the upper incomplete gamma function.

The Poisson distribution models the the number of events over a given time time period caused by a memoryless process and, in this respect, is closely related to the exponential distribution that models time between events assuming a memoryless process.

Figure 187 shows the basic use of the \(\text{PoissonCDF}\) function.

../_images/poisson_cdf_example.png

Figure 187 Example Use Of the PoissonCDF Function