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

8 lines
No EOL
1.9 KiB
JSON
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
"question": "Mary is an avid gardener. Yesterday, she received 18 new potted plants from her favorite plant nursery. She already has 2 potted plants on each of the 40 window ledges of her large country home. Feeling generous, she has decided that she will give 1 potted plant from each ledge to friends and family tomorrow. How many potted plants will Mary remain with?",
"answer": "Yesterday, before receiving the plants, Mary had 2*40 = <<2*40=80>>80 potted plants\nAfter receiving an additional 18 plants, she therefore had a total of 80 + 18 = <<80+18=98>>98 potted plants\nTomorrow, Marys plant giveaway will be 40 *1 = <<40*1=40>>40 potted plants.\nShe will therefore remain with 98 - 40 = <<98-40=58>>58 potted plants.\n#### 58",
"id_orig": 99,
"id_shuffled": 13,
"question_annotated": "{name,Mary} is an avid gardener. {time, Yesterday}, she received {x,18} new potted plants from her favorite plant nursery. She already has {r,2} potted plants on each of the {w,40} window ledges of her large country home. Feeling generous, she has decided that she will give {n,1} potted plants from each ledge to friends and family tomorrow. How many potted plants will {name,Mary} remain with?\n\n#init:\n- name = sample(names_female)\n- time = sample([\"Last week\", \"Two days ago\", \"Last night\"])\n- $x = range(20, 50)\n- $r = range(7, 13)\n- $w = range(50, 70)\n- $n = range(3, 8)\n\n#conditions:\n- w * r + x - w*n > 0\n\n#answer = w * r + x - w*n",
"answer_annotated": "{time}, before receiving the plants, {name} had {w}*{r} = <<{w}*{r}={w*r}>>{w*r} potted plants\nAfter receiving an additional {x} plants, she therefore had a total of {w*r} + {x} = <<{w*r}+{x}={w*r+x}>>{w*r+x} potted plants\nTomorrow, {name}'s plant giveaway will be {w}*{n} = <<{w}*{n}={w*n}>>{w*n} potted plants.\nShe will therefore remain with {w*r+x} - {w*n} = <<{w*r+x}-{w*n}={w*r+x-w*n}>>{w*r+x-w*n} potted plants.\n#### {w*r+x-w*n}"
}