You can use Expression Manager nested IF() statements to populate an equation question with the score for each question pair.
For example, with question codes "
Q1" and "
certainty1" and the correct answer code "
A1", something like this (line-breaks added for clarity):
Code:
{if(Q1 == 'A1' AND certainty1 == '1', 1,
if(Q1 == 'A1' AND certainty1 == '2', 2,
if(Q1 == 'A1' AND certainty1 == '3', 3,
if(Q1 != 'A1' AND certainty1 == '1', 0,
if(Q1 != 'A1' AND certainty1 == '2', -2,
if(Q1 != 'A1' AND certainty1 == '3', -6))))))}