This is the score that the student would have got by guessing randomly. It depends on the question type. For types like shortanswer, it is 0 - or the score associated with answer '*', if there is one.
For multiple choice questions (including matching, truefalse, etc.) it is the average score over all the possible choices.
(There should probably be a method in the question type class to compute this.)
This turns out to be quite a complex calculation. I thought I might invite some community participation since I'm finding working these out rather time consuming. I have worked out methods to calculate this statistic for all other question types but the matching question.
The short answer matching question is obviously similar to the matching question type. There are N drop down boxes each with N possible answers to select. Assuming the student is clever enough to not select the same answer twice I worked out that the average grade for a random guess is likely to be 1/N (out of 1).
For the matching question type thought there might be M drop down boxes and N extra answers. I worked out that if there are factorial M possible combinations of answers if there are no extra answers. Ie :
For M = 3 combinations of answers is 3 * 2 * 1 = 6
For M =4 combinations of answers is 4 * 3 * 2 * 1 = 24
For M =5 combinations of answers is 5 * 4 * 3 * 2 * 1 = 120
etc.
In all the factorial(M) possible combinations then I worked out factorial(M) out of the factorial(M) * M drop down answers will be correct. So this means that there will be an average grade of 1/M.
But what if you take into account the extra wrong answers?
I worked out that if there is one extra answer then I think there are :
factorial(M) * (M+1) possible combinations of answers.
But after that I start getting confused.
Oh!
I got it, there are most probably :
factorial (M + N) / factorial (N) possible combinations.
But there are now more than factorial(M) drop downs in the right positions out of the possible combinations * the number of drop downs.
Does anyone follow what I've written so far?? And can you suggest a formula for the random guess score for a matching question with extra possible answers.