Skip to content

technicalexx/mortgage_calculator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 

Repository files navigation

Mortgage Calculator

A mortgage calculator project is a software application designed to help users estimate their monthly mortgage payments. It takes into account factors such as the loan amount (principal), annual interest rate, and loan term (period in years). The app is written in Java.

  • M = monthly payment
  • P = principal amount
  • R = monthly interest rate ($\frac{anuualRate}{12}$)
  • N = number of payments in months (ex.: 10 years -> 120 payments)
  • B = remaining balance

Formula used to calculate the payments:

$M = P * \frac{R*(1+R)^N}{(1+R)^N - 1}$

Additionally, the user will be able to see their projected monthly balance after each payment.

Formula used to calculate the remaining balance:

$B = P * \frac{(1+R)^N - (1+R)^M}{(1+R)^N - 1}$

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages