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
| Distribution | Notation | pmf | 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
⚖️ 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 variable | Verdict | Reason ➔ better family |
|---|---|---|
| US presidential election outcome | not binomial | more than two candidates ➔ binomial only with exactly two outcomes |
| Shuttle launch | binomial ✓ | success/failure per launch, independent trials |
| Football match result | not binomial | win/draw/loss = three outcomes ➔ redefine to “won?” or “lost?” to recover a binary trial |
| Depth of the Yarra at a random point | not binomial | continuous measurement ➔ a continuous family |
| Roll of a six-sided die | not binomial / not normal | six discrete outcomes ➔ discrete uniform |
| Coin toss | not normal | discrete binary ➔ Bernoulli/binomial; uniform if fair |
| Height of adults | normal ✓ | continuous, symmetric, unbounded support adequate |
| Measurement error on a car’s velocity | normal ✓ | continuous, centred on zero |
| Calls received by a call centre in an hour | not normal | discrete count ➔ Poisson (near-normal only if the count is very large) |
| Meteorites striking land vs water | not Poisson | binary event ➔ binomial |
| Heart attacks per month · shoppers per day · workplace accidents per week | Poisson ✓ | counts of independent events at a constant rate in a fixed interval |
| Populations of cities | maybe Poisson | discrete, but so large that a normal approximation is usually better |
| Average weights of women | not Poisson | continuous ➔ normal |
| Daily temperature in Belgrade | not uniform | seasonal 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
Why use a parametric distribution rather than specifying for each directly?
Answer
- Short answer: direct specification requires one number per element of , which is only feasible for a small finite event space; a parametric model uses parameters and works even when is infinite.
- Why: is a rule, not a list ➔ generates a probability for every , and all derived quantities (, , cdf, quantiles) become functions of ➔ estimating the handful of parameters from data recovers the entire distribution, which is exactly what the rest of the unit does.
Given only the sample space of a variable, which family would you reach for and why?
Answer
- Short answer: match the support — ⟹ Bernoulli; successes in fixed trials ⟹ binomial; unbounded non-negative counts in an interval ⟹ Poisson; a bounded set with no outcome favoured ⟹ uniform; the whole real line ⟹ Gaussian.
- Why: The support is a hard constraint, the shape is a modelling choice ➔ a family that puts mass outside (or none inside it) is wrong regardless of fit quality; among the survivors, the variance–mean relationship discriminates further (Poisson forces , binomial caps below , Gaussian leaves both free).