mirror of
https://github.com/open-thought/reasoning-gym.git
synced 2026-04-28 17:29:39 +00:00
8 lines
No EOL
1.7 KiB
JSON
8 lines
No EOL
1.7 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,Mary} has {n,6} jars of {item,sprinkles} in her {location,pantry}. Each jar of {item,sprinkles} can decorate {m,8} {food,cupcake}s. {name,Mary} wants to bake enough {food,cupcake}s to use up all of her {item,sprinkles}. {name,Mary} has {count,5} {container,pan}s, each can hold {k,12} {food,cupcake}s. After using all her {item,sprinkles} to bake {food,cupcake}s and putting them in {container,pan}s, how many empty {container,pan}s will {name,Mary} be left with?\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- $count = range(5, 10)\n- $n = range(3, 20)\n- $m = range(6, 20)\n- $k = range(6, 24)\n\n#conditions:\n- divides(n*m, k)\n- n * m // k < count\n\n#answer: count-(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.\nSo {count} - {(n*m)//k} = {count-(n*m)//k} {container}s will be left empty.\n#### {count-(n*m)//k}"
|
|
} |