What Is Statistics — and Why Does It Matter?
Probability tells you what to expect from a known process. Statistics reverses the question: given data you have already collected, what can you infer about the process that generated it?
Every scientific paper, every clinical trial, every opinion poll, and every quality-control system in a factory relies on statistical reasoning. The core problem is always the same: you have a sample (a finite, imperfect window onto a much larger population) and you want to draw reliable conclusions despite the noise.
Statistics gives you the tools to do this honestly. Descriptive statistics summarise what you actually observed: means, medians, spreads, and shapes. Inferential statistics go further: they let you make claims about the whole population with a quantified level of confidence, and they tell you whether a pattern in your data is likely to be real or just the result of random chance.
At varsity level, the central limit theorem is the engine underneath most of these tools. It guarantees that sample means follow a normal distribution, regardless of what the underlying population looks like, as long as the sample is large enough. This single result is why the normal distribution appears in almost every inferential procedure.
Statistics vs Probability — the two directions of reasoning
- Known model → predict outcomes
- Deductive reasoning
- P(data | model)
- e.g. If a coin is fair, what is P(≥ 7 heads in 10 flips)?
- Covered in the Probability hub
- Observed data → infer model
- Inductive reasoning
- P(model | data)
- e.g. We got 7 heads in 10 flips: is the coin fair?
- Covered right here
All 5 Topics in This Section
The topics follow a natural progression, from describing data you have, to making inferences about data you have not seen, to modelling relationships between variables.
Key Formulas at a Glance
These are the formulas that appear most frequently across all five topics. Knowing them cold will save you time in exams.
The Normal Distribution — Interactive Explorer
The normal (Gaussian) distribution underpins almost every formula in this section. Adjust the mean μ and standard deviation σ below to see how the shape changes, and observe where the 68%, 95%, and 99.7% regions fall.
Normal Curve Explorer
Drag the sliders, the shaded region shows ±1σ, ±2σ, and ±3σ from the mean.
The 68-95-99.7 rule is worth memorising: approximately 68% of data falls within 1 standard deviation of the mean, 95% within 2 standard deviations, and 99.7% within 3. These numbers drive almost all hypothesis testing and confidence interval calculations: they tell you exactly how unusual a given result is.
Recommended Learning Path
If you are working through this section for the first time, follow this order. Each step builds directly on the last.
Start here to understand how to describe a dataset before making any inferences. Mean, variance, IQR, and box plots.
Learn the Central Limit Theorem and why sample means follow a normal distribution: the engine of all inferential statistics.
The full framework: H₀ and H₁, p-values, z-tests and t-tests, Type I & II errors, significance levels.
The interval estimate counterpart to hypothesis testing. Understand exactly what 95% confidence means: and what it does not.
Move from summarising a single variable to modelling the relationship between two. Least squares, R², residuals.
How Statistics Connects to the Rest of the Curriculum
Probability is the direct prerequisite. The normal distribution, expected value, variance, and the concept of a random variable are all covered in the Probability hub and are used constantly here. Hypothesis testing is essentially an application of conditional probability, and the p-value is a probability statement.
Integration underlies every probability density function. The area under a normal curve between two points is computed by integration: in practice you use z-tables, but understanding where those values come from requires improper integrals. The expected value E[X] = ∫ x f(x) dx is a direct application of integration to statistics.
Linear algebra becomes essential once you move beyond simple linear regression to multiple regression or principal component analysis. Regression in matrix form is Ax = b solved by the normal equations, and PCA relies on eigenvalues and eigenvectors: both covered in the Linear Algebra hub.
Calculus of optimisation is what produces the least-squares formulas: you minimise the sum of squared residuals by taking derivatives and setting them to zero, exactly as in the Optimisation page.