computingROR {tvmComp}R Documentation

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

Description

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

Usage

computingROR(n, pv, fv)

Arguments

n

A number.

pv

A number.

fv

A number.

Details

Berk,J. et al. (2019) defines rate of return as the rate at which the value of an amount invested grows to fund the future cash flow(s) of an investment. In some situations, this rate of return has to be computed when the Present Value and Future Value are known and the interest rate (or rate of return) that equates to Present and Future Value needs to be computed. Brooks,R. (2018) elaborates on the ten important points about the Time Value of Money equation belonging to a single cash flow. Here, Brooks,R. (2018) states that the equation essentially has four variables (r, n, pv and fv), and three out of these four variables must be known before you can solve for the missing or unknown variable. The method computingROR() computes required rate of return (r) for a specific given amount of Present Value (pv) to become equal to that of a given amount of Future Value (fv) in given number of years (n). So, computingROR() gives r (interest rate or required rate of return) when values are passed to its three arguments. Here, n is number of Years, pv is Present value and fv is Future Value. The output gives value of r, the Required Rate of Return that is rounded off to three decimal places. So, an output of 0.186 means a return of 18.6 percent.

Value

Input values to three arguments n , 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

computingROR(3,-1200,2000)
computingROR(3,1200,-2000)
computingROR(3, 1200,2000)

[Package tvmComp version 1.0.2 Index]