fv: Returns the future value of a single payment and annuity...

View source: R/fv.R

fvR Documentation

Returns the future value of a single payment and annuity payments (fv)

Description

Returns the future value of a single payment and annuity payments (fv)

Usage

fv(
  rate = 0,
  inflation = 0,
  nper = 1,
  pv = 0,
  pmt = 0,
  pmtinfladj = FALSE,
  pmtUltimo = TRUE
)

Arguments

rate

The interest rate per period. Default is zero. Must be entered as decimal.

inflation

The inflation forcast. Default is zero. Must be entered as decimal.

nper

The total number of payment periods. Default is one period.

pv

The present value of single investment made today. Default is assumed to be zero. Must be entered as a negative number.

pmt

The payment made each period (annuity). Must be entered as a negative number.

pmtinfladj

Should the payments be inflation adjusted? E.g. are the annuity pmt constant or real annuities. Only avaliable for pmt given as scalar. Default value = FALSE.

pmtUltimo

When payments are due. TRUE = end of period, FALSE = beginning of period. Default is TRUE.

See Also

fv.single

fv.annuity

Examples

fv(rate=0.04,inflation=0.02, nper=10,pv=-1000,pmt=-10,pmtinfladj=FALSE,pmtUltimo=TRUE)
fv(rate=0.04,inflation=0.02,nper=10,pmt=-10,pmtinfladj=TRUE,pmtUltimo=TRUE)
fv(rate=0.04,inflation=0.02,nper=10,pv=-1000)

eaoestergaard/UNPIE documentation built on Aug. 23, 2022, 2:28 a.m.