// Numbas version: finer_feedback_settings
{"name": "Sharon's copy of Custom marking - answer is a set", "extensions": [], "custom_part_types": [], "resources": [], "navigation": {"allowregen": true, "showfrontpage": false, "preventleave": false, "typeendtoleave": false}, "question_groups": [{"pickingStrategy": "all-ordered", "questions": [{"ungrouped_variables": ["f", "ea", "odds", "det", "ec", "eb", "qb", "x0", "x1", "roots"], "functions": {}, "extensions": [], "parts": [{"expectedvariablenames": [], "vsetrangepoints": 5, "showFeedbackIcon": true, "scripts": {"constructor": {"order": "after", "script": "//get variables \nvar variables = this.question.scope.variables;\nvar unwrap = Numbas.jme.unwrapValue;\n\n// get the roots of the equation\nvar roots = unwrap(variables.roots);\nconsole.log(roots);\n\n\n\n\n"}, "validate": {"order": "instead", "script": "// Use the built-in validation function to catch syntax errors and so on\nif(!Numbas.parts.JMEPart.prototype.validate.apply(this)) {\n return false;\n}\n// Give a warning if the student's answer is not a list\nif(this.notAList) {\n this.giveWarning('You must enter a list, i.e. numbers separated by commas and enclosed by square brackets. For example, [1,2]
.');\n return false;\n}\nreturn true;"}, "mark": {"order": "instead", "script": "// evaluate the student's answer\ntry {\n var list = Numbas.jme.evaluate(this.studentAnswer,this.question.scope);\n}\ncatch(e)\n{\n this.setCredit(0,R('part.jme.answer invalid',e.message));\n return;\n}\n\n// check the answer is a list\nthis.notAList = list.type!='list';\nif(this.notAList) {\n this.setCredit(0,'Your answer is not a list of numbers.');\n return;\n}\n\nvar variables = this.question.scope.variables;\nvar unwrap = Numbas.jme.unwrapValue;\n\n// get the roots of the equation\nvar roots = unwrap(variables.roots);\n\n// unwrap the student's list to a Javascript array of numbers\nvar list = unwrap(list);\n\n// get the coefficients of the equation\nvar ea = unwrap(variables.ea);\nvar eb = unwrap(variables.eb);\nvar ec = unwrap(variables.ec);\n\n// check each root the student gave, keeping track of how many they got right\nvar got = 0;\nvar wrong = [];\nfor(var i=0;i
\\[ \\simplify[all,fractionnumbers]{{ea}x^2+{eb}x+{ec}}=0 \\]
\nEnter your answer as a list of numbers separated by commas and enclosed by square brackets, e.g. [1,2]
.
If the equation has no roots, enter []