fvYearlyAnnuityCompAnnually | R Documentation |
Calculates Future Value of Yearly Paid Ordinary Annuity or Annuity Due that is Compounded Annually.
fvYearlyAnnuityCompAnnually(r, n, pmt, bgn)
r |
A number. |
n |
A number. |
pmt |
A number. |
bgn |
A number. |
According to \insertCitehumm;textualtvmComp, classification of Annuities is done by the date of payment.
In an Ordinary Annuity, the function processes the payments as an end-of-period payment.
Whereas, in an Annuity Due, the function processes the payments as a beginning-of-period payment. Further \insertCitebrook;textualtvmComp explains that he future value of an annuity can be determined by multiplying the payment or deposit with the Future Value Interest Factor of an annuity.
The method, fvYearlyAnnuityCompAnnually()
is developed to calculate Future Value of Yearly-Paid Ordinary Annuity or Annuity Due that is Compounded Annually.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).
Input values to four arguments r
, n
, pmt
and bgn
.
MaheshP Kumar, maheshparamjitkumar@gmail.com
fvYearlyAnnuityCompAnnually(0.11,4,-300,0) fvYearlyAnnuityCompAnnually(0.11,4,-300,1) fvYearlyAnnuityCompAnnually(0.11,4,300,0) fvYearlyAnnuityCompAnnually(0.11,4,300,1)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.