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

8 lines
No EOL
1.8 KiB
JSON

{
"question": "Jackie is trying to decide whether to do her taxes herself or hire an accountant. If she does the taxes herself, she'll be able to do 3 fewer hours of freelance work, losing $35/hour in missed income. The accountant charges $90. How much more money will she have if she hires the accountant?",
"answer": "First find the total lost revenue if Jackie does her taxes herself: $35/hour * 3 hours = $<<35*3=105>>105\nThen subtract the accountant's charge to find how much money Janet saves: $105 - $90 = $<<105-90=15>>15\n#### 15",
"id_orig": 164,
"id_shuffled": 65,
"question_annotated": "{name,Jackie} is trying to decide whether to do {task,her taxes} herself or hire one {profession,accountant}. If she does it herself, she'll be able to do {n,3} fewer hours of {work_type,freelance} work, losing {cur,$}{rate,35}/hour in missed income. The {profession,accountant} charges {cur,$}{fee,90}. How much more money will she have if she hires the {profession,accountant}?\n\n#init:\n- name = sample(names_female)\n- task = sample([\"her taxes\", \"her financial planning\", \"her business accounting\"])\n- profession = sample([\"accountant\", \"financial advisor\", \"tax consultant\", \"bookkeeper\"])\n- work_type = sample([\"freelance\", \"consulting\", \"part-time\", \"contract\"])\n- cur = sample(currencies_sym)\n- $n = range(4, 14)\n- $rate = range(20, 100)\n- $fee = range(50, 200)\n\n#conditions:\n- n * rate > fee\n\n#answer: n * rate - fee",
"answer_annotated": "First find the total lost revenue if {name} does {task} herself: {cur}{rate}/hour * {n} hours = {cur}<<{rate}*{n}={rate*n}>>{rate*n}\nThen subtract the {profession}'s charge to find how much money {name} saves: {cur}{rate*n} - {cur}{fee} = {cur}<<{rate*n}-{fee}={rate*n-fee}>>{rate*n-fee}\n#### {rate*n-fee}"
}