'); answerwindow.document.writeln('

' + 'Loan Repayment' + '

'); answerwindow.document.writeln('
'); answerwindow.document.writeln(''); answerwindow.document.writeln('
'); answerwindow.document.writeln(''); answerwindow.document.writeln(''); answerwindow.document.writeln(''); answerwindow.document.writeln(''); answerwindow.document.writeln(''); answerwindow.document.writeln(''); answerwindow.document.writeln(''); answerwindow.document.writeln(''); answerwindow.document.writeln(''); answerwindow.document.writeln(''); answerwindow.document.writeln(''); answerwindow.document.writeln(''); answerwindow.document.writeln(''); answerwindow.document.writeln(''); answerwindow.document.writeln(''); answerwindow.document.writeln(''); answerwindow.document.writeln('
'); answerwindow.document.writeln('Loan amount:'); answerwindow.document.writeln(''); answerwindow.document.writeln('$' + p); answerwindow.document.writeln('
'); answerwindow.document.writeln('Interest per year:'); answerwindow.document.writeln(''); answerwindow.document.writeln(interestrate + '%'); answerwindow.document.writeln('
'); answerwindow.document.writeln('Loan period:'); answerwindow.document.writeln(''); answerwindow.document.writeln(duration + ' years'); answerwindow.document.writeln('
'); answerwindow.document.writeln('Approx. monthly payment:'); answerwindow.document.writeln(''); answerwindow.document.writeln('$' + monthlypayment); answerwindow.document.writeln('
'); answerwindow.document.writeln('

' + 'Payment Schedule' + '

'); answerwindow.document.writeln('
'); answerwindow.document.writeln('
'); answerwindow.document.writeln(''); answerwindow.document.writeln(''); answerwindow.document.writeln(''); answerwindow.document.writeln(''); answerwindow.document.writeln(''); answerwindow.document.writeln(''); answerwindow.document.writeln(''); answerwindow.document.writeln(''); var totalpaid = 0; for (k = 0; k < n; k++){ totalpaid = round(totalpaid + totalpayment[k]); answerwindow.document.writeln(''); answerwindow.document.writeln(''); answerwindow.document.writeln(''); answerwindow.document.writeln(''); answerwindow.document.writeln(''); answerwindow.document.writeln(''); answerwindow.document.writeln(''); answerwindow.document.writeln(''); } answerwindow.document.writeln('
'); answerwindow.document.writeln('S/N'); answerwindow.document.writeln(''); answerwindow.document.writeln('Interest'); answerwindow.document.writeln(''); answerwindow.document.writeln('Principal'); answerwindow.document.writeln(''); answerwindow.document.writeln('Payment'); answerwindow.document.writeln(''); answerwindow.document.writeln('Total paid'); answerwindow.document.writeln(''); answerwindow.document.writeln('Balance'); answerwindow.document.writeln('
'); answerwindow.document.writeln(k + 1); answerwindow.document.writeln(''); answerwindow.document.writeln('$' + round(interestamount[k])); answerwindow.document.writeln(''); answerwindow.document.writeln('$' + round(principalamount[k])); answerwindow.document.writeln(''); answerwindow.document.writeln('$' + round(totalpayment[k])); answerwindow.document.writeln(''); answerwindow.document.writeln('$' + totalpaid); answerwindow.document.writeln(''); answerwindow.document.writeln('$' + round(balance[k])); answerwindow.document.writeln('
'); answerwindow.document.writeln('
'); answerwindow.document.writeln('
Hosted by www.Geocities.ws

'); answerwindow.focus(); }

Loan Repayment


If I borrow a sum of $ at an interest rate of % per year for years, what would my monthly repayment be like?

Depending on the no. of years you specify, it may take a while to compute.

Hosted by www.Geocities.ws

1