You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.