The Pilot post( The Exam)
Hi Everyone,I am going to use this blog to mainly post puzzles and how to orient yourself in solving them.You can also use python or any other programming language to code the rules and solve the puzzles.
Please keep in mind that I will give orientation to help you solve the puzzle and also the name of the book which contains the puzzle.I will give the answer after some days
So Let's get started with the first puzzle below
The Exam:-
Five students-Adele, Betty, Carol, Doris, and Ellen answered five questions on an exam consisting of two multiple-choice (a, b, or c) questions and three true-or-false (t or f) questions.
[1] They answered the questions as follows:
1 2 3 4 5
Adele a a t t t
Betty b b t f t
Carol a b t t f
Doris b c t t f
Ellen c a f t t
[2] No two students got the same number of correct
answers.
Who got the most correct answers?
Orientation:-
1) We need to find the upper limit of correct answers
Since no student got the same number of correct answers
Lets define the upper limit as 5 then the distinct values for 5 students can be 0,1,2,3,4,5
Lets define the upper limit as 4 then the distinct values for 5 students can be 0,1,2,3,4.
Lets define the upper limit as 3 then there is only 0,1,2,3 which only gives for 4 students so the upper limit is 4,5 only.
2)
i)Substitue 5 answers as correct for each of the five students and see if no two students got the same number of correct answers.
ii) if (i) fails then it means the maximum number of current answer is 4 and minimum is 0, hence find out which students can have 0 correct answers and find its inverse to find all the correct answers for the 5 question and solve the problem.
iii)This puzzle is contained in the book "The Great book of puzzles and teasers by George J Summers".
Comments
Post a Comment