Statistics & Probability — Intermediate
Level 4 — Application (Novel Problems, No Hints)
Time: 60 minutes Total Marks: 50
Answer all questions. Calculators permitted. Show all working.
Question 1 (11 marks)
A quality inspector records the lifetimes (in hours) of 60 light bulbs, grouped as follows:
| Lifetime (h) | Frequency |
|---|---|
| 6 | |
| 14 | |
| 22 | |
| 12 | |
| 6 |
(a) Estimate the mean lifetime. (3)
(b) Estimate the median lifetime using the grouped-median formula. (3)
(c) Estimate the modal lifetime using the grouped-mode formula. (3)
(d) A rival dataset has the same mean but a larger standard deviation. State, with justification, what this implies about the reliability (consistency) of the rival's bulbs. (2)
Question 2 (10 marks)
The daily numbers of customer complaints at a call centre over 11 days were:
(a) Find the median, lower quartile and upper quartile . (4)
(b) Compute the interquartile range and use the rule to determine whether any value is an outlier. (3)
(c) Sketch the box-and-whisker plot, marking any outlier separately and using the appropriate whisker endpoint. (3)
Question 3 (10 marks)
A diagnostic test for a disease has the following properties: the disease affects of a population. The test is positive in of people who have the disease, and gives a false positive in of people who do not have the disease.
(a) A randomly chosen person tests positive. Using Bayes' theorem, find the probability that they actually have the disease. Give your answer to 4 decimal places. (5)
(b) Two independent people from the same population both test positive. Find the probability that at least one of them actually has the disease. (3)
(c) Comment on why a highly "accurate" test (95% detection) can still give a low value in part (a). (2)
Question 4 (10 marks)
A committee is to be formed by arranging and selecting from 7 women and 5 men.
(a) In how many ways can all 12 people be seated in a row so that no two men sit next to each other? (4)
(b) A subcommittee of 5 is chosen from the 12 people. In how many ways can this be done if the subcommittee must contain at least 3 women? (4)
(c) Using Pascal's triangle relation, verify that by evaluating all three quantities. (2)
Question 5 (9 marks)
A biased coin shows heads with probability . It is tossed 8 times independently. Let be the number of heads.
(a) Write the probability mass function of and find to 4 decimal places. (3)
(b) Find the mean and variance of . (2)
(c) Find to 4 decimal places. (2)
(d) In the binomial expansion of , identify which term corresponds to and state its general-term form. (2)
End of paper
Answer keyMark scheme & solutions
Question 1
(a) Mean. Use midpoints .
.
Mean h. (3) — [1 midpoints, 1 sum, 1 divide]
(b) Median. , . Cumulative freq: 6, 20, 42, 54, 60. Median class (contains 30th). , , , .
(3) — [1 class, 1 formula, 1 value]
(c) Mode. Modal class (). .
(3) — [1 class, 1 formula, 1 value]
(d) Larger SD ⇒ greater spread of lifetimes about the same mean ⇒ less consistent/less reliable bulbs (more variability in how long they last). (2)
Question 2
Ordered: ().
(a) Median = 6th value . Lower half (first 5): ⇒ . Upper half (last 5): ⇒ . (4) — [1 order, 1 median, 1 each quartile]
(b) IQR . Fences: lower ; upper . All data in , so no outliers. (3) — [1 IQR, 1 fences, 1 conclusion]
(c) Box from 4 to 10, median line at 7; whiskers to min and max (no separated points since no outliers). (3)
Question 3
Let =disease, =positive. , , .
(a) .
(5) — [1 law of total prob setup, 1 numerator, 1 denominator, 1 Bayes formula, 1 value]
(b) : each person independently has . . . (3) — [1 complement idea, 1 square, 1 value]
(c) Because the disease is rare (2%), the many false positives from the large healthy 98% (0.0588) are comparable to true positives (0.019); base rate dominates. (2)
Question 4
(a) Seat 7 women first: ways. This creates 8 gaps; place 5 men in distinct gaps so none adjacent: . Total . (4) — [1 women arrange, 1 gaps, 1 men placement, 1 multiply]
(b) At least 3 women (of 7W,5M), choosing 5:
- 3W,2M:
- 4W,1M:
- 5W,0M:
Total . (4) — [1 each case, 1 sum]
(c) , , . . ✓ (2)
Question 5
.
(a) PMF: , . . (3)
(b) Mean . Variance . (2)
(c) . ; . . (2)
(d) In , is the term with : ; general term . (2)
[
{"claim":"Q1b grouped median = 1045.45","code":"m=1000+Rational(30-20,22)*100; result=abs(float(m)-1045.4545454)<1e-3"},
{"claim":"Q1c grouped mode = 1044.44","code":"mode=1000+Rational(8,18)*100; result=abs(float(mode)-1044.4444)<1e-3"},
{"claim":"Q3a Bayes P(D|+)=0.2442","code":"p=(0.02*0.95)/(0.02*0.95+0.98*0.06); result=abs(p-0.2442)<1e-4"},
{"claim":"Q3b at least one=0.4288","code":"p=(0.02*0.95)/(0.02*0.95+0.98*0.06); ans=1-(1-p)**2; result=abs(ans-0.4288)<1e-4"},
{"claim":"Q4b at least 3 women = 546","code":"from sympy import binomial; t=binomial(7,3)*binomial(5,2)+binomial(7,4)*binomial(5,1)+binomial(7,5)*binomial(5,0); result=t==546"},
{"claim":"Q5a P(X=3)=0.2541","code":"from sympy import binomial; p=binomial(8,3)*0.3**3*0.7**5; result=abs(float(p)-0.2541)<1e-4"},
{"claim":"Q5c P(X>=2)=0.7447","code":"from sympy import binomial; p=1-sum(binomial(8,k)*0.3**k*0.7**(8-k) for k in range(2)); result=abs(float(p)-0.7447)<1e-4"}
]