金融方案,大佬进

SwivelHead-avatar

SwivelHead

2020-03-10T14:49:46+00:00

车价是42.6,有大佬能告诉我这个方案的真实利率是多少,感觉利息很高啊,还有他标的9.88%利率是怎么计算来的,代进去不对啊。

我目前算得是总利息是8w,年化就是8/30/4=6.66%?(我知道这是表面利率,是假的)
平时楼主固定工资+年底提成结算的收入模式感觉这个方案压力较小,老哥们轻喷强上。[img]https://img.nga.178.com/attachments/mon_202003/11/-7da9Q5-587xX15ZbdT3cS334-2bc.jpg.medium.jpg[/img]
carsen-avatar

carsen

这是要买啥?五系??
Berrr-avatar

Berrr

我不是金融大佬,勉强算个码农大佬,给你解答下计算方式。

利率是事先定好的,你这个方案下就是 9.88%,然后根据这个利率计算每月还款数,具体公式如下(前端代码里找出来的):
var bonus = Math.round(loan * sol.yearPayPer / 100); //年度还款
if (month == 48) {
mPay = Math.round(((loan - bonus * (1 / Math.pow((1 + rate / 12), 12) + 1 / Math.pow((1 + rate / 12), 24) + 1 / Math.pow((1 + rate / 12), 36) + 1 / Math.pow((1 + rate / 12), 48))) / (Math.pow((1 + rate / 12), 11) - 1) / ((12 / rate + 12 / Math.pow((1 + rate / 12), 12) / rate + 12 / Math.pow((1 + rate / 12), 24) / rate + 12 / Math.pow((1 + rate / 12), 36) / rate)) * Math.pow((1 + rate / 12), 11))*100)/100;
} else if (month == 36) {
mPay = Math.round(((loan - bonus * (1 / Math.pow((1 + rate / 12), 12) + 1 / Math.pow((1 + rate / 12), 24) + 1 / Math.pow((1 + rate / 12), 36))) / (Math.pow((rate / 12 + 1), 11) - 1) / ((12 / rate + 12 / Math.pow((1 + rate / 12), 12) / rate + 12 / Math.pow((rate / 12 + 1), 24) / rate)) * Math.pow((1 + rate / 12), 11))*100)/100;
} else if (month == 24) {
mPay = Math.round(((loan - bonus * (1 / Math.pow((1 + rate / 12), 12) + 1 / Math.pow((1 + rate / 12), 24))) / (Math.pow((rate / 12 + 1), 11) - 1) / ((12 / rate + 12 / Math.pow((rate / 12 + 1), 12) / rate)) * Math.pow((1 + rate / 12), 11))*100)/100;
}

mpay = 每月还款数
loan = 贷款数
rate = 利率,9.88%
Math.round(x) = 函数,对 x 四舍五入
Math.pow(x, y) = 函数,求 x 的 y 次方
P H A N T O M-avatar

P H A N T O M

有个50-50的 你找一下看看 利息2.88%
只可以换代2年。
asi-avatar

asi

[quote][pid=403973377,20761948,1]Reply[/pid] Post by [uid=60577]ryo_cn[/uid] (2020-03-11 23:55):

我不是金融大佬,勉强算个码农大佬,给你解答下计算方式。

利率是事先定好的,你这个方案下就是 9.88%,然后根据这个利率计算每月还款数,具体公式如下(前端代码里找出来的):

[code=js]
var bonus = Math.round(loan * sol.yearPayPer / 100); //年度还款
if (month == 48) {
mPay = Math.round(((loan - bonus * (1 / Math.pow((1 + rate / 12), 12[/quote]本来我还觉得我挺懂的。。。。