Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Please answer all parts and provide all code from C++. Programming Assignment 3 (length of mortgage) You have just secured a mortgage for a house

Please answer all parts and provide all code from C++.

Programming Assignment 3 (length of mortgage)

You have just secured a mortgage for a house that costs $240,000. The down payment is $40,000. The terms of the mortgage are that

1) the monthly payment is $1500 (if principle is >=1500), otherwise the monthly payment is whatever is left.

2) payments are 12 times a year at equally spaced intervals,

3) there are 365 days in a year,

4) the rate is 6 percent for the first 3 years and 7 percent afterwards.

Find the following: 1) How many months will it take to pay off the entire mortgage? 2) What is the final monthly payment?

Example: you borrow $100,000. Interest that accumulates in first year is 6 percent of this, which is $6,000.

Interest that accumulates in a month is 6 percent/12 percent, which is .5 percent of the principle ($100,000). This is $500.

Some questions and answers

Q:Is the interest being calculated annually as opposed to monthly?

A: To find the interest rate, divide the annual rate by 12 so this is 0.06/12 (for the first three years). Every month, the amount that you have borrowed, P, will grow and become P(1+0.06/12).

Q: Do we assume we are paying the interest amount first each month before we use the remainder to pay-down the principal?

A: Yes, you make payments at the first of every month. Thus, the first payment will be made when time t = 1. (You made the down payment when t = 0, where t is in months.)

Q: Describe the payment schedule.

A: You start with $200,000 debt. The debt accumulates for a month. Then you pay $1500. The debt accumulates on the remaining principle. You pay off $1500. And so on and so forth. When there is less than $1500, for example, $1000, then your last payment is this amount, in this case, $1000.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Fundamentals Of Database Management Systems

Authors: Mark L. Gillenson

2nd Edition

0470624701, 978-0470624708

More Books

Students also viewed these Databases questions

Question

What is the most important part of any HCM Project Map and why?

Answered: 1 week ago