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

8 lines
No EOL
3 KiB
JSON

{
"question": "Morgan's dad said that she had $90 budgeted for her birthday party. She wants to make sure she and her friends all get to play one round of mini-golf, have $5 in arcade tokens, and get to ride the go-karts twice. A round of mini-golf is $5. The Go-karts cost $10 a ride. How many friends can she invite?",
"answer": "The go karts will cost $20 per person because 10 x 2 = <<10*2=20>>20\nEach person costs $30 because 5 + 5 + 20 = <<5+5+20=30>>30\nThree total people can attend because 90 / 30 = <<90/30=3>>3\nShe can invite 2 friends because 3 - 1 =<<3-1=2>>2\n#### 2",
"id_orig": 357,
"id_shuffled": 96,
"question_annotated": "{name,Morgan}'s {parent,dad} said that she had {cur,$}{budget,90} budgeted for her birthday party. She wants to make sure she and her friends each get to play one round of {activity1,mini-golf}, have {cur,$}{tokens,5} in {activity2,arcade} tokens, and get to ride the {activity3,go-karts} {times,twice}. A round of {activity1,mini-golf} is {cur,$}{cost1,5}. The {activity3,go-karts} costs {cur,$}{cost2,10} per ride. For the transportation of the birthday party guests, {name,Morgan} needs to rent a bus for the day, which costs {cur,$}{extra, 50}. How many friends can she invite?\n\n#init:\n- name = sample(names_female)\n- parent = sample([\"mom\", \"dad\", \"aunt\", \"uncle\"])\n- activity1 = sample([\"mini-golf\", \"bowling\", \"laser tag\"])\n- activity2 = sample([\"arcade\", \"game room\", \"pinball\"])\n- activity3 = sample([\"go-karts\", \"bumper cars\", \"roller coaster\"])\n- cur = sample(currencies_sym)\n- $times = sample(multi_times)\n- $budget = range(50, 301, 10)\n- $tokens = range(3, 11)\n- $extra = range(50, 101, 10)\n- $cost1 = range(3, 11)\n- $cost2 = range(5, 21)\n\n#conditions:\n- (budget-extra) % (tokens + cost1 + cost2 * times) == 0\n- (budget-extra) // (tokens + cost1 + cost2 * times) > 1\n\n#answer: (budget-extra) // (tokens + cost1 + cost2 * times) - 1",
"answer_annotated": "The {activity3} will cost {cur}{cost2 * times} per person because {cost2} x {times} = <<{cost2}*{times}={cost2*times}>>{cost2*times}\nEach person costs {cur}{tokens + cost1 + cost2*times} because {tokens} + {cost1} + {cost2*times} = <<{tokens}+{cost1}+{cost2*times}={tokens + cost1 + cost2*times}>>{tokens + cost1 + cost2*times}.\nIn addition, the {cur}{extra} of budget has to go for transportation so {budget} - {extra} = {budget-extra} remains.\n{(budget-extra) // (tokens + cost1 + cost2 * times)} total people can attend because {budget-extra} / {tokens + cost1 + cost2*times} = <<{budget-extra}/{tokens + cost1 + cost2*times}={(budget-extra) // (tokens + cost1 + cost2 * times)}>>{(budget-extra) // (tokens + cost1 + cost2 * times)}\nShe can invite {(budget-extra) // (tokens + cost1 + cost2 * times) - 1} friends because {(budget-extra) // (tokens + cost1 + cost2 * times)} - 1 =<<{(budget-extra) // (tokens + cost1 + cost2 * times)}-1={(budget-extra) // (tokens + cost1 + cost2 * times) - 1}>>{(budget-extra) // (tokens + cost1 + cost2 * times) - 1}\n#### {(budget-extra) // (tokens + cost1 + cost2 * times) - 1}"
}