home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 2002 #12 / K-CD-12-2002.ISO / GraphCalc / scripts / Finance / compound_interest.gcs next >
Encoding:
Text File  |  2000-11-19  |  251 b   |  7 lines

  1. #Compound Interest
  2. [Tab=output]
  3. [PromptVal=c:initial deposit]
  4. [PromptVal=rate:"interest rate (eg. for 6% enter 0.06)"]
  5. [PromptVal=n:# of times per year interest in compounded]
  6. [PromptVal=years:number of years invested]
  7. p=c*(1+(rate/n))^(n*years)