This repository was archived by the owner on May 11, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 865
/
Copy pathanswer-types.js
2428 lines (2167 loc) · 99.2 KB
/
answer-types.js
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
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/* TODO(csilvers): fix these lint errors (http://eslint.org/docs/rules): */
/* eslint-disable brace-style, comma-dangle, indent, max-len, no-redeclare, no-undef, no-var, one-var, prefer-spread, space-after-keywords */
/* To fix, remove an entry above, run ka-lint, and fix errors. */
define(function(require) {
var MAXERROR_EPSILON = Math.pow(2, -42);
// Function used to get the text of the choices, which is then used
// to check against the correct answer
var extractRawCode = function(elem) {
var $elem = $(elem).clone(true);
var code = $elem.find("code");
if (code.length) {
// If there are <code> tags in the element, remove them and replace
// them with their original formulas
$.each(code, function(i, elem) {
$(elem).replaceWith(
// TODO(emily): Adding <code> and <script> tags around this is
// a horrible hack to make this code backwards-compatible with
// the old extractRawCode (so that timeline works, etc). Remove
// this at some point and make it just return the formula, not
// the wrapping.
'<code><script type="math/tex">' +
KhanUtil.retrieveMathFormula(elem) +
'</script></code>'
);
});
}
return $elem.html();
};
function getTextSquish(elem) {
return $(elem).text().replace(/\s+/g, "");
}
// TODO(alpert): Don't duplicate from khan-exercise.js
function checkIfAnswerEmpty(guess) {
// If multiple-answer, join all responses and check if that's empty
// Remove commas left by joining nested arrays in case multiple-answer is
// nested
return $.trim(guess) === "" || (guess instanceof Array &&
$.trim(guess.join("").replace(/,/g, "")) === "");
}
function addExamplesToInput($input, examples) {
if ($input.data("qtip")) {
$input.qtip("destroy", /* immediate */ true);
}
var $examples = $('<ul class="examples" style="display: none"></ul>');
_.each(examples, function(example) {
$examples.append("<li>" + example + "</li>");
});
$input.qtip({
content: {
text: $examples.remove(),
prerender: true
},
style: {classes: "qtip-light leaf-tooltip"},
position: {
my: "top left",
at: "bottom left"
},
show: {
delay: 0,
effect: {
length: 0
},
event: "focus"
},
hide: {
delay: 0,
event: "blur"
},
events: {
render: function() {
// Only run the modules when the qtip is actually shown
$examples.children().runModules();
}
}
});
}
/*
* Answer types
*
* Utility for creating answerable questions displayed in exercises
*
* Different answer types produce different kinds of input displays, and do
* different kinds of checking on the solutions.
*
* Each of the objects contain two functions, setup and createValidator.
*
* The setup function takes a solutionarea and solution, and performs setup
* within the solutionarea, and then returns an object which contains:
*
* answer: a function which, when called, will retrieve the current answer from
* the solutionarea, which can then be validated using the validator
* function
* validator: a function returned from the createValidator function (defined
* below)
* solution: the correct answer to the problem
* showGuess: a function which, when given a guess, shows the guess within the
* provided solutionarea
* showGuessCustom: a function which displays parts of a guess that are not
* within the solutionarea; currently only used for custom
* answers
*
* The createValidator function only takes a solution, and it returns a
* function which can be used to validate an answer.
*
* The resulting validator function returns:
* - true: if the answer is fully correct
* - false: if the answer is incorrect
* - "" (the empty string): if no answer has been provided (e.g. the answer box
* is left unfilled)
* - a string: if there is some slight error
*
* In most cases, setup and createValidator don't really need the solution DOM
* element so we have setupFunctional and createValidatorFunctional for them
* which take only $solution.text() and $solution.data(). This makes it easier
* to reuse specific answer types.
*
* TODO(alpert): Think of a less-absurd name for createValidatorFunctional.
*
*/
Khan.answerTypes = $.extend(Khan.answerTypes, {
/*
* letters answer type. Inherits from `text` type, with a grammar hint of
* `letters`
*/
letters: {
setupFunctional: function(solutionarea, solutionText, solutionData) {
return Khan.answerTypes.text.setupFunctional(solutionarea, solutionText, solutionData, 'letters');
},
createValidatorFunctional: function(correct, options) {
return Khan.answerTypes.text.createValidatorFunctional(correct, options);
},
},
/*
* lowers answer type. Inherits from `text` type, with a grammar hint of
* `lowers`. Intended for lower-case answers.
*/
lowers: {
setupFunctional: function(solutionarea, solutionText, solutionData) {
return Khan.answerTypes.text.setupFunctional(solutionarea, solutionText, solutionData, 'lowers');
},
createValidatorFunctional: function(correct, options) {
return Khan.answerTypes.text.createValidatorFunctional(correct, options);
},
},
/*
* caps answer type. Inherits from `text` type, with a grammar hint of
* `caps`
*/
caps: {
setupFunctional: function(solutionarea, solutionText, solutionData) {
return Khan.answerTypes.text.setupFunctional(solutionarea, solutionText, solutionData, 'caps');
},
createValidatorFunctional: function(correct, options) {
return Khan.answerTypes.text.createValidatorFunctional(correct, options);
},
},
/*
* text answer type
*
* Displays a simple text box, and performs direct string matching on the
* value typed in an the answer provided
*
* solutionGrammar is a string used by the mobile app to determine what
* characters should be allowed.
*/
text: {
setupFunctional: function(solutionarea, solutionText, solutionData, solutionGrammar) {
solutionGrammar = solutionGrammar || 'text';
// Add a text box
var input;
if (window.Modernizr && Modernizr.touchevents) {
// special flag for iOS devices
input = $('<input data-solution-grammar="' + solutionGrammar + '" type="text" autocapitalize="off">');
} else {
input = $('<input data-solution-grammar="' + solutionGrammar + '" type="text">');
}
$(solutionarea).append(input);
return {
validator: Khan.answerTypes.text.createValidatorFunctional(
solutionText, solutionData),
answer: function() {
return input.val();
},
solution: $.trim(solutionText),
showGuess: function(guess) {
input.val(guess === undefined ? "" : guess);
}
};
},
createValidatorFunctional: function(correct, options) {
options = $.extend({
correctCase: "required"
}, options);
correct = $.trim(correct);
return function(guess) {
// The fallback variable is used in place of the answer, if no
// answer is provided (i.e. the field is left blank)
var fallback =
options.fallback != null ? "" + options.fallback : "";
guess = $.trim(guess) || fallback;
var score = {
empty: false,
correct: false,
message: null,
guess: guess
};
if (guess.toLowerCase() === correct.toLowerCase()) {
if (correct === guess || options.correctCase === "optional") {
score.correct = true;
} else {
if (guess === guess.toLowerCase()) {
score.message = i18n._("Your answer is almost correct, but " +
"must be in capital letters.");
} else if (guess === guess.toUpperCase()) {
score.message = i18n._("Your answer is almost correct, but " +
"must not be in capital letters.");
} else {
score.message = i18n._("Your answer is almost correct, but " +
"must be in the correct case.");
}
}
}
return score;
};
}
},
/*
* predicate answer type
*
* performs simple predicate-based checking of a numeric solution, with
* different kinds of number formats
*
* Uses the data-forms option on the solution to choose which number formats
* are acceptable. Available data-forms:
*
* - integer: 3
* - proper: 3/5
* - improper: 5/3
* - pi: 3 pi
* - log: log(5)
* - percent: 15%
* - mixed: 1 1/3
* - decimal: 1.7
*
* The solution should be a predicate of the form:
*
* function(guess, maxError) {
* return abs(guess - 3) < maxError;
* }
*
*/
predicate: {
defaultForms: "integer, proper, improper, mixed, decimal",
setupFunctional: function(solutionarea, solutionText, solutionData) {
// retrieve the options from the solution data
var options = $.extend({
simplify: "required",
ratio: false,
forms: Khan.answerTypes.predicate.defaultForms
}, solutionData);
var acceptableForms = options.forms.split(/\s*,\s*/);
// TODO(jack): remove options.inexact in favor of options.maxError
if (options.inexact === undefined) {
// If we aren't allowing inexact, ensure that we don't have a
// large maxError as well.
options.maxError = 0;
}
// Allow a small tolerance on maxError, to avoid numerical
// representation issues (2.3 should be correct for a solution of
// 2.45 with maxError=0.15).
options.maxError = +options.maxError + MAXERROR_EPSILON;
var $input = $('<input type="text" autocapitalize="off">');
$(solutionarea).append($input);
// retrieve the example texts from the different forms
var exampleForms = {
integer: i18n._("an integer, like <code>6</code>"),
proper: (function() {
if (options.simplify === "optional") {
return i18n._("a <em>proper</em> fraction, like " +
"<code>1/2</code> or <code>6/10</code>");
} else {
return i18n._("a <em>simplified proper</em> " +
"fraction, like <code>3/5</code>");
}
})(),
improper: (function() {
if (options.simplify === "optional") {
return i18n._("an <em>improper</em> fraction, like " +
"<code>10/7</code> or <code>14/8</code>");
} else {
return i18n._("a <em>simplified improper</em> " +
"fraction, like <code>7/4</code>");
}
})(),
pi: i18n._("a multiple of pi, like <code>12\\ \\text{pi}</code> " +
"or <code>2/3\\ \\text{pi}</code>"),
log: i18n._("an expression, like <code>\\log(100)</code>"),
percent: i18n._("a percent, like <code>%(NUM)s\\%</code>", {NUM: KhanUtil.localeToFixed(12.34, 2)}),
mixed: i18n._("a mixed number, like <code>1\\ 3/4</code>"),
decimal: (function() {
if (options.inexact === undefined) {
return i18n._("an <em>exact</em> decimal, like " +
"<code>%(NUM)s</code>", {NUM: KhanUtil.localeToFixed(0.75, 2)});
} else {
return i18n._("a decimal, like <code>%(NUM)s</code>", {NUM: KhanUtil.localeToFixed(0.75, 2)});
}
})()
};
// extract the examples for the given forms
var examples = [];
$.each(acceptableForms, function(i, form) {
if (exampleForms[form] != null) {
examples.push(exampleForms[form]);
}
});
// Add examples directly to input
// unless any generic number is accepted
if (options.forms !== Khan.answerTypes.predicate.defaultForms) {
addExamplesToInput($input, examples);
}
return {
validator: Khan.answerTypes.predicate.createValidatorFunctional(
solutionText, solutionData),
answer: function() {
return $input.val();
},
solution: $.trim(solutionText),
showGuess: function(guess) {
$input.val(guess === undefined ? "" : guess);
}
};
},
createValidatorFunctional: function(predicate, options) {
// Extract the options from the given solution object
options = $.extend({
simplify: "required",
ratio: false,
forms: Khan.answerTypes.predicate.defaultForms
}, options);
var acceptableForms;
// this is maintaining backwards compatibility
// TODO(merlob) fix all places that depend on this, then delete
if (!_.isArray(options.forms)) {
acceptableForms = options.forms.split(/\s*,\s*/);
} else {
acceptableForms = options.forms;
}
// TODO(jack): remove options.inexact in favor of options.maxError
if (options.inexact === undefined) {
// If we aren't allowing inexact, ensure that we don't have a
// large maxError as well.
options.maxError = 0;
}
// Allow a small tolerance on maxError, to avoid numerical
// representation issues (2.3 should be correct for a solution of
// 2.45 with maxError=0.15).
options.maxError = +options.maxError + MAXERROR_EPSILON;
// If percent is an acceptable form, make sure it's the last one
// in the list so we don't prematurely complain about not having
// a percent sign when the user entered the correct answer in a
// different form (such as a decimal or fraction)
if (_.contains(acceptableForms, "percent")) {
acceptableForms = _.without(acceptableForms, "percent");
acceptableForms.push("percent");
}
predicate = _.isFunction(predicate) ?
predicate :
KhanUtil.tmpl.getVAR(predicate);
// Take text looking like a fraction, and turn it into a number
var fractionTransformer = function(text) {
text = text
// Replace unicode minus sign with hyphen
.replace(/\u2212/, "-")
// Remove space after +, -
.replace(/([+-])\s+/g, "$1")
// Remove leading/trailing whitespace
.replace(/(^\s*)|(\s*$)/gi, "");
// Extract numerator and denominator
var match = text.match(/^([+-]?\d+)\s*\/\s*([+-]?\d+)$/);
var parsedInt = parseInt(text, 10);
if (match) {
var num = parseFloat(match[1]),
denom = parseFloat(match[2]);
var simplified = denom > 0 &&
(options.ratio || match[2] !== "1") &&
KhanUtil.getGCD(num, denom) === 1;
return [{
value: num / denom,
exact: simplified
}];
} else if (!isNaN(parsedInt) && "" + parsedInt === text) {
return [{
value: parsedInt,
exact: true
}];
}
return [];
};
/*
* Different forms of numbers
*
* Each function returns a list of objects of the form:
*
* {
* value: numerical value,
* exact: true/false
* }
*/
var forms = {
// integer, which is encompassed by decimal
integer: function(text) {
// Compare the decimal form to the decimal form rounded to
// an integer. Only accept if the user actually entered an
// integer.
var decimal = forms.decimal(text);
var rounded = forms.decimal(text, 1);
if ((decimal[0].value != null &&
decimal[0].value === rounded[0].value) ||
(decimal[1].value != null &&
decimal[1].value === rounded[1].value)) {
return decimal;
}
return [];
},
// A proper fraction
proper: function(text) {
return $.map(fractionTransformer(text), function(o) {
// All fractions that are less than 1
if (Math.abs(o.value) < 1) {
return [o];
} else {
return [];
}
});
},
// an improper fraction
improper: function(text) {
return $.map(fractionTransformer(text), function(o) {
// All fractions that are greater than 1
if (Math.abs(o.value) >= 1) {
return [o];
} else {
return [];
}
});
},
// pi-like numbers
pi: function(text) {
var match, possibilities = [];
// Replace unicode minus sign with hyphen
text = text.replace(/\u2212/, "-");
// - pi
// (Note: we also support \pi (for TeX), p, tau (and \tau,
// and t), pau.)
if ((match = text.match(
/^([+-]?)\s*(\\?pi|p|\u03c0|\\?tau|t|\u03c4|pau)$/i
))) {
possibilities = [{ value: parseFloat(match[1] + "1"), exact: true }];
// 5 / 6 pi
} else if ((match = text.match(/^([+-]?\s*\d+\s*(?:\/\s*[+-]?\s*\d+)?)\s*\*?\s*(\\?pi|p|\u03c0|\\?tau|t|\u03c4|pau)$/i))) {
possibilities = fractionTransformer(match[1]);
// 4 5 / 6 pi
} else if ((match = text.match(/^([+-]?)\s*(\d+)\s*([+-]?\d+)\s*\/\s*([+-]?\d+)\s*\*?\s*(\\?pi|p|\u03c0|\\?tau|t|\u03c4|pau)$/i))) {
var sign = parseFloat(match[1] + "1"),
integ = parseFloat(match[2]),
num = parseFloat(match[3]),
denom = parseFloat(match[4]);
var simplified = num < denom &&
KhanUtil.getGCD(num, denom) === 1;
possibilities = [{
value: sign * (integ + num / denom),
exact: simplified
}];
// 5 pi / 6
} else if ((match = text.match(/^([+-]?\s*\d+)\s*\*?\s*(\\?pi|p|\u03c0|\\?tau|t|\u03c4|pau)\s*(?:\/\s*([+-]?\s*\d+))?$/i))) {
possibilities = fractionTransformer(match[1] +
"/" + match[3]);
// - pi / 4
} else if ((match = text.match(/^([+-]?)\s*\*?\s*(\\?pi|p|\u03c0|\\?tau|t|\u03c4|pau)\s*(?:\/\s*([+-]?\d+))?$/i))) {
possibilities = fractionTransformer(match[1] +
"1/" + match[3]);
// 0
} else if (text === "0") {
possibilities = [{ value: 0, exact: true }];
// 0.5 pi (fallback)
} else if ((match = text.match(
/^(.+)\s*\*?\s*(\\?pi|p|\u03c0|\\?tau|t|\u03c4|pau)$/i
))) {
possibilities = forms.decimal(match[1]);
} else {
possibilities = _.reduce(Khan.answerTypes.predicate.defaultForms.split(/\s*,\s*/), function(memo, form) {
return memo.concat(forms[form](text));
}, []);
// If the answer is a floating point number that's
// near a multiple of pi, mark is as being possibly
// an approximation of pi. We actually check if
// it's a plausible approximation of pi/12, since
// sometimes the correct answer is like pi/3 or pi/4.
// We also say it's a pi-approximation if it involves
// x/7 (since 22/7 is an approximation of pi.)
// Never mark an integer as being an approximation
// of pi.
var approximatesPi = false;
var number = parseFloat(text);
if (!isNaN(number) && number !== parseInt(text)) {
var piMult = Math.PI / 12;
var roundedNumber = piMult * Math.round(number / piMult);
if (Math.abs(number - roundedNumber) < 0.01) {
approximatesPi = true;
}
} else if (text.match(/\/\s*7/)) {
approximatesPi = true;
}
if (approximatesPi) {
$.each(possibilities, function(ix, possibility) {
possibility.piApprox = true;
});
}
return possibilities;
}
var multiplier = Math.PI;
if (text.match(/\\?tau|t|\u03c4/)) {
multiplier = Math.PI * 2;
}
// We're taking an early stand along side xkcd in the
// inevitable ti vs. pau debate... http://xkcd.com/1292
if (text.match(/pau/)) {
multiplier = Math.PI * 1.5;
}
$.each(possibilities, function(ix, possibility) {
possibility.value *= multiplier;
});
return possibilities;
},
// Converts '' to 1 and '-' to -1 so you can write "[___] x"
// and accept sane things
coefficient: function(text) {
var possibilities = [];
// Replace unicode minus sign with hyphen
text = text.replace(/\u2212/, "-");
if (text === "") {
possibilities = [{ value: 1, exact: true }];
} else if (text === "-") {
possibilities = [{ value: -1, exact: true }];
}
return possibilities;
},
// simple log(c) form
log: function(text) {
var match, possibilities = [];
// Replace unicode minus sign with hyphen
text = text.replace(/\u2212/, "-");
text = text.replace(/[ \(\)]/g, "");
if ((match = text.match(/^log\s*(\S+)\s*$/i))) {
possibilities = forms.decimal(match[1]);
} else if (text === "0") {
possibilities = [{ value: 0, exact: true }];
}
return possibilities;
},
// Numbers with percent signs
percent: function(text) {
text = $.trim(text);
// store whether or not there is a percent sign
var hasPercentSign = false;
if (text.indexOf("%") === (text.length - 1)) {
text = $.trim(text.substring(0, text.length - 1));
hasPercentSign = true;
}
var transformed = forms.decimal(text);
$.each(transformed, function(ix, t) {
t.exact = hasPercentSign;
t.value = t.value / 100;
});
return transformed;
},
// Mixed numbers, like 1 3/4
mixed: function(text) {
var match = text
// Replace unicode minus sign with hyphen
.replace(/\u2212/, "-")
// Remove space after +, -
.replace(/([+-])\s+/g, "$1")
// Extract integer, numerator and denominator
.match(/^([+-]?)(\d+)\s+(\d+)\s*\/\s*(\d+)$/);
if (match) {
var sign = parseFloat(match[1] + "1"),
integ = parseFloat(match[2]),
num = parseFloat(match[3]),
denom = parseFloat(match[4]);
var simplified = num < denom &&
KhanUtil.getGCD(num, denom) === 1;
return [{
value: sign * (integ + num / denom),
exact: simplified
}];
}
return [];
},
// Decimal numbers -- compare entered text rounded to
// 'precision' Reciprical of the precision against the correct
// answer. We round to 1/1e10 by default, which is healthily
// less than machine epsilon but should be more than any real
// decimal answer would use. (The 'integer' answer type uses
// precision == 1.)
decimal: function(text, precision) {
if (precision == null) {
precision = 1e10;
}
var normal = function(text) {
text = $.trim(text);
var match = text
// Replace unicode minus sign with hyphen
.replace(/\u2212/, "-")
// Remove space after +, -
.replace(/([+-])\s+/g, "$1")
// Extract integer, numerator and denominator. If
// commas or spaces are used, they must be in the
// "correct" places
.match(/^([+-]?(?:\d{1,3}(?:[, ]?\d{3})*\.?|\d{0,3}(?:[, ]?\d{3})*\.(?:\d{3}[, ]?)*\d{1,3}))$/);
// You can't start a number with `0,`, to prevent us
// interpeting '0.342' as correct for '342'
var badLeadingZero = text.match(/^0[0,]*,/);
if (match && !badLeadingZero) {
var x = parseFloat(match[1].replace(/[, ]/g, ""));
if (options.inexact === undefined) {
x = Math.round(x * precision) / precision;
}
return x;
}
};
var commas = function(text) {
text = text.replace(/([\.,])/g, function(_, c) {
return (c === "." ? "," : ".");
});
return normal(text);
};
return [
{ value: normal(text), exact: true },
{ value: commas(text), exact: true }
];
}
};
// validator function
return function(guess) {
// The fallback variable is used in place of the answer, if no
// answer is provided (i.e. the field is left blank)
var fallback =
options.fallback != null ? "" + options.fallback : "";
guess = $.trim(guess) || fallback;
var score = {
empty: guess === "",
correct: false,
message: null,
guess: guess
};
// iterate over all the acceptable forms, and if one of the
// answers is correct, return true
$.each(acceptableForms, function(i, form) {
var transformed = forms[form](guess);
for (var j = 0, l = transformed.length; j < l; j++) {
var val = transformed[j].value;
var exact = transformed[j].exact;
var piApprox = transformed[j].piApprox;
// If a string was returned, and it exactly matches,
// return true
if (predicate(val, options.maxError)) {
// If the exact correct number was returned,
// return true
if (exact || options.simplify === "optional") {
score.correct = true;
score.message = options.message || null;
// If the answer is correct, don't say it's
// empty. This happens, for example, with the
// coefficient type where guess === "" but is
// interpreted as "1" which is correct.
score.empty = false;
} else if (form === "percent") {
// Otherwise, an error was returned
score.empty = true;
score.message = i18n._("Your answer is almost correct, " +
"but it is missing a " +
"<code>\\%</code> at the end.");
} else {
if (options.simplify !== "enforced") {
score.empty = true;
}
score.message = i18n._("Your answer is almost correct, " +
"but it needs to be simplified.");
}
return false; // break;
} else if (piApprox &&
predicate(val, Math.abs(val * 0.001))) {
score.empty = true;
score.message = i18n._("Your answer is close, but you may " +
"have approximated pi. Enter your " +
"answer as a multiple of pi, like " +
"<code>12\\ \\text{pi}</code> or " +
"<code>2/3\\ \\text{pi}</code>");
}
}
});
if (score.correct === false) {
var interpretedGuess = false;
_.each(forms, function(form) {
if(_.any(form(guess), function(t) {
return t.value != null && !_.isNaN(t.value);})) {
interpretedGuess = true;
}
});
if (!interpretedGuess) {
score.empty = true;
score.message = i18n._("We could not understand your answer. " +
"Please check your answer for extra text or symbols.");
return score;
}
}
return score;
};
}
},
/*
* number answer type
*
* wraps the predicate answer type to performs simple number-based checking
* of a solution
*/
number: {
convertToPredicate: function(correct, options) {
// TODO(alpert): Don't think this $.trim is necessary
var correctFloat = parseFloat($.trim(correct));
return [
function(guess, maxError) {
return Math.abs(guess - correctFloat) < maxError;
},
$.extend({}, options, {type: "predicate"})
];
},
setupFunctional: function(solutionarea, solutionText, solutionData) {
var args = Khan.answerTypes.number.convertToPredicate(
solutionText, solutionData);
return Khan.answerTypes.predicate.setupFunctional(
solutionarea,
/* text: */ args[0], /* data: */ args[1]);
},
createValidatorFunctional: function(correct, options) {
return Khan.answerTypes.predicate.createValidatorFunctional.apply(
Khan.answerTypes.predicate,
Khan.answerTypes.number.convertToPredicate(correct, options));
}
},
/*
* These next four answer types are just synonyms for number with given
* forms. Set the correct forms on the solution, and pass it on to number
*/
decimal: numberAnswerType("decimal"),
rational: numberAnswerType("integer, proper, improper, mixed"),
// A little bit of a misnomer as proper fractions are also accepted
improper: numberAnswerType("integer, proper, improper"),
mixed: numberAnswerType("integer, proper, mixed"),
// Perform a regex match on the entered string
regex: {
setupFunctional: function(solutionarea, solutionText, solutionData) {
var input;
if (window.Modernizr && Modernizr.touchevents) {
// special flag for iOS devices
input = $('<input type="text" autocapitalize="off">');
} else {
input = $('<input type="text">');
}
$(solutionarea).append(input);
return {
validator: Khan.answerTypes.regex.createValidatorFunctional(
solutionText, solutionData),
answer: function() {
return input.val();
},
solution: $.trim(solutionText),
showGuess: function(guess) {
input.val(guess === undefined ? "" : guess);
}
};
},
createValidatorFunctional: function(regex, options) {
var flags = "";
if (options.caseInsensitive != null) {
flags += "i";
}
regex = new RegExp($.trim(regex), flags);
return function(guess) {
// The fallback variable is used in place of the answer, if no
// answer is provided (i.e. the field is left blank)
var fallback =
options.fallback != null ? "" + options.fallback : "";
guess = $.trim(guess) || fallback;
return {
empty: false,
correct: guess.match(regex) != null,
message: null,
guess: guess
};
};
}
},
// An answer type with two text boxes, for solutions of the form a sqrt(b)
radical: {
setupFunctional: function(solutionarea, solutionText, solutionData) {
var options = $.extend({
simplify: "required"
}, solutionData);
// Add two input boxes
var inte = $('<input type="text" autocapitalize="off">');
var rad = $('<input type="text" autocapitalize="off">');
var examples = (options.simplify === "required") ?
[i18n._("a simplified radical, like <code>\\sqrt{2}</code> " +
"or <code>3\\sqrt{5}</code>")] :
[i18n._("a radical, like <code>\\sqrt{8}</code> or " +
"<code>2\\sqrt{2}</code>")];
// Add the same example message to both inputs
addExamplesToInput(inte, examples);
addExamplesToInput(rad, examples);
// Make them look pretty
$("<div class='radical'>")
.append($("<span>").append(inte))
.append('<span class="surd">√</span>')
.append($("<span>").append(rad).addClass("overline"))
.appendTo(solutionarea);
var ansSquared = parseFloat(solutionText);
var ans = KhanUtil.splitRadical(ansSquared);
return {
validator: Khan.answerTypes.radical.createValidatorFunctional(
solutionText, solutionData),
answer: function() {
return [$.trim(inte.val()), $.trim(rad.val())];
},
solution: ans,
showGuess: function(guess) {
inte.val(guess ? guess[0] : "");
rad.val(guess ? guess[1] : "");
}
};
},
createValidatorFunctional: function(ansSquared, options) {
options = $.extend({
simplify: "required"
}, options);
// The provided answer is the square of what is meant to be
// entered. Use KhanUtil.splitRadical to find the different parts
ansSquared = parseFloat(ansSquared);
var ans = KhanUtil.splitRadical(ansSquared);
return function(guess) {
// If nothing typed into either box, don't grade the answer
if (guess[0].length === 0 && guess[1].length === 0) {
return {
empty: true,
correct: false,
message: null,
guess: guess
};
}
// If nothing is typed into one of the boxes, use 1
guess[0] = guess[0].length > 0 ? guess[0] : "1";
guess[1] = guess[1].length > 0 ? guess[1] : "1";
// Parse the two floats from the guess
var inteGuess = parseFloat(guess[0]);
var radGuess = parseFloat(guess[1]);
// The answer is correct if the guess square is equal to the
// given solution
var correct =
Math.abs(inteGuess) * inteGuess * radGuess === ansSquared;
// the answer is simplified if the sqrt portion and integer
// portion are the same as what is given by splitRadical
var simplified = inteGuess === ans[0] && radGuess === ans[1];
var score = {
empty: false,
correct: false,
message: null,
guess: guess
};
if (correct) {
if (simplified || options.simplify === "optional") {
score.correct = true;
} else {
score.message = i18n._("Your answer is almost correct, but it " +
"needs to be simplified.");
}
}
return score;
};