pvVariousCompSingleCF {tvmComp} | R Documentation |
Calculates Present Value of Single Cash Flow for various Compounding Frequencies.
Description
Calculates Present Value of Single Cash Flow for various Compounding Frequencies.
Usage
pvVariousCompSingleCF(r, n, fv, cfreq)
Arguments
r |
A number. |
n |
A number. |
fv |
A number. |
cfreq |
A number. |
Details
The method pvVariousCompSingleCF()
is developed to calculate Present Value of Single Cash Flow for various Compounding Frequencies and gives Present Value when values are passed to its four arguments. Here r
is annual rate, n
is number of years, pv
is Present Value and cfreq
is Compounding Frequency value that must be either 1 or 2 or 4 or 12 or 365.
Value
Input values to four arguments r
, n
, fv
and cfreq
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
pvVariousCompSingleCF( 0.08,10,2000,2)
pvVariousCompSingleCF( 0.08,10,2000,4)
pvVariousCompSingleCF( 0.08,10,2000,12)
pvVariousCompSingleCF( 0.08,10,2000,365)