我有一个html页面,其中包含数学问题和mathml(在浏览器中显示公式)作为选项。因此,当用户选择该选项时,需要将所选选项与正确答案进行比较。选项值是mathml。那么如何使用java脚本比较两个mathml值?
P.S不应该使用任何外部库。
答案 0 :(得分:0)
我猜你有MathML,公式涉及一些变量,如x + 1或sqrt(a ^ 2 + b ^ 2)。在这种情况下,您需要CAS(计算机代数系统)来评估答案。
我不知道如何在不使用库的情况下进行操作,无论是否在外部调用,除了在给定的点集上评估公式并检查正确答案和学生答案是否给出相同的值;虽然这种方法在某些情况下可能会失败。这就是我建议使用CAS的原因。
CAS可以用JavaScript或任何其他语言编写,这是最常见的情况。
答案 1 :(得分:0)
您可以使用此库来比较两个MathML表达式 https://www.npmjs.com/package/dl-mathml-compare
npm install dl-mathml-compare
var DLMathMLCompare = require('dl-mathml-compare');
DLMathMLCompare('Your MathML expression here', 'Your another MathML expression');
true
,否则返回false
示例:强>
DLMathMLCompare('<math xmlns="http://www.w3.org/1998/Math/MathML"><mfrac><mn>1</mn><mrow><mn>2</mn><msqrt><mo> </mo></msqrt><mo> </mo></mrow></mfrac></math>', '<math xmlns="http://www.w3.org/1998/Math/MathML"><mfrac><mn>1</mn><mrow><mn>2</mn><msqrt/><mo> </mo></mrow></mfrac><mo> </mo><mo> </mo> </math> ')
// This will return true