Parametric Probability Distributions

Context: FIT2086_MOC · the move from listing probabilities to generating them from a handful of parameters ➔ the object every later week estimates (MLE, CIs, testing) · indexes Gaussian Distribution, Binomial Distribution, Poisson Distribution, Uniform Distribution

Quick Revision

  • 🎯 Objective: specify a whole distribution by , , ➔ changing changes the distribution; .
  • ⚡ Key Constraint: every property is a function of , and likewise variance, cdf, quantiles. Match the support to the data before choosing a family.

📝 Core

  • Why parametric at all ➔ directly specifying for each works only for a small finite ; for large or infinite (e.g. , ) the list is unwritable ➔ compress it into parameters.
  • Notation for densities; for discrete RVs . Here controls the probabilities and is the set of valid parameter values.
  • Properties are induced by for some determined by the family, and the same holds for , the cdf and the quantiles ➔ learn the family, get every summary for free.
  • Parameterisation is not unique ➔ one family often admits several standard parameterisations (e.g. discrete uniform as on or on ) ➔ always state which one you are using before quoting a mean or variance.
  • Selection is driven by the support ⟹ Bernoulli · ⟹ binomial · ⟹ Poisson · ⟹ Gaussian · “all outcomes equally likely” ⟹ uniform.

⚖️ Distribution Zoo — discrete

DistributionNotationpmf Support
Uniform — all outcomes equally likely
Bernoulli — one success/failure trial
Binomial — successes in trials
Poisson — count of events in an interval

⚖️ Distribution Zoo — continuous

DistributionNotationpdf Support
Uniform
Gaussian

⚖️ Family Selection Drill (Studio 2 — “which of these could be X-distributed?“)

The exam asks this as a one-line judgement plus a reason; the reason is always about support or the number of outcomes, never about “it looks bell-shaped”.

Described variableVerdictReason ➔ better family
US presidential election outcomenot binomialmore than two candidates ➔ binomial only with exactly two outcomes
Shuttle launchbinomialsuccess/failure per launch, independent trials
Football match resultnot binomialwin/draw/loss = three outcomes ➔ redefine to “won?” or “lost?” to recover a binary trial
Depth of the Yarra at a random pointnot binomialcontinuous measurement ➔ a continuous family
Roll of a six-sided dienot binomial / not normalsix discrete outcomes ➔ discrete uniform
Coin tossnot normaldiscrete binary ➔ Bernoulli/binomial; uniform if fair
Height of adultsnormalcontinuous, symmetric, unbounded support adequate
Measurement error on a car’s velocitynormalcontinuous, centred on zero
Calls received by a call centre in an hournot normaldiscrete countPoisson (near-normal only if the count is very large)
Meteorites striking land vs waternot Poissonbinary event ➔ binomial
Heart attacks per month · shoppers per day · workplace accidents per weekPoissoncounts of independent events at a constant rate in a fixed interval
Populations of citiesmaybe Poissondiscrete, but so large that a normal approximation is usually better
Average weights of womennot Poissoncontinuous ➔ normal
Daily temperature in Belgradenot uniformseasonal and centre-heavy ➔ normal

When It Flips: the variance–mean relationship is the family fingerprint — Poisson has (variance grows with the mean), binomial has (variance capped and maximal at ), Gaussian decouples them entirely ( and free) ➔ comparing a sample's mean against its variance is the fastest check that a count model is the wrong family.

⚠️ Common Mistakes

  • 💡 Quoting a mean without fixing the parameterisation ➔ discrete uniform gives under but under ; the variance differs too ( vs ).
  • 💡 Choosing a family whose support contradicts the data ➔ a Gaussian assigns positive density to negative values, so it cannot model a strictly non-negative count; match first, fit second.
  • 💡 Confusing with a realisation is a fixed unknown indexing the model; is the observed data. Every estimation week of this unit is about recovering from .

🧠 Active Recall