sometimes I would like the students to see it to have more feedback. I end up programming it using graph labels or subtitles which is time consuming and “ugly”.
Also it would be great to have the number of correct questions answered, for the student or the teacher.
I am trying to program it but I got stuck in:
number("g"):
when table4.cellContent(2,1)="✓" numericValue("${graph1.number("g")}+1")
otherwise numericValue("${graph1.number("g")}")
Because it says there is circular dependecy. So it looks like the programming structure:
variable=variable+1
is not possible in here.
I was thinking on creating a numberList and aggregate every correct answer and at the end check the numberList lenght. I don’t even know if it’s possible.
What’s the purpose here? If you have an action button, you can use capture. Instead of your essentially g=g+1 (which would infinitely increase by 1 because it doesn’t read through the code just once), you could have g={last g captured} +1.
Thanks for your reply Daniel,
in most slides I don’t use buttons. I just program what is correct, and that’s it.
The last slide I wanted to be a summary of correct responses with the grade, so student can go back and correct whatever she/he wants. (Similar of what you get as a teacher)
For every question I check the answer and I write a check mark if it’s right or a x if it’s wrong. (That’s already done)
The question here is how I add all the correct answers from the table to get a grade. So my first intention was to define a variable in any of the graphs and just add one for every correct answer.
I would make variables for each answer (e.g. a1, a2, a3, a4). Then, use the same conditionals that you used for the table in slide 31, but instead of checkmark or X use 1 and 0. Create a total:
total=numericValue("${a1}+${a2}+${a3}+${a4}")
Use this for g in your graph: number("g")=table4.script.total
Wow! Looks great! Thank you for sharing. I plan to analyze your CL. I would like to be able to create some activities like yours. I’m hoping it will make my inputting grades easier. Thx again.
Oh that is awesome! Do you have solving multi-step equations. Possibly with distributive property. Multiplying polynomials, simplifying exponents (using rules of exponents). Exponential equations and Finally factoring quadratics. I teach math 8 and Algebra 1. I would greatly appreciate it.
I really appreciate you sharing these activities with me. I see that you have done a lot of CL in your Desmos activities. I like that you incorporate a timer and multiple problems in one slide. To be honest that is truly way advanced for me. I would like something really simple to begin to understand. I like that you have a table with the problems that the students got correct and a final grade at the end. Could you, would you be willing to help me attach something like that to my Desmos activity? I would like for each slide that has a correct answer to be assigned 1 point. Then at the end, a grade after the assignment is done. I am attaching my most recent work.