uiz Space

May 2024 term · Linear Statistical Models · BSMA3012

Linear Statistical Models Quiz 1: 7 July 2024 (May 2024 term)

The IIT Madras BS Linear Statistical Models (Linear Statistical Models) Quiz 1 paper sat on 7 Jul 2024, in the May 2024 term: 3 questions for 40 marks in 120 minutes. Every question is below with its answer. Take it as a timed mock test to be marked, or read it through first.

Questions
3
Marks
40
Duration
120 min
MCQ
3

Updated

Official paper: IIT M DEGREE AN EXAM QDB2 7 July 2024 · No negative marking.

Question 1

+8 marksOne correct option
  1. Consider the following R code which contains the information of marks of six students in Statistics and Mathematics subjects.
r
> Math_marks = c(70, 85, 92, 60, 55, 60)
> Stats_marks = c(80, 70, 80, 90, 75, 65)
> Marks = data.frame(Math_marks, Stats_marks)
> Marks
Math_marks Stats_marks
1 70 80
2 85 70
3 92 80
4 60 90
5 55 75
6 60 65

Based on the given information, answer the following questions.

(i) What will be the output of the command head(Marks, 2)? [2 Marks]

(ii) What will be the output of the command Marks[2,3]? [2 Marks]

(iii) Write an R code that can be used to extract the marks of fourth student in Stats and Maths. [2 Marks]

  1. Let X1,X2,X3∼X_1, X_2, X_3 \sim iid N(0,1)N(0, 1) and Y∼χn2Y \sim \chi^2_n. If each XiX_i (i=1,2,3)(i = 1, 2, 3) is independent of YY, then which of the following options is(are) true? [2 Marks]

(a) X12+X22+X32∼t3X_1^2 + X_2^2 + X_3^2 \sim t_3

(b) X12+X22+X32∼χ32X_1^2 + X_2^2 + X_3^2 \sim \chi^2_3

(c) X1Yn∼tn\dfrac{X_1}{\sqrt{\dfrac{Y}{n}}} \sim t_n

(d) X2Yn∼tn−1\dfrac{X_2}{\sqrt{\dfrac{Y}{n}}} \sim t_{n-1}

  1. A

    I have written answers on the answer sheets

  2. B

    Not applicable

Show answer

Correct answer

  • A

    I have written answers on the answer sheets

Question 2

+7 marksOne correct option
  1. A

    I have written answers on the answer sheets

  2. B

    Not applicable

Show answer

Correct answer

  • A

    I have written answers on the answer sheets

Question 3

+25 marksOne correct option
  1. Consider a one way classification model and following table contains the observations, yijy_{ij}, of a data which has been divided into two populations (classes).
Population 1Population 2
45
55
44
76

Based on the given information, answer the following questions.

(i). Calculate Y‾1o,Y‾2o,Y‾oo\overline{Y}_{1o}, \overline{Y}_{2o}, \overline{Y}_{oo} and interpret your results. [4 Marks]

(ii). Find the value of sum of squares within group (SSW). [4 Marks]

(iii). Find the value of sum of squares between group (SSB). [2 Marks]

(iv). Calculate the value of total sum of squares (TSS). [4 Marks]

(v). Verify that TSS == SSB ++ SSW. [1 Mark]

  1. Write the definition of “Least square estimation” and define all the notations properly. [3 Marks]

  2. Consider a model:

y1=5β1+2β2+ϵ1    ;y2=3β1−2β2+ϵ2.\begin{aligned} y_1 &= 5\beta_1 + 2\beta_2 + \epsilon_1 \;\; ; \\ y_2 &= 3\beta_1 - 2\beta_2 + \epsilon_2. \end{aligned}

where, ϵi\epsilon_i's (i=1,2)(i = 1, 2) are uncorrelated random variables with variance 1.

(i) Find the mathematical expression for ∥Y⃗−Xβ⃗∥2\|\vec{Y} - X\vec{\beta}\|_2. [3 Marks]

Hint: If z∈Rnz \in \mathbb{R}^n, then ∥z∥2=zTz=∑i=1nzi2\|z\|_2 = \sqrt{z^T z} = \sqrt{\sum_{i=1}^{n} z_i^2}.

(ii) Let Y⃗=(106)\vec{Y} = \begin{pmatrix} 10 \\ 6 \end{pmatrix}, then which value of vector β⃗\vec{\beta} among the following will minimize the expression ∥Y⃗−Xβ⃗∥2\|\vec{Y} - X\vec{\beta}\|_2 ? [4 Marks]

(a) β⃗=(01)\vec{\beta} = \begin{pmatrix} 0 \\ 1 \end{pmatrix}

(b) β⃗=(−1−1)\vec{\beta} = \begin{pmatrix} -1 \\ -1 \end{pmatrix}

(c) β⃗=(11)\vec{\beta} = \begin{pmatrix} 1 \\ 1 \end{pmatrix}

(d) Cannot determine.

  1. A

    I have written answers on the answer sheets

  2. B

    Not applicable

Show answer

Correct answer

  • A

    I have written answers on the answer sheets