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

8 lines
No EOL
1.2 KiB
JSON

{
"question": "Pierson scored 278 points in one game of bowling. Nikita scored 11 more than half as many as Pierson. How many points did Pierson and Nikita have in total?",
"answer": "Pierson = <<278=278>>278 points\nNikita = (1/2) 278 + 11 = 150 points\n278 + 150 = <<278+150=428>>428 points\nTogether, Pierson and Nikita scored 428 points.\n#### 428",
"id_orig": 800,
"id_shuffled": 53,
"question_annotated": "{name1} scored {n1} points in one game of {game}. {name2} scored {n2} points more than {frac} as many as {name1}. How many points did {name1} and {name2} have in total?\n\n#init:\n- name1, name2 = sample(names, 2)\n- game = sample([\"bowling\", \"darts\", \"archery\", \"basketball\", \"tennis\"])\n- $n1 = range(200, 500)\n- $n2 = range(5, 50)\n- $frac = sample(fraction_alnum)\n\n#conditions:\n- is_int(frac * n1)\n\n#answer: n1 + int(frac * n1 + n2)",
"answer_annotated": "{name1} = <<{n1}={n1}>>{n1} points\n{name2} = {frac} * {n1} + {n2} = {int(frac * n1 + n2)} points\n{n1} + {int(frac * n1 + n2)} = <<{n1}+{int(frac * n1 + n2)}={n1 + int(frac * n1 + n2)}>>{n1 + int(frac * n1 + n2)} points\nTogether, {name1} and {name2} scored {n1 + int(frac * n1 + n2)} points.\n#### {n1 + int(frac * n1 + n2)}"
}