mirror of
https://github.com/open-thought/reasoning-gym.git
synced 2026-04-29 17:35:16 +00:00
Still experimenting
This commit is contained in:
parent
b0e70008ea
commit
b203353751
357 changed files with 2888 additions and 0 deletions
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"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, Mary\u2019s 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} is an avid gardener. {time}, she received {x} new potted plants from her favorite plant nursery. She already has {r} potted plants on each of the {w} window ledges of her large country home. Feeling generous, she has decided that she will give {n} potted plants from each ledge to friends and family tomorrow. How many potted plants will {name} 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}"
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue