I am creating scoreboards for a test that has 3 sections (40, 50 and 60 questions).
Correct answers count for 1 point, meaning the highest scores are 40, 50 and 60 respectively.
Skipped answers count for 0 points.
Wrong answers have a "penalty" of -0.25.
I would like to create a list of all the possible scores that someone could get on each section. For the 40 question section, 40/40 is possible, while 39.75/40 is not (since if you got 39 correct and 1 wrong, you'd actually be at 38.75).
I am not sure whether to be thinking of skipped questions as "plus zero" or as "minus one", and similarly I am not sure whether to think of wrong answers as "minus 0.25" or "minus 1.25". I believe both ideas work but am I confusing myself with which direction to think as I try to make a list of all possible scores.
I tried to make a matrix where x = the number of correct answers, y = the number of wrong answers, z = the number of skipped answers and S = your final score.
This is what I came up with:
x - 0.25y = S x + y + z = 40 (or 50, or 60, depending on the section) x, y and z are integers between 0 and 40 (or 50, or 60, depending on the section)
Solving this matrix yields
I don't know where to go from here. I tried to solve the list of all possible scores manually but am getting quickly confused and would like a method to how to be sure I'm getting all the possible scores and eliminated all the impossible ones.
Thanks a lot!
