-
Notifications
You must be signed in to change notification settings - Fork 1
/
Question.java
493 lines (449 loc) · 12.4 KB
/
Question.java
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
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
import java.util.Random;
/**
* @author Amit Sengupta
*
*/
public class Question {
static final int EASY=1;
static final int MEDIUM=2;
static final int DIFFICULT=3;
static final int RANDOM=4;
int size;
int[] q;
int marks;
String explanation;
/**
* @param size The number of Elements in the sequence. It cannot be more than 10
*
*/
Question (int size)
{
if (size>10) size =10;
this.size = size;
q= new int[size];
}
/**
* @return A number associated with the difficulty level of the question with respect to other questions.
*/
int getMarks()
{
return marks;
}
/**
* @return A String containing detailed explanation about the series
*/
String getExplanation()
{
return explanation;
}
/**
* @param difficulty Difficulty level of the question. It can be one among Question.EASY, Question.MEDIUM, Question.DIFFICULT or Question.RANDOM
* @return an integer array of size 'size' which will contain the question.
*/
int[] generateQuestion (int difficulty)
{
explanation="";
q = new int[size];
if (difficulty == RANDOM)
{
difficulty = new Random().nextInt(3)+1;
}
switch(difficulty)
{
case EASY: return easy();
case MEDIUM: return medium();
case DIFFICULT: return difficult();
}
return q;
}
/**
* @return Integer array of size "size" containing an easy question.
*/
int[] easy()
{
/* ===================================
* Easy
* ===================================
* question type Marks
* 1) AP 1
* 2) GP 1
* 3) square series / cube series 1
* 4) alternate AP's 1
* 5) alternate GP's 1
*/
marks = 1;
while(!isValidSequence()){
explanation="";
int type =new Random().nextInt(5)+1; // Types 1 to 5
Random r = new Random();
int a=0,b=0,c=0,d=0,e=0;
switch(type)
{
case 1: // AP
a = r.nextInt(10)+1;
b = r.nextInt(10)+1;
c = r.nextInt(2);
for (int i = 0; i < size; i++)
if(c==0)
{
q[i] = a + i*b;
}
else
{
q[size-i-1]=a + i*b;
}
explain();
explanation = explanation + "\nAirithmatic Progression:\nThe difference of any two consicutive terms is ";
if (c==0)
explanation = explanation + b +"";
else
explanation = explanation +"-"+ b;
break;
case 2: // GP
a = r.nextInt(5)+1;
b = r.nextInt(3)+2;
c = r.nextInt(2);
for (int i = 0; i < size; i++)
if(c==0) q[i] = a*(int)Math.pow(b,i);
else q[size-1-i]=a*(int)Math.pow(b,i);
explain();
explanation = explanation + "\nGeometric Progression:\nThe ratio of any two consicutive terms is ";
if (c==0)
explanation = explanation + b +"";
else
explanation = explanation + "(1/" + b +")";
break;
case 3: // square series / cube series
a = r.nextInt(2);
b = r.nextInt(2)+2;
if(a==0){
for (int i = 0; i < size; i++){
q[i] = (int)Math.pow(b,i);
if(i!=size-1)
explanation += q[i] + ", ";
else
explanation += q[i] + ":";
}
explanation+="\nPower series:\n" + b+"^0 , "+b+"^1 , "+b+"^2 , "+b+"^3, "+b+"^4 ...";
}
else{
for (int i = 0; i < size; i++){
q[i] = (int)Math.pow(i,b);
if(i!=size-1)
explanation += q[i] + ", ";
else
explanation += q[i] + ":";
}
explanation+="\nPower series:\n" +"0^"+b+" , 1^"+b+" , 2^"+b+" , 3^"+b+" , 4^"+b+" ...";
}
break;
case 4:
//alternate ap's
a = r.nextInt(10)+1;
b = r.nextInt(10)+1;
c = r.nextInt(10)+1;
d = r.nextInt(10)+1;
if(c==d)d++;
for (int i = 0; i < size; i=i+2)
q[i] = a + (i/2)*c;
for (int i = 1; i < size; i=i+2)
q[i] = b + ((i/2)+1)*d;
explain();
explanation += "\nAlternate terms are in Arithematic Progression:\nCommon Difference of Odd terms = "+c +", Even terms = " + d;
break;
case 5:
//alternate gp's
a = r.nextInt(10)+1;
b = r.nextInt(3)+2;
c = r.nextInt(10)+1;
d = r.nextInt(3)+2;
if(c==d)d++;
for (int i = 0; i < size; i=i+2)
q[i] = a * (int)Math.pow(c, (i/2));
for (int i = 1; i < size; i=i+2)
q[i] = b * (int)Math.pow(d,((i/2)+1));
explain();
explanation += "\nAlternate terms are in Geometric Progression:\nCommon Ratio of Odd terms = "+c +", Even terms = " + d;
break;
}
}
return q;
}
/**
* @return Integer array of size "size" containing a moderately difficult question.
*/
int[] medium()
{
/**
* MEDIUM
* ===================================
* 1) Easy 1
* 2) Difference in AP 2
* 3) Difference in GP 2
* 4) n is in AP/GP 2
* 5) introducing d (only GP) 2
* 6) Based on first element 2
*/
marks = 1;
while(!isValidSequence()){
explanation="";
int type =new Random().nextInt(6)+1; // Types 1 to 8
Random r = new Random();
int a=0,b=0,c=0,d=0;
switch(type)
{
case 1:
return easy();
case 2: //difference in AP
marks=2;
a = r.nextInt(10)+1;
b = r.nextInt(7)+2;
c = r.nextInt(10)+1;
q[0]=a;
for (int i = 1; i < size; i++)
q[i] = q[i-1] + c+b*i;
explain();
explanation += "\nThe difference of consecutive terms, i.e:\n(";
for (int i = 1; i < size; i++)
{
if(i!=size-1)
explanation += q[i]-q[i-1] + ", ";
else
explanation += q[i]-q[i-1] + ") \nis in Arithematic Progression where the difference of any two consicutive terms is " + b;
}
break;
case 3: //Difference in gp
marks=2;
a = r.nextInt(10)+1;
b = r.nextInt(3)+2;
c = r.nextInt(10)+1;
q[0]=a;
for (int i = 1; i < size; i++)
q[i] = q[i-1] + c* (int)Math.pow(b,i);
explain();
explanation += "\nThe difference of consecutive terms, i.e:\n(";
for (int i = 1; i < size; i++)
{
if(i!=size-1)
explanation += q[i]-q[i-1] + ", ";
else
explanation += q[i]-q[i-1] + ") \nis in Geometric Progression where the ratio of any two consicutive terms is " + b;
}
break;
case 4: // n is in gp
marks=2;
a = r.nextInt(10)+1;
b = r.nextInt(3)+1;
for (int i = 0; i < size; i++)
q[i] = a*(int)Math.pow(b,i);
a = r.nextInt(10)+1;
for (int i = 0; i < size; i++)
q[i] = a + q[i];
explain();
explanation+="\nSubtract each term by "+ a + ":\n(";
for (int i = 0; i < size; i++)
{
if(i!=size-1)
explanation += q[i]-a + ", ";
else
explanation += q[i]-a + ")";
}
explanation+="\nis in a Geometric progression where the ratio of any two consicutive terms is " + b;
break;
case 5: //introducing d (only GP)
marks=2;
a = r.nextInt(5)+1;
b = r.nextInt(3)+2;
d = r.nextInt(10)+1;
for (int i = 0; i < size; i++)
q[i] = (int)Math.pow(b,i)+d;
explain();
explanation += "\nSubtract every element by " + d + ":\n";
for (int i = 0; i < size; i++)
{
if(i!=size-1)
explanation += q[i]-d + ", ";
else
explanation += q[i]-d + ")";
}
explanation+= "\nWhich is (" + b+ "^0) , (" + b+ "^1) , (" + b+ "^2) , (" + b+ "^3) ...";
break;
case 6: //Based on previous element;
marks=2;
a = r.nextInt(4);
if(a==0)//square of prev no +/- something
{
a = r.nextInt(3)+1;
b = r.nextInt(10)-5;if (b==0) b=2;
q[1]=a;
for (int i = 1; i < size; i++)
q[i] = q[i-1]*q[i-1] + b;
explain();
String s = b>0?"+":"";
explanation += "\nEvery number in this sequence is equal to (square of previous number)"+s+" "+b;
}
else if (a==1)// +/- something, square of that number
{
a = r.nextInt(3)+1;
b = r.nextInt(10)-5;if (b==0) b=2;
q[1]=a;
for (int i = 1; i < size; i++)
q[i] = (q[i-1]+b)*(q[i-1] + b);
explain();
String s = b>0?"+":"";
explanation += "\nEvery number in this sequence is equal to square of (previous number "+s+" "+b+")";
}
else if (a==2) // +/- prev no with something, multily something
{
a = r.nextInt(10)+1;
b = r.nextInt(10)-5;if (b==0) b=2;
c = r.nextInt(10)-5;if (c==0) c=2;
q[1]=a;
for (int i = 1; i < size; i++)
q[i] = (q[i-1]+b)*c;
explain();
String s = b>0?"+":"";
explanation += "\nEvery number in this sequence is equal to (previous number "+s+" "+b+") * "+c;
}
else//multily prev number with something, +/- something
{
a = r.nextInt(10)+1;
b = r.nextInt(10)-5;if (b==0) b=2;
c = r.nextInt(10)-5;if (c==0) c=2;
q[1]=a;
for (int i = 1; i < size; i++)
q[i] = q[i-1]*c+b;
explain();
String s = b>0?"+":"";
explanation += "\nEvery number in this sequence is equal to (previous number * " + c + ")" + s + b;
}
break;
}
}
return q;
}
/**
* @return Integer array of size "size" containing a difficult question.
*/
int[] difficult()
{
/**
* Difficult
* ===================================
* 1) Medium 2
* 2) AGP Product 4
* 5) AGP Sum 4
* 4 5) n is PRIME 3
* 6 7) fibonacci 3
*/
marks = 2;
while(!isValidSequence()){
explanation="";
int type =new Random().nextInt(7)+1; // Types 1 to 9
Random r = new Random();
int a=0,b=0,c=0,d=0;
switch(type)
{
case 1: // medium
return medium();
case 2: //AGP Product
marks=4;
a = r.nextInt(10)+1;
b = r.nextInt(2)+1;
c = r.nextInt(2)+2;
for (int i = 0; i < size; i++)
{
q[i]= (a+i*b) * (int)Math.pow(c,i);
}
explain();
explanation+="\nThis sequence can be rewritten as:\n(";
for (int i = 0; i < size; i++)
{
if(i!=size-1)
explain+=(a+i*b)+ " * " (int)Math.pow(c,i)+", ";
else
explain+=(a+i*b)+ " * " (int)Math.pow(c,i)+"): ";
}
explanation += "Where the 1st factor is in an arithematic progression, the difference of any two consicutive terms is " + b;
explanation += "\And the 2nd factor is in an geometric progression, the ratio of any two consicutive terms is " + c;
break;
case 3: //AGP Sum
marks=4;
a = r.nextInt(10)+1;
b = r.nextInt(2)+1;
c = r.nextInt(2)+2;
for (int i = 0; i < size; i++)
{
q[i]= (a+i*b) + (int)Math.pow(c,i);
}
explain();
explanation+="\nThis sequence can be rewritten as:\n(";
for (int i = 0; i < size; i++)
{
if(i!=size-1)
explain+=(a+i*b)+ " + " (int)Math.pow(c,i)+", ";
else
explain+=(a+i*b)+ " + " (int)Math.pow(c,i)+"): ";
}
explanation += "Where the 1st term is in an arithematic progression, the difference of any two consicutive terms is " + b;
explanation += "\And the 2nd term is in an geometric progression, the ratio of any two consicutive terms is " + c;
break;
case 4:case 5:// Prime
marks=3;
int[] prime = {2,3,5,7,11,13,17,19,23,29};
a = r.nextInt(2);
b = r.nextInt(10)+1;
c = r.nextInt(5)+1;
if(a==0) // prime AP
{
for (int i = 0; i < size; i++)
q[i] = b + prime[i]*c;
explain();
explanation = b +" prime * " + c + " where prime = 2,3,5,7,11...";
}
else{
b = r.nextInt(5)+1;
for (int i = 0; i < size; i++)
q[i] = b*(int)Math.pow(prime[i],c);
explanation = b + " * prime ^ " + c + " where prime = 2,3,5,7,11...";
}
break;
case 7:case 6: // fibonacci
marks=3;
int[] fibonacci = {0,1,1,2,3,5,8,13,21,34};
a = r.nextInt(2);
b = r.nextInt(10)+1;
c = r.nextInt(5)+1;
if(a==0){
for (int i = 0; i < size; i++)
q[i] = b + fibonacci[i]*c;
explanation = b +" fibonacci * " + c + " where fibonacci = 0,1,1,2,3...";
}
else{
b = r.nextInt(5)+1;
for (int i = 0; i < size; i++)
q[i] = b*(int)Math.pow(fibonacci[i],c);
explanation = b + " * fibonacci ^ " + c + " where fibonacci = 0,1,1,2,3...";
}
break;
}
}
return q;
}
private boolean isValidSequence()
{
if (q[size-1]==q[0]) return false;
if (q[size-1]>999999 || q[size-1]<-999999 ) return false;
return true;
}
private void explain()
{
for (int i = 0; i < size; i++)
{
if(i!=size-1)
explanation += q[i] + ", ";
else
explanation += q[i] + ":";
}
}
}