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
8
reasoning_gym/data/gsm_data/symbolic/0016.json
Normal file
8
reasoning_gym/data/gsm_data/symbolic/0016.json
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"question": "Sunny is selling gingerbread and apple pie for a fundraiser. On Saturday, he sold 10 boxes of gingerbread and 4 fewer boxes of apple pie, than on Sunday. On Sunday, he sold 5 more boxes of gingerbread than on Saturday and 15 boxes of apple pie. If the gingerbread cost $6 and the apple pie cost $15, how much did Sunny earn for two days?",
|
||||
"answer": "He sold 10 + 5 = <<10+5=15>>15 boxes of gingerbread on Sunday.\nThe total number of boxes of gingerbread that Sunny sold is 10 + 15 = <<10+15=25>>25.\nSunny earned 25 x $6 = $<<25*6=150>>150 for selling gingerbread.\nHe sold 15 - 4 = <<15-4=11>>11 boxes of apple pie on Saturday.\nThe total number of boxes of apple pie that Sunny sold is 15 + 11 = <<15+11=26>>26.\nHe earned 26 x $15 = $<<26*15=390>>390 for selling apple pie.\nSo, Sunny earned $150 + $390 = $<<150+390=540>>540 for two days.\n#### 540",
|
||||
"id_orig": 976,
|
||||
"id_shuffled": 16,
|
||||
"question_annotated": "{name, Sunny} is selling {food,gingerbread} and {fruit,apple} pie for a fundraiser. On {d1,Saturday}, he sold {n1,10} boxes of {food,gingerbread} and {m1,4} fewer boxes of {fruit,apple} pie, than on {d2,Sunday}. On {d2,Sunday}, he sold {n2,5} more boxes of {food,gingerbread}s than on {d1,Saturday} and {m2,15} boxes of {fruit,apple} pie. If the {food,gingerbread} cost {cur,$}{cn,6} and the {fruit,apple} pie cost {cur,$}{cm,15}, how much did {name,Sunny} earn for two days?\n\n#init:\n- name = sample(names_male)\n- fruit = sample(fruits)\n- cur = sample(currencies_sym)\n- food = sample([ \"cookie\", \"brownie\", \"muffin\", \"cupcake\",])\n- d1, d2 = sample_sequential(weekdays, 2)\n- $n1 = range(21, 30)\n- $n2 = range(11, 15)\n- $m1 = range(11, 20)\n- $m2 = range(21, 30)\n- $cn = range(7, 13)\n- $cm = range(20, 33)\n\n#conditions:\n- m1 < m2\n\n#answer: (2*n1+n2)*cn + (2*m2-m1)*cm",
|
||||
"answer_annotated": "He sold {n1} + {n2} = <<{n1}+{n2}={n1+n2}>>{n1+n2} boxes of {food} on {d2}.\nThe total number of boxes of {food}s that {name} sold is {n1} + {n1+n2} = <<{n1}+{n1+n2}={2*n1+n2}>>{n1+n1+n2}.\n{name} earned {n1+n1+n2} x {cur}{cn} = {cur}<<{n1+n1+n2}*{cn}={(n1+n1+n2)*cn}>>{(n1+n1+n2)*cn} for selling {food}s.\nHe sold {m2} - {m1} = <<{m2}-{m1}={m2-m1}>>{m2-m1} boxes of {fruit} pie on {d1}.\nThe total number of boxes of {fruit} pie that {name} sold is {m2} + {m2-m1} = <<{m2}+{m2-m1}={2*m2-m1}>>{2*m2-m1}.\nHe earned {2*m2-m1} x {cur}{cm} = {cur}<<{2*m2-m1}*{cm}={(2*m2-m1)*cm}>>{(2*m2-m1)*cm} for selling {fruit} pie.\nSo, {name} earned {cur}{(n1+n1+n2)*cn} + {cur}{(2*m2-m1)*cm} = {cur}<<{(n1+n1+n2)*cn}+{(2*m2-m1)*cm}={(2*n1+n2)*cn + (2*m2-m1)*cm}>>{(2*n1+n2)*cn + (2*m2-m1)*cm} for two days.\n#### {(2*n1+n2)*cn + (2*m2-m1)*cm}"
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue