How would I calculate my mortgage payment using only a calculator? Is there a formula?

November 26, 2008

mortgage calculator
Nelson asked:


for example, 30 year fixed monthly payment?
How would I calculate it?
I need a formula.
using a cheap $5 dollar calculator with no financial functions.

Create a video blog

Mortgage Loan Calculator?

November 20, 2008

mortgage calculator
Mr. Anderson asked:


Is there a standard and known method of how to calculate mortgage ?

Caffeinated Content

Java Mortgage calculator help?

May 17, 2007

mortgage calculator
morphicsaiyan asked:


Can someone help me flesh out the details of this? I need to make a mortgage calculator in java does the following
The user will be asked to enter to the amount of the mortgage loan, the term in years of the mortgage, and an annual interest rate. The amount of the mortgage loan shall be greater than 0 and not exceed 10,000,000 dollars. The minimum term for the loan is five years, with a maximum of 30 years. In addition to the user being able to supply the mortgage information the application will display three of the most commonly used mortgages and the user shall be able to select these mortgages instead of supplying the mortgage information. Once the user has provided the mortgage information, the program shall calculate the monthly mortgage payment and the amortization table for the life of the mortgage. For each month the amortization table shall display the loan period, loan balance, principal balance, interest balance, principal paid and interest paid.

Here is mortgage payment formula.
PMT = (PV x IR) / (1 - (1 + IR)^-NP)

Where:

PMT = Monthly Payment
PV = Principle Value (amount of loan)
IR = Interest Rate, by month
NP = Note Period, or mortgage term in months

IR = apr/100/12
NP = term * 12

if Apr > 0 AND APR <= 100 then
PMT = (Principal * IR)/(1-(1 + IR)-np)
else if Apr = 0
PMT = Principal/NP
end if

I need help I am not so good with Java. As long as i get the calculator part of this done i think i can handle the rest.

Caffeinated Content for WordPress