I have the students entering an ordered pair, but I am not getting the check mark on the dashboard.
Here’s the coding for the note
myPair = parseOrderedPair(input.latex)
content: when input.submitted and numericValue(myPair.x)=5 and numericValue(myPair.y)=549.50 “ Great job! Now explain what this point means”
when input.submitted and (not(numericValue(myPair.x)=5) or not(numericValue(myPair.y)=549.50)) “ Check your work to see if you can find your mistake. Be sure to write your answer as a ordered pair.”
otherwise “Find and interpret the ordered pair associated with x=5
.”
Here’s the coding to check if they are correct or not
disableEvaluation: true
correct: exp2.numericValue=549.5 or exp2.numericValue=549.50
What am I missing?
Thanks in advance!