-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathQuestionMaker.py
360 lines (303 loc) · 11.1 KB
/
QuestionMaker.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
from decimal import Decimal
from fractions import Fraction
import random
class QuestionMaker:
def __init__(self):
self.init();
def init(self):
self.numChoices = 3
self.mixedAnswers = []
self.correctAnswerSet = []
self.goalFractFraction = []
def genNumCorrect(self, level):
#restrict number of fractions to add up based on level.
if(level <= 3) : return 1
elif(level <= 6) : return random.randint(1, 2)
return random.randint(1, 3)
def getChoices(self):
return self.mixedAnswers
def getAnswers(self):
return self.correctAnswerSet
def getAnswerNum(self):
return self.goalFractFraction
def makeNextQuestion(self, level):
#clear your answerSet and instantiate necessary temporary variables
self.init()
self.correctAnswerSet = []
correctAnswers = []
incorrectAnswers = []
numCorrect = self.genNumCorrect(level)
numIncorrect = self.numChoices - numCorrect
remainingInCorrect = numCorrect
levelDenom = 0
#generate non-zero goal numerator and denominator
if(level <= 6): levelDenom = 8
else:
levelDenom = 4 + int((level * level) / (level + level))
if(levelDenom > 20) : levelDenom = 20
goal = random.randint(numCorrect, (levelDenom - 1))
#goalMod = goal % 2
#if(goalMod != 0) :
#goal = goal - 1
#Turn goal into a fraction, and reduce it an arbitrary amount.
cont = False
extra = 0
goalNumer = goal
goalDenom = levelDenom
goalMod = 0
while(cont == False) :
# randomly leave fraction unreduced
print goalNumer
print goalDenom
extra = random.randint(1,3)
if(extra <= 2) :
#is the value and the denominator divisible by five?
goalMod = goalNumer % 5
if(goalMod == 0) :
goalMod = goalDenom % 5
if(goalMod == 0) :
#both are divisible by 5. Reduce, then repeat the loop.
goalNumer = goalNumer / 5
goalDenom = goalDenom / 5
else:
#check if they are divisible by two instead.
goalMod = goalNumer % 2
if(goalMod == 0) :
goalMod = goalDenom % 2
if(goalMod == 0) :
#both are divisible by two. Reduce, then repeat the loop.
goalNumer = goalNumer / 2
goalDenom = goalDenom / 2
else:
# denominator not divisible by two. Can't be reduced further.
cont = True
else:
#value not divisible by two. Can't be reduced further.
cont = True
else:
#The value was not divisible by five. Check for divisible by two.
goalMod = goalNumer % 2
if(goalMod == 0) :
goalMod = goalDenom % 2
if(goalMod == 0) :
# Both are divisible by two. Reduce and repeat loop.
goalNumer = goalNumer / 2
goalDenom = goalDenom / 2
else:
# denom not divisible by two. Can't be reduced further.
cont = True
else:
# Value can't be divided by two. Can't be reduced further.
cont = True
else: cont = True
#save the goal fraction
self.goalFractFraction.append(goalNumer)
self.goalFractFraction.append(goalDenom)
#self.goalFract = float(goal) / 40.0
#generate correct Answers that add up to goal
for i in range(1,numCorrect + 1):
#more temp variables (ones that are reset each round)
value = 0
valueMod = 0
extra = 0
denom = levelDenom
if(i != numCorrect) :
#insure we don't have any fractions that are equal to zero
value = random.randint(1, (goal - (1 *(numCorrect - i))))
#valueMod = value % 2
#if(valueMod != 0) :
#value = value - 1
else :
value = goal
#subtract our value from the goal before we change it to a fraction
goal = goal - value
#get a denominator and numerator value (maximum is fortieths)
extra = 0
cont = False
while(cont == False) :
#randomly leave fraction unreduced
extra = random.randint(1,3)
if(extra <= 2) :
#is the value and the denominator divisible by five?
valueMod = value % 5
if(valueMod == 0) :
valueMod = denom % 5
if(valueMod == 0) :
#both are divisible by 5. Reduce, then repeat the loop.
value = value / 5
denom = denom / 5
else:
#check if they are divisible by two instead.
valueMod = value % 2
if(valueMod == 0) :
valueMod = denom % 2
if(valueMod == 0) :
#both are divisible by two. Reduce, then repeat the loop.
value = value / 2
denom = denom / 2
else:
# denominator not divisible by two. Can't be reduced further.
cont = True
else:
#value not divisible by two. Can't be reduced further.
cont = True
else:
#The value was not divisible by five. Check for divisible by two.
valueMod = value % 2
if(valueMod == 0) :
valueMod = denom % 2
if(valueMod == 0) :
# Both are divisible by two. Reduce and repeat loop.
value = value / 2
denom = denom / 2
else:
# denom not divisible by two. Can't be reduced further.
cont = True
else:
# Value can't be divided by two. Can't be reduced further.
cont = True
else: cont = True
#Now turn the denominator and value into a pair.
tempArray = []
tempArray.append(value)
tempArray.append(denom)
#tempArray = str(value) + "/" + str(denom)
correctAnswers.append(tempArray)
#generate potentially incorrect answers
for i in range(1,numIncorrect + 1):
#more temp variables (ones that are reset each round)
value = 0
valueMod = 0
extra = 0
denom = levelDenom
#make a fraction that is at least reduce-able once and not equal to zero
value = random.randint(2, (levelDenom - 1))
#valueMod = value % 2
#if(valueMod != 0) :
#value = value - 1
#get a denominator and numerator value (maximum is twentieths)
extra = 0
cont = False
while(cont == False) :
#randomly leave fraction unreduced
extra = random.randint(1,3)
if(extra <= 2) :
#is the value and the denominator divisible by five?
valueMod = value % 5
if(valueMod == 0) :
valueMod = denom % 5
if(valueMod == 0) :
#both are divisible by 5. Reduce, then repeat the loop.
value = value / 5
denom = denom / 5
else:
#check if they are divisible by two instead.
valueMod = value % 2
if(valueMod == 0) :
valueMod = denom % 2
if(valueMod == 0) :
#both are divisible by two. Reduce, then repeat the loop.
value = value / 2
denom = denom / 2
else:
# denominator not divisible by two. Can't be reduced further.
cont = True
else:
#value not divisible by two. Can't be reduced further.
cont = True
else:
#The value was not divisible by five. Check for divisible by two.
valueMod = value % 2
if(valueMod == 0) :
valueMod = value % 2
if(valueMod == 0) :
# Both are divisible by two. Reduce and repeat loop.
value = value / 2
denom = denom / 2
else:
# denom not divisible by two. Can't be reduced further.
cont = True
else:
# Value can't be divided by two. Can't be reduced further.
cont = True
else: cont = True
#Now turn the denominator and value into a string for a fraction
tempArray = []
tempArray.append(value)
tempArray.append(denom)
#tempString = str(value) + "/" + str(denom)
incorrectAnswers.append(tempArray)
#self.correctAnswerSet.extend(correctAnswers)
#Now mix the answers together to ensure that one can't guess based on order.
remainingVars = self.numChoices
intendedAnsArray = []
for i in range(1,self.numChoices + 1):
nextIndex = random.randint(1,remainingVars)
if(nextIndex > remainingInCorrect) :
# use an incorrect Answer
nextIndex = nextIndex - (remainingInCorrect + 2)
intendedAnsArray.append(False)
self.mixedAnswers.append(incorrectAnswers.pop(nextIndex))
else:
# use a correct Answer
nextIndex = nextIndex - 1
intendedAnsArray.append(True)
self.mixedAnswers.append(correctAnswers.pop(nextIndex))
remainingInCorrect = remainingInCorrect - 1
remainingVars = remainingVars - 1
self.correctAnswerSet.append(intendedAnsArray)
#Now determine if any of the incorrect answers are equal to the correct answers
#if(numCorrect != 3) :
#acceptableAns = []
#No 123 possibility since that would mean that all three were in the intended answer, meaning that no combination of the pieces except 123 would get the desired result.
#for i in range(0, self.numChoices):
#if((self.goalFractFraction[0] % self.mixedAnswers[i][0] == 0) or (self.mixedAnswer[i][0] % self.goalFractFraction[0] == 0)) :
#One of the numerators is divisible by the other numerator. This means that the two fractions (goal and answer) could potentially be equal.
#denomMult1 = self.goalFractFraction[0] * self.mixedAnswer[i][1]
#denomMult2 = self.goalFractFraction[1] * self.mixedAnswer[i][0]
#if(denomMult1 == denomMult2):
#They are equal. Append this to acceptableAns.
#if(i == 0) : acceptableAns.append([True, False, False])
#elif(i == 1) : acceptableAns.append([False, True, False])
#else : acceptableAns.append([False, False, True])
#for j in range(i + 1, self.numChoices) :
# add the fractions together without using floats by multiplying their denominators and multiplying numerators by their opposing denominator.
#sumNumer = ((self.mixedAnswer[i][0] * self.mixedAnswer[j][1]) + (self.mixedAnswer[j][0] * self.mixedAnswer[i][1]))
#sumDenom = (self.mixedAnswer[i][1] * self.mixedAnswer[j][1])
#denomMult1 = self.goalFractFraction[0] * sumDenom
#denomMult2 = self.goalFractFraction[1] * sumNumer
#if(denomMult1 == denomMult2) :
#The sum of the two fractions are equal to the goal fraction. Add them to acceptableAns.
#if(i == 0) :
#if(j == 1) : acceptableAns.append([True, True, False])
#else : acceptableAns.append([True, False, True])
#elif(i == 1) : acceptableAns.append([False, True, True])
# extend the correct answer set with acceptable Ans.
#print acceptableAns
#self.correctAnswerSet.extend(acceptableAns)
#def __init__(self,questionType):
##The number of total answers
##Give us a random number representing the number of correct answers
#numCorrect = random.randint(2, 4)
#correctAnswers = []
#incorrectAnswers = []
#print numCorrect
##break 1 into x amount of sections(number of correct answers)
#section = float(1) / float(numCorrect)
##generate the correct answers (pulls out a chunk from section)
#for i in range(0, numCorrect):
#fraction = round(random.uniform(0.1, section), 2)
#correctAnswers.append(fraction)
#print(fraction)
#print correctAnswers
##add correct answers together to get goal decimal
#goal = sum(correctAnswers)
#print goal
##how many incorrect answers should we generate? (toal number of questions minus correct answers)
#dummyQuestions = numChoices - numCorrect
#print dummyQuestions
##generate dummy questions
#for i in range(0, dummyQuestions):
#fraction = round(random.uniform(0.1, 0.9), 2)
#incorrectAnswers.append(fraction)
#print incorrectAnswers