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

8 lines
No EOL
2.3 KiB
JSON

{
"question": "Watson works a 10-hour shift each day, five days a week. He earns $10 per hour and gets a $300 bonus each week if the company performs well. How much money did Watson make in April if the company performed very well for the whole month?",
"answer": "In a day, Watson makes 10 * 10 = $<<10*10=100>>100\nIf he works five days a week, the total number of days for the whole month is 5 * 4= <<5*4=20>>20 days.\nSince he makes $100 per day, the total amount for the whole month is 20 * 100= $<<20*100=2000>>2000.\nHe also got a 300 * 4 = $<<300*4=1200>>1200 bonus because the company performed well in all the weeks of April.\nAt the end of April, he earned 2000 +1200 = $<<2000+1200=3200>>3200.\n#### 3200",
"id_orig": 304,
"id_shuffled": 60,
"question_annotated": "{name,Watson} works a {h,10}-hour shift each day, {d,five} days a week. He earns {cur,$}{r,10} per hour and gets a {cur,$}{b,300} bonus each week if the company performs well. {name,Watson} also has to pay {p,10}% as income tax. How much money did {name,Watson} make after tax in {month,April} if the company performed very well for the whole month?\n\n#init:\n- name = sample(names_male)\n- month = sample([\"January\", \"February\", \"March\", \"April\", \"May\", \"June\", \"July\", \"August\", \"September\", \"October\", \"November\", \"December\"])\n- cur = sample(currencies_sym)\n- $h = range(6, 13)\n- $d = range(3, 7)\n- $r = range(8, 31)\n- $b = range(100, 601)\n- $p = range(5, 45)\n\n#conditions:\n- is_int(h * r)\n- is_int((h * r * d * 4 + b * 4)*(1-p/100))\n\n#answer: int((h * r * d * 4 + b * 4)*(1-p/100))",
"answer_annotated": "In a day, {name} makes {h} * {r} = {cur}<<{h}*{r}={h*r}>>{h*r}\nIf he works {d} days a week, the total number of days for the whole month is {d} * 4= <<{d}*4={d*4}>>{d*4} days.\nSince he makes {cur}{h*r} per day, the total amount for the whole month is {d*4} * {h*r}= {cur}<<{d*4}*{h*r}={d*4*h*r}>>{d*4*h*r}.\nHe also got a {b} * 4 = {cur}<<{b}*4={b*4}>>{b*4} bonus because the company performed well in all the weeks of {month}.\nAt the end of {month}, he earned {d*4*h*r} + {b*4} = {cur}<<{d*4*h*r}+{b*4}={d*4*h*r+b*4}>>{d*4*h*r+b*4}.\nFinally, since {name} has to pay {p}% tax, we multiply the income by 100-{p}={100-p}%. {d*4*h*r+b*4} * {100-p}% = {int((h * r * d * 4 + b * 4)*(1-p/100))}\n#### {int((h * r * d * 4 + b * 4)*(1-p/100))}"
}