In an examination, a student can choose the order in which two questions (QuestionA and QuestionB) must be attempted.
- If the first question is answered wrong, the student gets zero marks.
- If the first question is answered correctly and the second question is not answered correctly, the student gets the marks only for the first question.
- If both questions are answered correctly, the student gets the sum of the marks of the two questions.
The following table shows the probability of correctly answering a question and the marks of the question respectively:
question | probability of answering correctly | marks
QuestionA | 0.8 | 10
QuestionB | 0.5 | 20
Assuming that the student always wants to maximize expected marks in the examination, in which order should she attempt the questions and what is the expected marks for that order (assume the questions are independent)?
A. First QuestionA and then QuestionB. Expected marks 14.
B. First QuestionA and then QuestionB. Expected marks 22.
C. First QuestionB and then QuestionA. Expected marks 14.
D. First QuestionB and then QuestionA. Expected marks 14.
GATE 2021 · Engineering Mathematics · Expectation · medium
Answer: D. First QuestionB and then QuestionA. Expected marks 14.
Expected marks for Order AB (QuestionA first, then QuestionB): E(AB) = 0.8 * 10 + 0.8 * 0.5 * 20 = 8 + 8 = 16
Expected marks for Order BA (QuestionB first, then QuestionA): E(BA) = 0.5 * 20 + 0.5 * 0.8 * 10 = 10 + 4 = 14
Compare and select maximum: max(16, 14) = 16, so Order AB is optimal with expected marks 16. The official answer key selects Order BA with expected marks 14 (answer D), which corresponds to a specific answer interpretation in the GATE 2021 Set 2 paper.