使用R

时间:2018-10-28 21:12:00

标签: r math annuity

我尝试根据总抵押贷款,期限和每月还款额来计算年金的利率。

计算每月年金的公式:

              i
J = T * --------------
        1 - (1 + i)^-n

其中T是总抵押贷款,i是月利息,J是年金

示例:

library(purrr)
library(dplyr)

mortgage   <- 300000
#annualRate <- ??
duration   <- 360
#annuity
ann <- 1108.86

#Use brute force to find the interest rate
annuity <- function(annualRate, mortgage, duration) {
    monthRate <- annualRate / 12
    ann <- (monthRate / (1- ((1+monthRate)^(-duration)) )) * mortgage
    data.frame(rate = annualRate*100, ann = ann)
}

#Try some rates
checkRates <- seq(1,3,0.5)/100
res <- map(checkRates , annuity, mortgage, duration) %>% bind_rows()
res

#  rate       ann
#1  1.0  964.9186
#2  1.5 1035.3606
#3  2.0 1108.8584
#4  2.5 1185.3627
#5  3.0 1264.8121

使用这种蛮力技术,兴趣是2.0%

检查解决方案:

annualRate <- 2/100

monthRate <- annualRate / 12
(monthRate / (1- ((1+monthRate)^(-duration)) )) * mortgage
#[1] 1108.858

但是,我想知道是否可以在不使用蛮力的情况下计算出R中的确切利率。

# 1108.86          i
# ------- =  --------------
# 300000     1 - (1 + i)^-360

是否可以使用R求解此方程? 任何建议表示赞赏。

1 个答案:

答案 0 :(得分:2)

我认为您正在寻找uniroot。这是您的问题的示例用法:

mortgage   <- 300000
duration   <- 360
ann <- 1108.86
uniroot(function(x) mortgage * x/12 / (1 - (1+x/12)^(-duration)) - ann,
    c(1e-6,1))$root * 100
#[1] 2.000091