Still experimenting

This commit is contained in:
abdulhakeem 2025-01-30 23:44:12 -06:00
parent b0e70008ea
commit b203353751
357 changed files with 2888 additions and 0 deletions

View file

@ -0,0 +1,8 @@
{
"question": "On Tuesday, Peter wants to exercise for twice the amount of time he did on Monday and Sunday combined. On Sunday he exercised for 23 minutes. On Monday he exercised for 16 minutes. How many minutes does he have to exercise on Tuesday to reach his goal?",
"answer": "On Sunday and Monday he exercised a total of 39 minutes because 23 + 16 = <<23+16=39>>39\nOn Tuesday he has to exercise for 78 minutes because 39 x 2 = <<39*2=78>>78\n#### 78",
"id_orig": 300,
"id_shuffled": 69,
"question_annotated": "On {day3}, {name} wants to exercise for {mult} the amount of time he did on {day2} and {day1} combined. On {day1} he exercised for {t1} minutes. On {day2} he exercised for {t2} minutes. How many minutes does he have to exercise on {day3} to reach his goal?\n\n#init:\n- name = sample(names)\n- day1, day2, day3 = sample_sequential(weekdays, 3)\n- $t1 = range(10, 60)\n- $t2 = range(10, 60)\n- $mult = sample(multiple_ice+multi_times)\n\n#conditions:\n- t1 + t2 > 0\n- (t1 + t2) * mult / 60 < 14\n#answer: (t1 + t2) * mult",
"answer_annotated": "On {day1} and {day2} he exercised a total of {t1+t2} minutes because {t1} + {t2} = <<{t1}+{t2}={t1+t2}>>{t1+t2}\nOn {day3} he has to exercise for {(t1+t2)*mult} minutes because {t1+t2} x {mult} = <<{t1+t2}*{mult}={(t1+t2)*mult}>>{(t1+t2)*mult}\n#### {(t1+t2)*mult}"
}