To buy a computer that is worth $ 6,000,000, you must pay an initial installment of 40% and the rest is paid in 36 monthly installments, how much will the installment be, if the interest is 3.5% effective monthly?
Now, how many biweekly payments of $ 391,250 must you make to pay off debt of $ 8,500,000, with the 24% convertible every 15 days?
Solve with excel and show formulae
Okay, let's break down these two financial problems and solve them using Excel formulas. I'll provide the formulas and then explain how to use them in Excel.
Problem 1: Computer Purchase
1. Calculate the Initial Installment:
2. Calculate the Remaining Debt:
3. Calculate the Monthly Installment using the PMT Function:
Excel Formula for Monthly Installment (Cell A1):
=PMT(0.035, 36, 3600000, 0, 0)
Explanation of the Formula:
=PMT()
: This is the Excel function for calculating the payment for a loan based on constant payments and a constant interest rate.0.035
: This is the monthly interest rate (3.5%).36
: This is the total number of payment periods (36 months).3600000
: This is the present value (the amount of the loan, $3,600,000).0
: This is the future value (0 because we want the loan to be fully paid).0
: This indicates that payments are due at the end of the period.The result of this formula will be the monthly installment amount.
Problem 2: Debt Payoff with Biweekly Payments
1. Determine the Interest Rate per Biweekly Period:
2. Calculate the Number of Biweekly Payments using the NPER Function:
Excel Formula for Number of Biweekly Payments (Cell B1):
=NPER(0.24/26, -391250, 8500000, 0, 0)
Explanation of the Formula:
=NPER()
: This is the Excel function for calculating the number of periods for a loan or investment based on constant payments and a constant interest rate.0.24/26
: This is the interest rate per biweekly period (annual rate divided by the number of biweekly periods).-391250
: This is the payment made each biweekly period. It's entered as a negative value because it's money going out.8500000
: This is the present value (the initial debt of $8,500,000).0
: This is the future value (0 because we want the debt to be fully paid).0
: This indicates that payments are due at the end of the period.The result of this formula will be the number of biweekly payments required to pay off the debt.
How to Use in Excel:
Open Microsoft Excel.
For Problem 1:
=PMT(0.035, 36, 3600000, 0, 0)
For Problem 2:
=NPER(0.24/26, -391250, 8500000, 0, 0)
By using these Excel formulas, you can easily calculate the required installment and the number of payments for each scenario. Remember to interpret the results in the context of the problem. The monthly installment for the computer purchase will be a negative value (as it's a payment), and the number of biweekly payments will be a positive number.
Answered By