reasoning-gym/reasoning_gym/data/gsm_data/p1/0069.json
2025-01-30 23:51:31 -06:00

8 lines
No EOL
1.6 KiB
JSON

{
"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,Tuesday}, {name,Peter} wants to exercise for {mult,twice} the amount of time he did on {day2,Monday} and {day1,Sunday} combined. On {day1,Sunday} he exercised for {t1,23} minutes. On {day2,Monday} he exercised for {t2,16} minutes. How many hours does he have to exercise on {day3,Tuesday} to reach his goal?\n\n#init:\n- name = sample(names_male)\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- divides((t1 + t2) * mult, 60)\n#answer: (t1 + t2) * mult // 60",
"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}.\nEach hour is 60 minutes. So, to convert the minutes to hours, we divide the minutes by 60: {(t1+t2)*mult} minutes / 60 = {(t1+t2)*mult//60} hours.\n#### {((t1+t2)*mult)//60}"
}