| Study Guides
A-Level · cie-9231 · Further Mathematics · Further Statistics · 18 min read · Updated 2026-05-06

Further Statistics — A-Level Further Mathematics Study Guide

For: A-Level Further Mathematics candidates sitting Further Mathematics.

Covers: All core Further Statistics syllabus content for A-Level Further Mathematics, including continuous random variables, statistical inference, chi-squared tests, non-parametric tests, and probability generating functions.

You should already know: Strong A-Level Mathematics Pure Mathematics 1, 2, and 3 foundation.

A note on the practice questions: All worked questions in the "Practice Questions" section below are original problems written by us in the A-Level Further Mathematics style for educational use. They are not reproductions of past Cambridge International examination papers and may differ in wording, numerical values, or context. Use them to practise the technique; cross-check with official Cambridge mark schemes for grading conventions.


1. What Is Further Statistics?

Further Statistics is the advanced branch of A-Level Further Mathematics that extends your A-Level Mathematics statistics knowledge to solve complex, real-world probabilistic and inferential problems that standard basic methods cannot address. It counts for 25% of your total A-Level Further Mathematics marks in most exam sittings, balances theoretical probabilistic modelling and practical hypothesis testing, and is sometimes referred to as advanced or inferential statistics in broader learning resources. All questions on this topic require you to apply core formulas to novel contexts, rather than just rote recall, so understanding the logic behind each method is critical for scoring full marks.

2. Continuous random variables and PDFs

You already know discrete random variables (which take countable integer values) from A-Level Mathematics; continuous random variables (CRVs) take values across an uncountable range, such as time, height, or mass, and are described by a probability density function (PDF) . The PDF has two non-negotiable properties:

  1. for all in the domain of the variable (you cannot have negative probability)
  2. The total integral across the full domain is 1: , since the sum of all possible outcomes is 100% probability.

For CRVs, the probability of the variable taking a single exact value is always 0, so you will always integrate across an interval to find probability: .

Worked example

A CRV has PDF for , 0 otherwise. Verify it is a valid PDF and find .

  1. Validity check: , and is non-negative across its domain, so it is valid.
  2. Probability calculation: .

Exam tip: Examiners regularly ask for the median or mode of a CRV: the median satisfies , while the mode is the value of that maximises in the domain.

3. Inference — confidence intervals and tests for the mean

Statistical inference uses sample data to draw conclusions about an unknown population parameter, most commonly the population mean for A-Level Further Mathematics questions.

  • Confidence intervals: If population variance is known, use the standard normal Z-distribution: the 95% confidence interval is , where is the sample mean and the sample size. If population variance is unknown and the sample size is small (<30), use the t-distribution with degrees of freedom, so the interval becomes , where is the sample standard deviation.
  • Hypothesis tests for the mean: Set a null hypothesis and one or two-tailed alternative hypothesis, calculate the test statistic (Z if is known, if is unknown), and compare to the critical value for your significance level to decide whether to reject .

Worked example

A sample of 10 students has an average test score of 72, with sample standard deviation 6. Assuming scores are normally distributed, find the 95% confidence interval for the population mean.

  • Unknown population variance, small sample: use t-distribution with 9 degrees of freedom, .
  • Interval = , so the final interval is .

4. Chi-squared tests — goodness-of-fit and contingency

Chi-squared () tests are non-parametric tests used to compare observed frequency data to expected values under a null hypothesis. There are two core variants for A-Level Further Mathematics:

  1. Goodness-of-fit test: Tests if observed data fits a hypothesised distribution (e.g. uniform, binomial, normal). The test statistic is , where is observed frequency and expected frequency for each category. Degrees of freedom , where is the number of categories and the number of parameters estimated from sample data.
  2. Contingency table test: Tests if two categorical variables are independent. For an contingency table, degrees of freedom are .

For both tests, all expected frequencies must be at least 5: if any , combine adjacent categories before calculating the test statistic, and adjust your degrees of freedom accordingly.

Worked example

You roll a die 60 times, with observed counts: 1:8, 2:12, 3:11, 4:9, 5:10, 6:10. Test at 5% significance if the die is fair.

  • : die is fair, so each outcome has probability , expected count per category = 10.
  • Degrees of freedom , critical value at 5% = 11.07. Since 1.0 < 11.07, you do not reject : the die is fair.

5. Non-parametric tests

Non-parametric tests do not assume your underlying data follows a normal distribution, unlike Z or t-tests, so they are used for small or skewed datasets. The two core tests for A-Level Further Mathematics are:

  1. Wilcoxon signed-rank test: Used for paired data or tests of a single sample median. Calculate differences between paired observations, ignore zero differences, rank absolute differences from smallest to largest (average ranks for tied values), assign the sign of the original difference to each rank, sum positive ranks and negative ranks . The test statistic is the smaller of and , and you reject if the test statistic is less than the critical value from the Wilcoxon table.
  2. Wilcoxon rank-sum test: Used for two independent samples. Combine the two samples, rank all values from smallest to largest, sum the ranks for the smaller sample to get your test statistic , and reject if falls outside the critical range for your sample sizes.

Worked example

8 students take a test before and after a revision course, with differences (after - before) = [3, 2, -1, 4, 5, 2, 1, 3]. Test at 5% one-tailed significance if the course improves scores.

  • : median difference = 0, : median difference > 0.
  • Rank absolute differences, average ties: the two differences of 1 get ranks 1.5, the two differences of 2 get ranks 3.5, the two differences of 3 get ranks 5.5, with 4 and 5 getting ranks 7 and 8 respectively.
  • Sum of negative ranks , test statistic = 1.5. The one-tailed critical value for at 5% is 6. Since 1.5 < 6, reject : the course improves scores.

6. Probability generating functions

Probability generating functions (PGFs) are a algebraic tool to find the distribution, mean, and variance of discrete random variables that take non-negative integer values. For a discrete random variable , the PGF is defined as . Key properties you will be tested on:

  1. , as the sum of all probabilities is 1.
  2. Expected value: , the first derivative of the PGF evaluated at .
  3. Variance: , using the first and second derivatives evaluated at .
  4. For independent random variables and , the PGF of their sum is .

Worked example

. Find its PGF, then use it to calculate and .

  • , so .
  • First derivative , so , matching the binomial formula .
  • Second derivative , so . , matching the binomial formula .

7. Common Pitfalls (and how to avoid them)

  • Wrong move: Using the Z-distribution for small sample confidence intervals when population variance is unknown. Why: Students confuse Z and t use cases. Correct move: Use the t-distribution with degrees of freedom if variance is unknown and , and explicitly state the distribution you are using to earn the method mark.
  • Wrong move: Forgetting to combine categories in chi-squared tests when expected frequencies are less than 5. Why: Students rush through expected value calculations. Correct move: Check every before calculating the test statistic, combine adjacent small categories, and reduce your degrees of freedom by 1 for every category you combine.
  • Wrong move: Assigning sequential ranks to tied values in Wilcoxon tests. Why: Students forget the rank averaging rule. Correct move: For tied values, assign the average of the ranks they would have taken, and retain the sign of the difference for signed-rank tests.
  • Wrong move: Calculating for a CRV by plugging into the PDF. Why: Students mix up PDFs for continuous variables and PMFs for discrete variables. Correct move: Remember single-point probability for CRVs is always 0, so you must integrate across an interval to find probability.
  • Wrong move: Omitting the term when calculating variance from a PGF. Why: Students misremember the PGF variance formula. Correct move: Write the full variance formula at the start of every PGF question to avoid omission.

8. Practice Questions (A-Level Further Mathematics Style)

Question 1

A continuous random variable X has PDF for , 0 otherwise. (a) Find the value of . (b) Calculate . (c) Find the median of .

Solution

(a) Total integral over domain = 1: (b) Integrate from 1 to 4: (c) Solve : The only solution between 0 and 4 is , so the median is 2.


Question 2

A 2x3 contingency table has observed values: [12, 18, 10] for row 1, [8, 12, 20] for row 2. Test at 5% significance if the two variables are independent.

Solution

: variables are independent, : variables are dependent. Row totals = 40, 40; column totals = 20, 30, 30; grand total = 80. Expected frequencies: [10, 15, 15] for row 1, [10,15,15] for row 2. Degrees of freedom = , critical value at 5% = 5.991. Since 5.33 < 5.991, do not reject : variables are independent.


Question 3

The PGF of a discrete random variable X is . Find (a) , (b) .

Solution

(a) First derivative using quotient rule: Evaluate at : . (b) Second derivative: Evaluate at : .

9. Quick Reference Cheatsheet

Concept Core Formulas / Rules
Continuous Random Variables , , , median :
Inference for Mean Known variance: 95% CI , Z-test statistic
Unknown variance, small sample: t-distribution df=, CI , t-test statistic
Chi-squared Tests Test statistic
Goodness of fit df =
Contingency table df =
All
Non-parametric Tests Wilcoxon signed-rank: test statistic = min(, )
Wilcoxon rank-sum: test statistic = sum of ranks of smaller sample
Probability Generating Functions ,


Independent :

10. What's Next

The content in this guide forms the foundation for all advanced statistics questions in your A-Level Further Mathematics exam, and also connects directly to optional further topics including linear regression, correlation, and stochastic processes if you choose to pursue higher level mathematics or statistics at university. Mastering these concepts will also make it easier to tackle cross-topic questions that combine statistics with pure mathematics content like calculus or series, which are common in the 8-10 mark higher-order questions on the paper.

If you struggle with any of the subtopics covered here, or want to practice more exam-style questions tailored to your weak areas, you can ask Ollie for personalized help, additional practice problems, or step-by-step explanations of any concept at any time. Head to the homepage to access all free A-Level Further Mathematics study resources, including past paper solutions and timed mock exams.

Aligned with the Cambridge International AS & A Level Further Mathematics 9231 syllabus. OwlsAi is not affiliated with Cambridge Assessment International Education.

← Back to topic

Stuck on a specific question?
Snap a photo or paste your problem — Ollie (our AI tutor) walks through it step-by-step with diagrams.
Try Ollie free →