CSC 161 Schedule Readings Labs & Projects Homework Deadlines Resources

Computing Compound Interest

A simple savings account earns compound interest over time, based upon an annual interest rate (e.g., 1% or 9%) per year. The basic computations proceed as follows:

For example, at an annual rate of 8%, the monthly rate is 0.00666667. With a starting balance of $100, the computations proceed as follows for the first year:

       Starting   Monthly   Ending
Month   Balance   Interest  Balance
  0      ------     ----     100.00
  1      100.00     0.67     100.67
  2      100.67     0.67     101.34
  3      101.34     0.68     102.01
  4      102.01     0.68     102.69
  5      102.69     0.68     103.38
  6      103.38     0.69     104.07
  7      104.07     0.69     104.76
  8      104.76     0.70     105.46
  9      105.46     0.70     106.16
 10      106.16     0.71     106.87
 11      106.87     0.71     107.58
 12      107.58     0.72     108.30

This problem asks to you

The following notes provide additional information regarding this work.

Grading

In addition to the general grading guidelines for evaluation, the assignment is worth 25 points.