There are two methods shown to calculate the number of ways a person can attempt at least one of 10 exam questions. The first method uses combinations to calculate the number of ways to attempt 1, 2, up to all 10 questions, adding up to 1023 ways. The second method notes each of the 10 questions can be attempted or not, with 2 options per question, giving 210 = 1024 total cases; but one case must be subtracted where no questions are attempted, giving the total as 1024 - 1 = 1023 ways.
Download as DOCX, PDF, TXT or read online on Scribd
0 ratings0% found this document useful (0 votes)
22 views
Example 3: Solution
There are two methods shown to calculate the number of ways a person can attempt at least one of 10 exam questions. The first method uses combinations to calculate the number of ways to attempt 1, 2, up to all 10 questions, adding up to 1023 ways. The second method notes each of the 10 questions can be attempted or not, with 2 options per question, giving 210 = 1024 total cases; but one case must be subtracted where no questions are attempted, giving the total as 1024 - 1 = 1023 ways.
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1
Example 3: There are 10 questions in an exam.
In how many ways can a person attempt at least
one question? Solution: A person can attempt 1 question or 2 questions or .....till all 10 questions. One question out of ten questions can be attempted in 10C1 = 10 ways. Similarly two questions out of ten questions can be attempted in 10C2 = 45 ways. Going ahead by the same logic, all ten questions can be attempted in 10C10 = 1 way. Hence the total number of ways = 10 + 45 + 120 +.....10 + 1 = 1023 ways (Using the formula of Combination). Alternate Method: Or some logic can be applied: Every question has 2 options, either it is attempted or not. Going ahead with this logic, since there are 10 questions, and each question has 2 options, so total number of cases = 210= 1024. But this count includes one case in which no question is attempted. This is the violation of the information given. So this case needs to be subtracted. Hence the total number of cases would be 1024 - 1 = 1023.