
Don H. answered 04/15/20
Years of experience tutoring Financial & Managerial Accounting
Part 1: Calculating the monthly Mortgage Payment:
Given Information:
Monthly Interest: 3.5% / 12 (calculated from 3.5% annual interest compounded monthly)
Number of months: 25 * 12 months = 300 months
Total loan amount: $ 250,000 - $ 25,000 (down payment) = $ 225,000
Balloon Payment: $ 30,000
Either of the following Excel formulas will give you the correct amount for the mortgage payment alone:
=PMT((3.5% / 12), (25 * 12), (-250000 + 25000), 30000)
=-PMT((3.5% / 12), (25*12), (250000 - 25000), -30000)
Note: In both cases, you will see that the down payment, monthly payment, and balloon payment all have the same sign; and the home value has the opposite sign.
Part 2: Calculating the monthly insurance and taxes
Given Information:
Insurance: $ 450.00 / 12
Taxes: $ 120,000 * 8% / 12
Part 3: Combining the monthly Mortgage Payment, Insurance and Taxes:
Formula for Monthly Payment:
=PMT((3.5%/12), (25*12), (-250000+25000), 30000) + (450 / 12) + (120000 * 8% / 12)
You may want to simplify the formula (e.g. changing (-250000 + 25000) to -225000) to make it shorter. I decided not to do that--and added unneeded parentheses--because I wanted the way I reached each value to be shown.