calc_fv_annuity: Future Value of an Annuity

View source: R/calculators.R

calc_fv_annuityR Documentation

Future Value of an Annuity

Description

Calculates the future value of a series of equal payments.

Usage

calc_fv_annuity(pmt, rate, n, type = 0)

Arguments

pmt

Payment amount per period.

rate

Interest rate per period (decimal).

n

Number of periods.

type

Payment timing: 0 for end of period (ordinary annuity), 1 for beginning of period (annuity due).

Value

Future value of the annuity.

Examples

calc_fv_annuity(pmt = 100, rate = 0.05, n = 10, type = 0)
calc_fv_annuity(pmt = 100, rate = 0.05, n = 10, type = 1)


brfinance documentation built on Feb. 19, 2026, 9:06 a.m.