Gaussian Distribution

Context: FIT2086_MOC · the default parametric model for · two parameters that are the mean and variance · self-similar and additive, which is why it carries the confidence-interval and regression work later in the unit

Quick Revision

  • 🎯 Objective: with ➔ symmetric bell on all of , tailing to as .
  • 📦 Core Components: self-similarity additivity under sums.
  • ⚡ Key Constraint: the cdf has no closed form — every probability comes from standardising to and reading a table, or from pnorm in R. Never try to integrate the pdf by hand.

📝 How It Works

1. The density and its parameters

  • Parameters are the moments, where is the mean and is the variance — unusually direct; most distributions require deriving .
  • Shape ➔ symmetric about ; controls width (small ⟹ tall narrow peak, large ⟹ low flat spread).
  • Centrality collapse ➔ symmetry ⟹ mode median mean (contrast the skewed cases in Measures of Centrality).
  • Notation, "" read as “is distributed as per a”.

2. Self-similarity (standardisation)

  • Every Gaussian is a rescaled standard normal ➔ if then is .
  • Inverted, this is the -score ➔ one table/one function serves all .
  • Consistency check and by [[Expectations and Covariance (FIT2086)|linearity and ]].
  • Why the -rules are scale-free ➔ standardising a bound of the form gives ➔ the -score does not depend on or at all, so for every parameter pair.
  • Reading a -score ➔ it is a standardised distance from the mean, in standard-deviation units — which is why one table answers every question.

3. The cdf and the -rules

  • No closed form ➔ evaluated numerically by software; the reason -tables exist at all.
  • Scale-free coverage rules (hold for every ):
IntervalProbability mass
  • Why they are useful ➔ they convert a distance-from-the-mean into a probability with no integration, and are the intuition behind later confidence intervals.

4. Additivity and decomposition

  • Sum of two independent Gaussians is Gaussian, — means add, variances add (never standard deviations).
  • Decomposition (the converse) ➔ for any , can be written with whenever and ➔ a normal RV splits into arbitrarily many normal pieces.

📊 Exam Execution Trace & Applied Exercises

Manual Execution Trace — standardise, then read the cdf

; find and .

StepOperationComputationResult
1standardise the bound
2cdf lookup / pnorm
3recognise as -rule
4upper tail

Key move: step 3 needs no table at all — spotting that the interval is collapses the question to a memorised rule.

Manual Execution Trace — reading a coarse -table by interpolation (Studio 2)

The provided table is indexed by with two probability columns — (lower tail) and (upper) — at a coarse step of , so an exam almost never appears in it. Linear interpolation between the bracketing rows is the intended hand skill: , i.e. , :

TargetStandardiseColumn + bracketing rowsInterpolateAnswer
: ,
at : ,
, : , · : , ;

Key moves: (i) carries the variance ➔ divide by , never by ; (ii) the table is indexed by , so a negative means looking up in the column — the sign selects the column, not a subtraction; (iii) an interval probability is , one interpolated lookup each.

Applied Exercise — additivity

Problem: and are independent. Distribution of , and ?

Final Extracted Output: , upper-tail probability . Key move: add the variances (), then take only when standardising.

⚙️ In R

⚠️ Common Mistakes

  • 💡 vs ➔ the notation carries the variance, but standardising and R’s sd argument both need . Mis-rooting is the single largest mark-loss vector here.
  • 💡 Adding standard deviations ➔ under independence, variances add: , never .
  • 💡 Trying to integrate the pdf ➔ there is no closed-form antiderivative; standardise and use a table or pnorm.
  • 💡 vs ➔ irrelevant here ( is continuous, so ) but the same slip is fatal for the discrete distributions.
  • 💡 Reading a coarse -table without interpolating ➔ snapping to the tabulated costs accuracy the marker expects; interpolate between the bracketing rows.
  • 💡 Double-complementing a negative ➔ the table’s column already is the lower tail; needs exactly one subtraction.

🧠 Active Recall