Poisson Distribution (PMF/CDF) — Notebook Template

Model counts with a Poisson rate λ: compute probabilities and cumulative probabilities for events.

stats poisson probability
All templates

What this template does

This is a ready-to-run GetCalcMaster Notebook starter. Open it into Notebook, run once with defaults, then tweak inputs and keep your assumptions next to the math.

How to use it (recommended)

  1. Open in Notebook.
  2. Set λ (average rate) and k (event count).
  3. Compute PMF and CDF.
  4. Check that probabilities are between 0 and 1.
  5. Record model assumptions (independence, constant rate).
Tip: When a result matters, verify it twice: a unit check + a second method (graph/estimate).

Preview (first cells)

This preview is for readability. The full template loads into Notebook when you click Open.

TEXT
# Poisson Distribution

Functions:
- `poissonpmf(k, λ)`
- `poissoncdf(k, λ)`

Interpretation: counts of events with average rate λ.
MATH
lambda = 3.2
MATH
k = 5
MATH
pmf = poissonpmf(k, lambda)
MATH
cdf = poissoncdf(k, lambda)
MATH
pmf