Excel Handout Assignment 2
Lab objectives:
2. Learn and use the "What-if" method for simulating real world problems.
3. Learn to create presentation graphics.
Loan Payment Problem
The simulation is of a loan where interest is charged at the end of each month when the payment is made. The interest rate is specified as an annual rate, and must be converted to a monthly rate by dividing by 12. The balance during the month is multiplied by the interest rate to find the interest charge for that month. Each payment is divided into two parts, the interest payment and the principle payment. The end balance is calculated as the begin balance minus the principle payment.
|
|
|
|
|
|
||
|
Loan Amount |
10000.00
|
Your Name | ||||
|
Interest Rate |
8.50%
|
|||||
|
Payment |
872.20
|
|||||
|
Number of Periods |
12
|
|||||
|
Period | Begin Bal | Payment | Principle | Interest | End Bal | |
|
1
|
=$C$1 | =C3 | =C6-E6 | =B6*($C$2/12) | =B6-D6 | |
|
=A6+1 | =F6 | =IF(A7<$C$4,$C$3,(B7+E7)) |
Note that cell C7 has a long formula that spans three cells,
but it's just entered into the one cell. The formula in C7 will
compute the payment amount, which will be the same in all rows with the
possible exception of the last payment. Paraphrasing C7, it says:
"If the period number is less than the period number of the last payment,
make a regular payment. Otherwise, pay the remainder owed (balance plus
interest)."
2. Copy the last item in columns D through F to row 7 to complete the information for the second payment. We will use the second month’s formulas as the pattern for the rest of the months.3. Fill row 7 columns A through F down to row 65 to make room for up to 60 payments (i.e., 60 periods). Note how the dollar signs (in the formulas--not those seen in the display of currency values) work after you copy the formulas. That is to say, observe the effect of absolute and relative cell addresses. If everything is correct, the top of your spreadsheet will have the same numbers as the following:
|
|
|
|
|
|
|
|
Loan Amount |
$10,000.00
|
Smith, John J. | |||
|
Interest Rate |
8.50%
|
||||
|
Payment |
$872.20
|
||||
|
Number of Payments |
12
|
||||
|
|
|
|
|
|
|
|
1
|
$10,000.00
|
$872.20
|
$801.37
|
$70.83
|
$9,198.63
|
|
2
|
$9,198.63
|
$872.20
|
$807.04
|
$65.16
|
$8,391.59
|
|
3
|
$8,391.59
|
$872.20
|
$812.76
|
$59.44
|
$7,578.83
|
|
4
|
$7,578.83
|
$872.20
|
$818.52
|
$53.68
|
$6,760.31
|
|
5
|
$6,760.31
|
$872.20
|
$824.31
|
$47.89
|
$5,936.00
|
|
6
|
$5,936.00
|
$872.20
|
$830.15
|
$42.05
|
$5,105.85
|
|
7
|
$5,105.85
|
$872.20
|
$836.03
|
$36.17
|
$4,269.81
|
|
8
|
$4,269.81
|
$872.20
|
$841.96
|
$30.24
|
$3,427.86
|
|
9
|
$3,427.86
|
$872.20
|
$847.92
|
$24.28
|
$2,579.94
|
|
10
|
$2,579.94
|
$872.20
|
$853.93
|
$18.27
|
$1,726.01
|
|
11
|
$1,726.01
|
$872.20
|
$859.97
|
$12.23
|
$866.04
|
|
12
|
$866.04
|
$872.17
|
$866.04
|
$6.13
|
$0.00
|
4. Use shading, formats, and borders to make your spreadsheet look similar the to the one above.II. Objective5. Save your notebook as loan in your home directory.
6. Print the above portion of your spreadsheet in two ways: with the values displayed as above, and with the cell formulas displayed. To print with the cell formulas displayed, from the Tools menu, select the Options… command, and the View sheet. In the Window Options area, check the Formulas check box on. Then select the range A1:F17, and, from the File menu, choose the Print command. Be sure to click the Selection radio button on, so that you will print only the selected range.
1. What if you can afford $355 a month for a car payment; the car you want costs $8,000, and the interest rate on your loan is 5%. How long will you be paying for the car, and how much will your last payment be (the last payment must be greater than zero and less than or equal to $355)? Hint: Adjust the number of payments to reach the desired outcome.
2. What if your interest rate is 10% for a car loan; the car costs $8,000, and you wish to pay off the loan in one year. How much are your monthly payments? The payments should be equal except for possibly the last payment, which should be as close to the others as possible. Hint: Adjust the amount of payment to reach the desired outcome.
Once adjusted, print the spreadsheet. Include all rows starting with the Loan Amount row through the last row with a Begin Bal greater than zero.
3. What if you wish to pay off a car loan in three years; the car costs $8,000, and you want the monthly payment to be $250 with the last payment within $5 of $250. What must the loan interest rate be (to within one decimal place, for example 9.9%)? Hint: Adjust the interest rate to reach the known outcome.
Once adjusted, print the spreadsheet. Include all rows starting with the Loan Amount row through the last row with a Begin Bal greater than zero.
4. What if you can afford $250 a month for a car payment; the interest rate on the car loan is 7%, and you wish to pay off the loan in five years. The payments should be equal except for the last payment, which should be as close as possible to the others. What is the most you can borrow? Hint: Adjust the amount of the loan to reach the desired outcome.
Once adjusted, print the spreadsheet. Include all rows starting with the Loan Amount row through the last row with a Begin Bal greater than zero.
Create and print the following types of charts from the data of question 4.
Balance after each payment chart:
Division of each payment into principle and interest chart:
Questions