fvYearlyCompSingleCF {tvmComp} | R Documentation |
Computing Future Value of a Single Cash Flow with Yearly Compounding Frequency.
Description
Computing Future Value of a Single Cash Flow with Yearly Compounding Frequency.
Usage
fvYearlyCompSingleCF(r, n, pv)
Arguments
r |
A number. |
n |
A number. |
pv |
A number. |
Details
As Brooks,R. (2018) explains Future Value is the cash value of an money or an asset in the future that is equivalent in value to a specific amount today. This, acts as basis of understanding how interest accumulates (and gets compounded) and how the Time Value of Money equation can be used for estimating growth. On these lines, fvYearlyCompSingleCF()
was developed and it calculates Future Value of a Single Cash Flow with Yearly Compounding Frequency.
fvYearlyCompSingleCF()
gives Future Value when values are passed to its three arguments. Here r
is annual rate, n
is number of years and pv
is Present Value
Value
Input values to three arguments r
, n
and pv
.
Author(s)
MaheshP Kumar, maheshparamjitkumar@gmail.com
References
Brooks,R. (2018). Financial Management (4th Edition). Pearson Education (US). ISBN 9780134730417, https://bookshelf.vitalsource.com/books/9780134731070.
Examples
fvYearlyCompSingleCF(0.08,10,2000)
fvYearlyCompSingleCF(0.08,10,-2000)