computingN {tvmComp}R Documentation

Calculates the required Number of Years for a specific given Present Value to become equal to an amount that of a given Future Value at given Discount Rate.

Description

Calculates the required Number of Years for a specific given Present Value to become equal to an amount that of a given Future Value at given Discount Rate.

Usage

computingN(r, pv, fv)

Arguments

r

A number.

pv

A number.

fv

A number.

Details

As per an in-depth discussion about computational aspects of time value of money scenarios, Berk,J. et al. (2019) points out that most of the time value of money situations involve computation of Present Value or Future Value. However, in case a deposit is made into a bank account, it may require calculating how long it will take before the balance reaches a certain level. To add to this, Brooks,R. (2018) interestingly explains the rule of thumb that financiers developed which was known as the Rule of 72. This rule still works quite accurately for interest rates between 2 percent and 30 percent. As per the Rule of 72, just divide 72 by the interest rate to find the length of time it takes to double your money. For example, to double your money at the interest rate of 8 percent, it shall approximately take 9 (72 divided by 8) years. Further, he supports this with his findings that the Rule of 72 is fairly accurate for the middle range of interest rates. It overestimates the time it takes to double below 8 percent and underestimates over 8 percent. However, to accurately solve for required number of years (n) and for a specific given Present Value to become equal to an amount that of a given Future Value at given Discount Rate, the method computingN() is developed. This method computingN() gives n (required number of years) when values are passed to its three arguments. Here r is annual rate, pv is Present Value and fv is Future Value. The output gives value of n,the number of years that are rounded off to three decimal places. So, an output of 6.637 means 6.637 Years.

Value

Input values to three arguments r , pv and fv.

Author(s)

MaheshP Kumar, maheshparamjitkumar@gmail.com

References

Berk,J., DeMarzo,P., Stangeland,D.A., Marosi,A. (2019). Fundamentals of Corporate Finance (3rd Edition). Pearson Education Canada. ISBN 9780134735313, https://bookshelf.vitalsource.com/books/9780135219546.

Brooks,R. (2018). Financial Management (4th Edition). Pearson Education (US). ISBN 9780134730417, https://bookshelf.vitalsource.com/books/9780134731070.

Examples

computingN(0.08,-1200,2000)
computingN(0.08,1200,-2000)
computingN(0.08,1200,2000)

[Package tvmComp version 1.0.2 Index]