mirror of
https://github.com/open-thought/reasoning-gym.git
synced 2026-04-28 17:29:39 +00:00
8 lines
No EOL
2.8 KiB
JSON
8 lines
No EOL
2.8 KiB
JSON
{
|
|
"question": "Mr. Tan sold his house for $400 000. He paid the transfer fees that amount to 3% of the selling price and also paid a brokerage fee that is 5% of the selling price. If he also paid $250 000 for the remaining loan amount of the house, how much is Mr. Tan's net proceeds from selling the house?",
|
|
"answer": "Mr. Tan paid $400 000 x 3/100 = $12 000 for the transfer fees.\nHe paid $400 000 x 5/100 = $20 000 for the brokerage fee.\nSo, Mr. Tan paid a total of $12 000 + $20 000 + $250 000 = $282 000 for the transfer, brokerage, and loan fees.\nHence, Mr. Tan's net proceeds is $400 000 - $282 000 = $118 000.\n#### 118000",
|
|
"id_orig": 266,
|
|
"id_shuffled": 34,
|
|
"question_annotated": "{title,Mr.} {name,Tan} sold his {property,house} for ${price,400000}. He paid the {fee1_name,transfer} fees that amount to {fee1_percent,3}% of the selling price and also paid the {fee2_name,brokerage} fee that is {fee2_percent,5}% of the selling price. If he also paid ${loan,250000} for the remaining loan amount of the {property,house}, and ${extra,10000} for closing costs, how much is {title,Mr.} {name,Tan}'s net proceeds from selling the {property,house}?\n\n#init:\n- title = sample(['Mr.', 'Prof.', 'Dr.'])\n- name = sample(['Smith', 'Johnson', 'Williams', 'Brown', 'Jones', 'Garcia', 'Miller', 'Davis', 'Rodriguez', 'Martinez'])\n- property = sample(['house', 'apartment', 'condo', 'villa', 'cottage'])\n- fee1_name = sample(['transfer', 'registration', 'legal'])\n- fee2_name = sample(['brokerage', 'agent', 'realtor'])\n- $price = range(200000, 1000000, 10000)\n- $fee1_percent = range(1, 5)\n- $fee2_percent = range(2, 7)\n- $loan = range(100000, 700000, 10000)\n- $extra = range(5000, 25001, 5000)\n\n#conditions:\n- price > loan\n- 5000 <= price - (price * (fee1_percent + fee2_percent) / 100 + loan) - extra <= 250000\n\n#answer: price - (price * (fee1_percent + fee2_percent) / 100 + loan) - extra",
|
|
"answer_annotated": "{title} {name} paid ${price} x {fee1_percent}/100 = ${price * fee1_percent // 100} for the {fee1_name} fees.\nHe paid ${price} x {fee2_percent}/100 = ${price * fee2_percent // 100} for the {fee2_name} fee.\nSo, {title} {name} paid a total of ${price * fee1_percent // 100} + ${price * fee2_percent // 100} + ${loan} = ${price * (fee1_percent + fee2_percent) // 100 + loan} for the {fee1_name}, {fee2_name}, and loan fees.\nHence, {title} {name}'s net proceeds is ${price} - ${price * (fee1_percent + fee2_percent) // 100 + loan} = ${price - (price * (fee1_percent + fee2_percent) // 100 + loan)}.\nDeducting the {extra} closing costs, we have ${price - (price * (fee1_percent + fee2_percent) // 100 + loan)} - ${extra} = {price - (price * (fee1_percent + fee2_percent) // 100 + loan) - extra}.\n#### {price - (price * (fee1_percent + fee2_percent) // 100 + loan) - extra}"
|
|
} |