Probability Theory & Statistics
Level: 2 (Recall: definitions, standard problems, short derivations) Time: 30 minutes Total marks: 40
Q1. State the three Kolmogorov axioms of a probability measure on a sample space with sigma-algebra . (3 marks)
Q2. A fair six-sided die is rolled once. Let and . Use the inclusion–exclusion principle to compute . (4 marks)
Q3. A discrete random variable has PMF for and otherwise. (a) Find . (b) Compute . (4 marks)
Q4. Let . State and , and compute (leave in exact form). (5 marks)
Q5. Let with PDF for . (a) Derive the CDF. (b) State the median in terms of . (4 marks)
Q6. Define the moment generating function of a random variable . For , it is known that . Use it to obtain . (4 marks)
Q7. For random variables , define the covariance and the correlation coefficient . State the value of when and are independent. (4 marks)
Q8. State the Central Limit Theorem for a sequence of i.i.d. random variables with mean and finite variance . (4 marks)
Q9. A sample of has mean from a population with known . Construct a 95% confidence interval for the population mean (use ). (4 marks)
Q10. Define a Type I error and a Type II error in hypothesis testing, and state which one the significance level controls. (4 marks)
End of paper.
Answer keyMark scheme & solutions
Q1. (3 marks)
- (i) Non-negativity: for all . (1)
- (ii) Normalization: . (1)
- (iii) Countable additivity: for pairwise disjoint , . (1) Why: these axioms guarantee is a well-defined normalized measure.
Q2. (4 marks)
- . (1)
- . (1)
- . (1)
- . (1)
Q3. (4 marks)
- Normalization: . (2)
- . (2)
Q4. (5 marks)
- . (1)
- . (1)
- . (2)
- . (1)
Q5. (4 marks)
- CDF: for (0 otherwise). (2)
- Median : . (2)
Q6. (4 marks)
- Definition: (when it exists in a neighborhood of ). (1)
- . (1)
- . (1)
- At : , so . (1)
Q7. (4 marks)
- . (2)
- . (1)
- If independent then . (1)
Q8. (4 marks)
- Let i.i.d. with mean , variance , . (1)
- Then as . (2)
- Equivalently . (1)
Q9. (4 marks)
- CI: . (1)
- Margin . (2)
- Interval: . (1)
Q10. (4 marks)
- Type I error: rejecting when is true (false positive). (1.5)
- Type II error: failing to reject when is false (false negative). (1.5)
- (significance level) controls the Type I error probability. (1)
[
{"claim":"Q2: P(A∪B)=2/3","code":"PA=Rational(1,2); PB=Rational(1,2); PAB=Rational(1,3); result = (PA+PB-PAB == Rational(2,3))"},
{"claim":"Q3: c=1/10 and E[X]=3","code":"c=Rational(1,10); E=sum(x*c*x for x in [1,2,3,4]); result = (10*c==1 and E==3)"},
{"claim":"Q4: P(X=2) ≈ 0.2335","code":"from sympy import binomial, Rational; p=binomial(10,2)*Rational(3,10)**2*Rational(7,10)**8; result = (abs(float(p)-0.2335)<0.001)"},
{"claim":"Q9: 95% CI is (48.04,51.96)","code":"m=1.96*10/ (100**0.5); result = (abs((50-m)-48.04)<1e-9 and abs((50+m)-51.96)<1e-9)"}
]