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
a3378bd95f
commit
ff13dc6825
357 changed files with 2888 additions and 0 deletions
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"question": "There are currently 3 red balls, 11 blue balls, and 25 green balls in the store. Red balls cost $9, Blue balls cost $5 and green balls cost $3. How much will the store have received after all the balls are sold?",
|
||||
"answer": "For the red balls, 3 balls * $9/ball = $<<3*9=27>>27.\nFor the blue balls, 11 balls * $5/ball = $<<11*5=55>>55.\nFor the green balls, 25 balls * $3/ball = $<<25*3=75>>75.\nFor all balls, $27 + $55 + $75 = $<<27+55+75=157>>157.\n#### 157",
|
||||
"id_orig": 1111,
|
||||
"id_shuffled": 75,
|
||||
"question_annotated": "There are currently {n1} {c1} balls, {n2} {c2} balls, and {n3} {c3} balls in the {place}. {c1} balls cost {cur}{p1}, {c3} balls cost {cur}{p3}, and {c2} balls cost {cur}{p2}. How much will the {place} have received after all the balls are sold?\n\n#init:\n- place = sample([\"store\", \"shop\", \"market\", \"warehouse\"])\n- c1, c2, c3 = sample([\"red\", \"blue\", \"green\", \"yellow\", \"purple\", \"orange\", \"pink\"], 3)\n- cur = sample(currencies_sym)\n- $n1 = range(3, 20)\n- $n2 = range(5, 30)\n- $n3 = range(15, 50)\n- $p1 = range(5, 15)\n- $p2 = range(3, 10)\n- $p3 = range(2, 8)\n\n\n#answer: n1*p1 + n2*p2 + n3*p3",
|
||||
"answer_annotated": "For the {c1} balls, {n1} balls * {cur}{p1}/ball = {cur}<<{n1}*{p1}={n1*p1}>>{n1*p1}.\nFor the {c2} balls, {n2} balls * {cur}{p2}/ball = {cur}<<{n2}*{p2}={n2*p2}>>{n2*p2}.\nFor the {c3} balls, {n3} balls * {cur}{p3}/ball = {cur}<<{n3}*{p3}={n3*p3}>>{n3*p3}.\nFor all balls, {cur}{n1*p1} + {cur}{n2*p2} + {cur}{n3*p3} = {cur}<<{n1*p1}+{n2*p2}+{n3*p3}={n1*p1 + n2*p2 + n3*p3}>>{n1*p1 + n2*p2 + n3*p3}.\n#### {n1*p1 + n2*p2 + n3*p3}"
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue