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

8 lines
No EOL
1.7 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} is trying to decide whether to do {task} herself or hire one {profession}. If she does it herself, she'll be able to do {n} fewer hours of {work_type} work, losing {cur}{rate}/hour in missed income. The {profession} charges {cur}{fee}. How much more money will she have if she hires the {profession}?\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}"
}