我有找到四个领域的每月付款的公式

  • 贷款金额
  • 利率
  • 贷款条款
  • 每月付款
  • Formula: Monthly Payment =Loan amount * ((1 + Interest rate per annum/100) ^ Term of loan) / Term of loan / 12
    现在我想找到
  • 贷款金额
  • 利率
  • 贷款条款

  • 如果三个字段中的任何一个被填充。

    我也有根据利率,贷款条件和每月还款额来计算贷款额的公式。
    Formula: Loan amount = Monthly Payment/ ((1 + Interest rate per annum/100) ^ Term of loan) * Term of loan * 12
    

    但是它不能计算出完美的身材。

    任何人都可以给我这三个用于计算贷款金额/利率/贷款期限的公式(Java脚本将不胜感激)

    最佳答案

    这是我的

    公式 :

    M = P [ i(1 + i)^n ] / [ (1 + i)^n – 1]
    

    nerdWallet

    希望这会有所帮助

    var M; //monthly mortgage payment
    var P = 400000; //principle / initial amount borrowed
    var I = 3.5 / 100 / 12; //monthly interest rate
    var N = 30 * 12; //number of payments months
    
    //monthly mortgage payment
    M = monthlyPayment(P, N, I);
    
    console.log(M);
    
    function monthlyPayment(p, n, i) {
      return p * i * (Math.pow(1 + i, n)) / (Math.pow(1 + i, n) - 1);
    }

    10-07 17:39