you deposit 2800 in a savings account that earns 1% annual intrest compounded semiannually.Write a function that represents the balance after t years
Question
Answer:
Function for compound interest: Amount = Initial amount * ( 1 + (r/n) ) ^ (nt)
where r = interest rate per year, n = period per year
n = 2, r = 0.01
Answer: F(t) = 2,800 * [ 1 + (0.01/2) ] ^ 2t
solved
general
11 months ago
6623