Hi all,
I am trying to get a table to check for correct slope and here is my CL below. I want the correct answers to be 7/9 and -9/7. I have tried both options below and when you hit Check Work they both are marked as incorrect. How can I fix to accept a fraction?
Thanks
submitButtonText: “Check my work”
isCorrect1= tbl6.cellContent(1,2)="\frac{7\left(9\right)}"
isCorrect2= tbl6.cellContent(2,2)="-9\left7\right"
cellContent(1, 3):
#when button7.pressCount>0 and isCorrect “”
when tbl6.submitted and isCorrect1 “”
when not(tbl6.submitted) “”
otherwise “ Try again…”
cellContent(2,3):
when tbl6.submitted and isCorrect2 “”
when not(tbl6.submitted) “”
otherwise “ Try again.”