document.write( "Question 1167948: Assume the car can be purchased for 0% down for 60 months (in lieu of rebate).
\n" );
document.write( "A BMW that has a sticker price of $62,590 with factory and dealer rebates of $6,000
\n" );
document.write( "(a) Find the monthly payment if financed for 60 months at 0% APR. (Round your answer to the nearest cent.)
\n" );
document.write( "$
\n" );
document.write( "
\n" );
document.write( "(b) Find the monthly payment if financed at 2.5% add-on interest for 60 months. (Round your answer to the nearest cent.)
\n" );
document.write( "$
\n" );
document.write( "
\n" );
document.write( "(c) Use the APR approximation formula to find the APR for part (b). (Round your answer to one decimal place.)
\n" );
document.write( " %\r
\n" );
document.write( "\n" );
document.write( "(d) State whether the 0% APR or the 2.5% add-on rate should be preferred.
\n" );
document.write( "0% APR
\n" );
document.write( "2.5% add-on rate \n" );
document.write( "
Algebra.Com's Answer #852076 by CPhill(1959)![]() ![]() You can put this solution on YOUR website! ```python?code_reference&code_event_index=2 \n" ); document.write( "# Part (a): Monthly payment with 0% APR \n" ); document.write( "sticker_price = 62590 \n" ); document.write( "rebates = 6000 \n" ); document.write( "loan_amount = sticker_price - rebates \n" ); document.write( "loan_term_months = 60\r \n" ); document.write( "\n" ); document.write( "monthly_payment_0_apr = loan_amount / loan_term_months \n" ); document.write( "print(f\"Monthly payment (0% APR): {monthly_payment_0_apr:.2f}\")\r \n" ); document.write( "\n" ); document.write( "# Part (b): Monthly payment with 2.5% add-on interest \n" ); document.write( "add_on_rate_annual = 0.025 \n" ); document.write( "loan_term_years = loan_term_months / 12\r \n" ); document.write( "\n" ); document.write( "total_add_on_interest = loan_amount * add_on_rate_annual * loan_term_years \n" ); document.write( "total_amount_to_repay = loan_amount + total_add_on_interest \n" ); document.write( "monthly_payment_add_on = total_amount_to_repay / loan_term_months\r \n" ); document.write( "\n" ); document.write( "print(f\"Total add-on interest: {total_add_on_interest:.2f}\") \n" ); document.write( "print(f\"Total amount to repay: {total_amount_to_repay:.2f}\") \n" ); document.write( "print(f\"Monthly payment (2.5% add-on interest): {monthly_payment_add_on:.2f}\")\r \n" ); document.write( "\n" ); document.write( "# Part (c): APR for part (b) using the APR approximation formula \n" ); document.write( "n = 12 # number of payment periods in one year \n" ); document.write( "I = total_add_on_interest \n" ); document.write( "P = loan_amount \n" ); document.write( "N = loan_term_months\r \n" ); document.write( "\n" ); document.write( "apr_approximation = (2 * n * I) / (P * (N + 1)) \n" ); document.write( "apr_percentage = apr_approximation * 100\r \n" ); document.write( "\n" ); document.write( "print(f\"APR approximation: {apr_percentage:.1f}%\") \n" ); document.write( "```\r \n" ); document.write( "\n" ); document.write( "```text?code_stdout&code_event_index=2 \n" ); document.write( "Monthly payment (0% APR): 943.17 \n" ); document.write( "Total add-on interest: 7073.75 \n" ); document.write( "Total amount to repay: 63663.75 \n" ); document.write( "Monthly payment (2.5% add-on interest): 1061.06 \n" ); document.write( "APR approximation: 4.9%\r \n" ); document.write( "\n" ); document.write( "```\r \n" ); document.write( "\n" ); document.write( "Here are the calculations for the car purchase:\r \n" ); document.write( "\n" ); document.write( "**Loan Amount:** \n" ); document.write( "Sticker price: $$62,590$ \n" ); document.write( "Factory and dealer rebates: $$6,000$ \n" ); document.write( "Loan Amount = $$62,590 - $6,000 = $56,590$\r \n" ); document.write( "\n" ); document.write( "**(a) Find the monthly payment if financed for 60 months at 0% APR.** \n" ); document.write( "Since the APR is 0%, there is no interest charged. \n" ); document.write( "Monthly Payment = Loan Amount / Number of Months \n" ); document.write( "Monthly Payment = $$56,590 / 60 = $943.1666...$ \n" ); document.write( "Rounding to the nearest cent, the monthly payment is $\\boxed{$943.17}$.\r \n" ); document.write( "\n" ); document.write( "**(b) Find the monthly payment if financed at 2.5% add-on interest for 60 months.** \n" ); document.write( "Loan Amount = $$56,590$ \n" ); document.write( "Add-on Interest Rate = 2.5% per year \n" ); document.write( "Loan Term = 60 months = 5 years\r \n" ); document.write( "\n" ); document.write( "Total Add-on Interest = Loan Amount $\\times$ Add-on Interest Rate $\\times$ Number of Years \n" ); document.write( "Total Add-on Interest = $$56,590 \\times 0.025 \\times 5 = $7,073.75$\r \n" ); document.write( "\n" ); document.write( "Total Amount to Repay = Loan Amount + Total Add-on Interest \n" ); document.write( "Total Amount to Repay = $$56,590 + $7,073.75 = $63,663.75$\r \n" ); document.write( "\n" ); document.write( "Monthly Payment = Total Amount to Repay / Number of Months \n" ); document.write( "Monthly Payment = $$63,663.75 / 60 = $1,061.0625$ \n" ); document.write( "Rounding to the nearest cent, the monthly payment is $\\boxed{$1,061.06}$.\r \n" ); document.write( "\n" ); document.write( "**(c) Use the APR approximation formula to find the APR for part (b).** \n" ); document.write( "APR Approximation Formula: $APR \\approx \\frac{2 \\times n \\times I}{P \\times (N+1)}$ \n" ); document.write( "Where: \n" ); document.write( "$n$ = number of payment periods in one year = 12 (for monthly payments) \n" ); document.write( "$I$ = total interest paid = $$7,073.75$ (from part b) \n" ); document.write( "$P$ = principal (loan amount) = $$56,590$ \n" ); document.write( "$N$ = total number of payments = 60\r \n" ); document.write( "\n" ); document.write( "$APR \\approx \\frac{2 \\times 12 \\times $7,073.75}{$56,590 \\times (60+1)}$ \n" ); document.write( "$APR \\approx \\frac{24 \\times $7,073.75}{$56,590 \\times 61}$ \n" ); document.write( "$APR \\approx \\frac{$169,770}{$3,452,990}$ \n" ); document.write( "$APR \\approx 0.04916$\r \n" ); document.write( "\n" ); document.write( "Convert to percentage and round to one decimal place: \n" ); document.write( "$APR \\approx 0.04916 \\times 100% \\approx 4.916%$ \n" ); document.write( "Rounding to one decimal place, the APR is $\\boxed{4.9%}$.\r \n" ); document.write( "\n" ); document.write( "**(d) State whether the 0% APR or the 2.5% add-on rate should be preferred.** \n" ); document.write( "Comparing the two options:\r \n" ); document.write( "\n" ); document.write( " * 0% APR: Monthly payment of $$943.17$ with no interest. \n" ); document.write( " * 2.5% add-on rate: Monthly payment of $$1,061.06$ with an effective APR of approximately 4.9%.\r \n" ); document.write( "\n" ); document.write( "The 0% APR option results in a lower monthly payment and incurs no interest, making it clearly the better financial choice.\r \n" ); document.write( "\n" ); document.write( "The 0% APR should be preferred. \n" ); document.write( " |