Learn R Programming

tvmComp (version 1.0.2)

fvMonthlyPaidAnnuityCompMonthly: Calculates Future Value of Monthly Paid Ordinary Annuity or Annuity Due that is Compounded Monthly.

Description

Calculates Future Value of Monthly Paid Ordinary Annuity or Annuity Due that is Compounded Monthly.

Usage

fvMonthlyPaidAnnuityCompMonthly(r, n, pmt, bgn)

Arguments

r

A number.

n

A number.

pmt

A number.

bgn

A number.

Value

Input values to four arguments r , n , pmt and bgn.

Details

Explaining the variables involved in Time Value of Money equation, brook;textualtvmComp points out that variables in a single cash flow (the lump-sum time value) of money equations are number of periods, r (Interest Rate or Rate of Return), pv (Present Value), and fv (Future Value), whereas annuity equation has an additional variable and that is pmt (payment). The method fvMonthlyPaidAnnuityCompMonthly() calculates Future Value of Monthly Paid Ordinary Annuity or Annuity Due that is Compounded Monthly and gives fv when values are passed to its four arguments. Here r is annual rate, n is number of years, pmt is amount of one annuity and bgn is the computational mode. (Enter 1 when annuity payment occurs at the beginning of the period; 0 for end of period payments)

References

brooktvmComp

Examples

Run this code
# NOT RUN {
fvMonthlyPaidAnnuityCompMonthly(0.08,10,-50,1)
fvMonthlyPaidAnnuityCompMonthly(0.08,10,-50,0)
fvMonthlyPaidAnnuityCompMonthly(.08,10,50,1)
fvMonthlyPaidAnnuityCompMonthly(.08,10,50,0)
# }

Run the code above in your browser using DataLab