mirror of
https://github.com/open-thought/reasoning-gym.git
synced 2026-04-28 17:29:39 +00:00
8 lines
No EOL
1.4 KiB
JSON
8 lines
No EOL
1.4 KiB
JSON
{
|
|
"question": "Mary has 6 jars of sprinkles in her pantry. Each jar of sprinkles can decorate 8 cupcakes. Mary wants to bake enough cupcakes to use up all of her sprinkles. If each pan holds 12 cupcakes, how many pans worth of cupcakes should she bake?",
|
|
"answer": "She has enough sprinkles for 6 * 8 = <<6*8=48>>48 cupcakes.\nShe needs 48 / 12 = <<48/12=4>>4 pans to bake all of the cupcakes.\n#### 4",
|
|
"id_orig": 469,
|
|
"id_shuffled": 64,
|
|
"question_annotated": "{name} has {n} jars of {item} in her {location}. Each jar of {item} can decorate {m} {food}s. {name} wants to bake enough {food}s to use up all of her {item}. If each {container} holds {k} {food}s, how many {container}s worth of {food}s should she bake?\n\n#init:\n- name = sample(names_female)\n- item = sample([\"sprinkles\", \"frosting\", \"icing\", \"chocolate chips\"])\n- food = sample([\"cupcake\", \"cookie\", \"brownie\", \"muffin\"])\n- location = sample([\"pantry\", \"cupboard\", \"kitchen cabinet\", \"storage room\"])\n- container = sample([\"pan\", \"tray\", \"baking sheet\", \"rack\"])\n- $n = range(3, 15)\n- $m = range(6, 20)\n- $k = range(6, 24)\n\n#conditions:\n- divides(n*m, k)\n\n#answer: (n*m)//k",
|
|
"answer_annotated": "She has enough {item} for {n} * {m} = <<{n}*{m}={n*m}>>{n*m} {food}s.\nShe needs {n*m} / {k} = <<{n*m}/{k}={(n*m)//k}>>{(n*m)//k} {container}s to bake all of the {food}s.\n#### {(n*m)//k}"
|
|
} |