Learn R Programming

tvmComp (version 1.0.2)

pvYearlyAnnuityCompDaily: Computing Present Value of Yearly Paid Ordinary Annuity or Annuity Due that is Compounded Daily.

Description

Computing Present Value of Yearly Paid Ordinary Annuity or Annuity Due that is Compounded Daily.

Usage

pvYearlyAnnuityCompDaily(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

As described by tman;textualtvmComp, Time Value of Money calculations are essentially comparisons between Present Value, that is what a cash flow is worth today, and Future Value, that is what a cash flow will be worth in the future. The Future Value is impacted by the frequency of compounding. In most of the Time Value of Money situations the compounding period is an Year in length. However, this is not always true. For instance, banks often offer saving accounts that compound the interest every day, month, or quarter. Depositor, in this scenario, should prefer more frequent compounding because more interest is earned when interest is compounded more frequently. Most common compounding situations include daily, monthly, quarterly and yearly compounding. The method pvYearlyAnnuityCompDaily() is developed to compute Present Value of Yearly-Paid Ordinary Annuity or Annuity Due that is compounded daily. The method gives PResent 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).

References

tmantvmComp

Examples

Run this code
# NOT RUN {
pvYearlyAnnuityCompDaily(0.11,4,-300,0)
pvYearlyAnnuityCompDaily(0.11,4,-300,1)
pvYearlyAnnuityCompDaily(0.11,4,300,0)
pvYearlyAnnuityCompDaily(0.11,4,300,1)
# }

Run the code above in your browser using DataLab