Section 4.5–4.6: Continuous Random Variables & the Normal Distribution
Continuous Random Variables & Probability Density Functions (PDFs)
Review from previous section 4.4
Last week focused on discrete random variables (probability mass functions, sums of probabilities).
Key bridge: many discrete models (e.g.
Binomial) can be approximated by continuous models (especially the normal) for large sample sizes.
Fundamental distinction
Continuous random variable takes on every value in an interval of the real line.
Because values are uncountably infinite, for any single point; probabilities are only meaningful over intervals.
Probability Density Function (PDF)
Smooth curve drawn over the real-number axis; sometimes called frequency function or just probability distribution.
Area under the curve over an interval corresponds to probability:
Total area under entire curve is .
Graphical intuition: shade region from to → shaded area gives the desired probability.
The Normal Distribution $\mathcal N(\mu,\sigma^2)$
Central role
Describes numerous natural/industrial phenomena (heights, measurement error, IQ, bulb lifetime, etc.).
Serves as a limiting approximation for many discrete distributions (notably binomial via De Moivre–Laplace/Central Limit Theorem).
Forms bedrock of classical statistical inference (confidence intervals, hypothesis testing).
Shape & descriptive characteristics
Bell-shaped, symmetrical (a.k.a. mound-shaped).
Mean, median, and mode coincide at (curve is perfectly balanced there).
Inflection points located one standard deviation on either side (at ).
PDF formula
Parameters:
= mean (center)
= standard deviation (spread)
Transcendental constants and appear.
Memorization not required; recognition and parameter interpretation are essential.
Visual parameter effects (3 example curves)
→ standard curve (purple), widest of shown.
→ curve shifted right, same spread.
→ curve shifted left, narrower and taller because smaller .
Area–probability equivalence holds: .
If calculus unfamiliar, mentally replace integral by area of shaded strip.
The Standard Normal Distribution $Z \sim \mathcal N(0,1)$
Special case with .
Variable usually denoted .
Historically, probabilities obtained from printed $Z$-tables:
E.g. from table (row 1.9, column 0.06).
Modern workflow: use calculators or software:
TI-84: 2nd → DIST (VARS) →
normalcdf(lower, upper).Example:
normalcdf(-1.26,1.26)returns ; table gives slightly less accurate 0.7922 (rounding).
Standardising a General Normal Variable
Any normal can be converted to via
Called z-score; measures distance from mean in units of standard deviation.
Enables use of standard normal tables or functions.
Procedure for probability questions
Sketch bell curve; mark mean and shade desired area.
Convert interval bounds to z-scores:
Use
normalcdf(z_1,z_2).Translate result back if interpreting in context.
Calculator shortcut: TI-84 allows
normalcdf(lower,upper,μ,σ)directly, but understanding standardisation remains conceptually critical.
Worked Forward-Probability Examples
Find .
z-scores: (5 at mean), .
normalcdf(0,0.12)→ .
Same distribution, .
, .
normalcdf(-0.21,0.21)→ .
Light-bulb lifetime
h, h ().
a) .
, .
Area:
normalcdf(0,2)→ .
b) P(X < 1470).
.
Two approaches:
Compute left-tail directly:
normalcdf(-1e99,-2.65)→ .Compute strip to 0 then subtract from 0.5:
normalcdf(-2.65,0) = 0.4960; .
Interpretation: Very unlikely (0.4 %) that a bulb fails before 1470 h.
Inverse Normal Problems (Finding Quantiles)
Given a probability (area), find such that .
TI-84:
invNorm(p)(orinverse normalin menu).Input = area to left of desired point.
Output = quantile (z-value).
Examples
Determine such that .
Total area to left of : .
invNorm(0.6217)→ .
Find with .
Left area smaller than 0.5 ⇒ quantile is negative.
invNorm(0.2858)→ .
Symmetric central probability: find s.t. .
Tail area combined: ; each tail .
Focus on left tail:
invNorm(0.1353)→ .Therefore .
Inverse for Non-standard Normals
If is given and :
Convert problem to via standardisation.
Use
invNormto get appropriate -quantile(s).Convert back: .
Worked Example
; find s.t. .
Diagram: strip to right of mean with given area.
Corresponding problem identical to earlier with area 0.1217 → .
Translate: .
Practical, Philosophical & Cross-Lecture Connections
Practical relevance: Engineers, scientists, and quality-control analysts rely on normal probabilities to predict defect rates (e.g., bulb life example) and design tolerance intervals.
Ethical dimension: Misinterpreting probabilities (e.g., ignoring tail risk) can lead to faulty decision-making in public policy or product safety.
Link to earlier material: The binomial distribution—treated in the discrete section—converges to the normal when number of trials is large and not extreme (De Moivre-Laplace). Understanding standardisation prepares you for the Central Limit Theorem in later chapters.
Tool mindset: While technology replaces hand-integration, conceptual mastery (areas ↔ probabilities, standardisation, tails) is vital for correct model choice and critical evaluation of software outputs.
Summary Checklist
[ ] Recognise definition and properties of a PDF for continuous variables.
[ ] Memorise that probabilities = areas under the curve.
[ ] Identify & interpret and in any normal PDF.
[ ] Convert ↔ via .
[ ] Use
normalcdffor forward probabilities,invNormfor quantiles.[ ] Always sketch curve, mark means, endpoints, and shade area—this prevents sign mistakes & mis-ordering of bounds.