Poisson Distribution

Context: FIT1058_MOC, FIT2086_MOC · counts independent events in an interval · pmf · large- small- approximation to the binomial · the member of the parametric zoo

Quick Revision

  • 🎯 Objective: count of rare independent events in an interval ➔ (, the rate).
  • 📦 Core Components: one parameter ➔ unbounded support ➔ closed under addition and interval-splitting.
  • ⚡ Key Constraint: approximates for large , small (); the four modelling conditions must actually hold.

📝 Core

1. The Distribution

  • Definition, , ; FIT2086 writes with called the rate.
  • One parameter, , ➔ the family where the variance grows with the mean.

2. When It Arises

  • Count of independent occurrences ➔ calls per hour, visits, radioactive emissions — sample space .
  • Interval-scaled scales with interval length.
  • Unbounded ➔ any nonnegative integer (unlike the binomial’s cap at ).
  • Four appropriateness conditions (FIT2086) ➔ (i) one event’s occurrence does not affect the probability of a second — events are independent; (ii) the rate is constant across intervals, never higher in some than others; (iii) two events cannot occur at the same instant; (iv) the probability of an event in a small interval is proportional to that interval’s length. Violating (i) or (ii) is what makes real count data spread wider than allows.

3. Binomial Approximation

  • Condition ➔ large , small .
  • Benefit ➔ trades a two-parameter formula for one.

4. Additivity and Thinning (FIT2086)

  • Sums stay Poisson, rates add.
  • Decomposition ➔ any splits as with and .
  • Interval rescaling (thinning) ➔ if counts events in a period , then over : the rate is per unit time ➔ always rescale to the interval the question asks about before evaluating any probability.

Key identities:

⚖️ Core Decision Matrix

AspectPoissonvs Binomial
parameter
, both ,
supportunbounded
relation large
closure under rates add: trials add (same ):

When It Flips: Poisson suits "could be any count" of rare independent events; it is the unbounded limit of the binomial. The -series normalisation mirrors the geometric-series argument for other pmfs. is the family fingerprint — sample variance far above the sample mean falsifies the constant-rate assumption.

📊 Exam Execution Trace

Applied Exercise 1

Problem: Poisson — find , , , . Derivation Proof / Hand-Calculation Walkthrough:

Final Extracted Output: , ; mean and variance both 2.

Applied Exercise 2 — rescaling the interval (FIT2086)

Problem: calls arrive at per hour. Find .

Final Extracted Output: . Key move: rescale to the requested interval first; using would answer a different question entirely.

Applied Exercise 3 — hospital heart attacks, week ➔ day (Studio 2)

Problem: a hospital sees on average heart-attack patients per week, rate independent of the day. Find (i) in a week; (ii) on a given day; (iii) on a given day.

Final Extracted Output: ; ; . Key move: the identical-days assumption is what forces , so additivity run backwards gives . And “at least one” always collapses to because — no summation needed.

⚙️ In R

⚠️ Common Mistakes

  • 💡 is mean AND variance ➔ the single parameter does double duty; the binomial→Poisson swap needs large with small .
  • 💡 Forgetting to rescale the rate is defined per interval; a question about a half/quarter period needs .
  • 💡 Applying Poisson to clustered events ➔ if one event makes another more likely (contagion, queues, bursts) the independence and constant-rate conditions fail, and the prediction breaks.
  • 💡 Strict vs weak inequality on a discrete support ppois(1, λ), not ppois(2, λ); unlike the continuous case the boundary value carries real mass.
  • 💡 Poisson for a binary or continuous variable ➔ “land vs water” is binary (binomial) and “average weight” is continuous (normal); Poisson needs an unbounded count. Selection drill ➔ Parametric Probability Distributions.

🧠 Active Recall