[This is preliminary documentation and is subject to change.]
Returns present value of amount returned in X number of periods
at a certain interest rate
Namespace: NFX.FinancialAssembly: NFX (in NFX.dll) Version: 3.0.0.1 (3.0.0.1)
public static double PV(
double fv,
double intRate,
int periods
)
public static double PV(
double fv,
double intRate,
int periods
)
Public Shared Function PV (
fv As Double,
intRate As Double,
periods As Integer
) As Double
Public Shared Function PV (
fv As Double,
intRate As Double,
periods As Integer
) As Double
public:
static double PV(
double fv,
double intRate,
int periods
)
public:
static double PV(
double fv,
double intRate,
int periods
)
static member PV :
fv : float *
intRate : float *
periods : int -> float
static member PV :
fv : float *
intRate : float *
periods : int -> float
Return Value
Type:
DoublePresent Value
Assume that A gives $100 cash to B. B returns the same amount to A in 1 year.
Banks give 5% annual rate, therefore present value of this $100 dollar
returned is going to be $95.24 - A lost $4.76, because B did not pay any interest and
A could have deposited $100 in regular bank instead of giving it to B.
Had A charged B 5% interest rate , A would have made money.