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

8 lines
No EOL
1.3 KiB
JSON

{
"question": "John picks 4 bananas on Wednesday. Then he picks 6 bananas on Thursday. On Friday, he picks triple the number of bananas he did on Wednesday. How many bananas does John have?",
"answer": "Combining Wednesday and Thursday, John has 4 bananas + 6 bananas = <<4+6=10>>10 bananas.\nOn Friday, he picks 3 * 4 bananas = <<3*4=12>>12 bananas.\nAltogether, John has 10 bananas + 12 bananas = <<10+12=22>>22 bananas.\n#### 22",
"id_orig": 1020,
"id_shuffled": 20,
"question_annotated": "{name} picks {n1} {fruit}s on {d1}. Then he picks {n2} {fruit}s on {d2}. On {d3}, he picks {mult} the number of {fruit}s he did on {d1}. How many {fruit}s does {name} have?\n\n#init:\n- name = sample(names_male)\n- d1, d2, d3 = sample_sequential(weekdays, 3)\n- fruit = sample(fruits)\n- $n1 = range(30, 400)\n- $n2 = range(50, 400)\n- $mult = sample(multiple)\n\n#answer: n1 + n2 + mult * n1",
"answer_annotated": "Combining {d1} and {d2}, {name} has {n1} {fruit}s + {n2} {fruit}s = <<{n1}+{n2}={n1+n2}>>{n1+n2} {fruit}s.\nOn {d3}, he picks {mult} * {n1} {fruit}s = <<{mult}*{n1}={mult*n1}>>{mult*n1} {fruit}s.\nAltogether, {name} has {n1+n2} {fruit}s + {mult*n1} {fruit}s = <<{n1+n2}+{n1*mult}={n1 + n2 + mult * n1}>>{n1 + n2 + mult * n1} {fruit}s.\n#### {n1 + n2 + mult * n1}"
}