fvYearlyAnnuityCompMonthly {tvmComp} | R Documentation |
Calculates Future Value of Yearly Paid Ordinary Annuity or Annuity Due that is Compounded Monthly.
Description
Calculates Future Value of Yearly Paid Ordinary Annuity or Annuity Due that is Compounded Monthly.
Usage
fvYearlyAnnuityCompMonthly(r, n, pmt, bgn)
Arguments
r |
A number. |
n |
A number. |
pmt |
A number. |
bgn |
A number. |
Details
According to Hummelbrunner,S.A. et al. (2020) Annuity is a series of equal payments, made at periodic intervals. The length of time between the successive payments is called the payment interval or payment period. The length of time from the beginning of the first payment interval to the end of the last payment interval is called the term of an annuity. The amount of each of the regular payments is called the periodic payment or periodic rent.
The method fvYearlyAnnuityCompMonthly()
is developed to calculate Future Value of Yearly-Paid Ordinary Annuity or Annuity Due that is Compounded Monthly.The method gives Future Value 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)
Value
Input values to four arguments r
, n
, pmt
and bgn
.
Author(s)
MaheshP Kumar, maheshparamjitkumar@gmail.com
References
Hummelbrunner,S.A., Halliday,K., Hassanlou,A.R. (2020). Contemporary Business Mathematics with Canadian Applications (12th Edition). Pearson Education Canada. ISBN 9780135285015, https://bookshelf.vitalsource.com/books/9780135406380.
Examples
fvYearlyAnnuityCompMonthly(0.11,4,-300,0)
fvYearlyAnnuityCompMonthly(0.11,4,-300,1)
fvYearlyAnnuityCompMonthly(0.11,4,300,0)
fvYearlyAnnuityCompMonthly(0.11,4,300,1)