A question goes like this: Given that there 2 questions out of 3 questions to pass an exam and follow are details of number of people who attended the questions correctly, what is the maximum number of people who could have qualified the exam.
1. 2 2 2
The answer here is 3. Consider ab bc ca. It can also be derived as 6/2 = (total number who cleared / number of questions which are required to clear).
If I give another sample data
2. 245 272 238
Even here I can say floor(755/2) = 377 are the maximum number of people who have passed the exam.
But consider this data.
3. 100 10 1
Now, the average formula would not work. By reasoning, I can say that 11 people could have passed the exam.
But mathematically, how do I derive this as in for any M tests (and we are given the number of people have cleared those M tests indivually) and minimum requirement is N tests, how we can find the maximum number of people who could have cleared the exam.
I hope, I explained it properly.