20.11.2018 Views

The Economic Consequences of Homelessness in The US

The Economic Consequences of Homelessness in The US

The Economic Consequences of Homelessness in The US

SHOW MORE
SHOW LESS

Create successful ePaper yourself

Turn your PDF publications into a flip-book with our unique Google optimized e-Paper software.

m = payment amount<br />

n = amount payment periods<br />

LN = natural logarithm<br />

For F<strong>in</strong>d<strong>in</strong>g Rema<strong>in</strong><strong>in</strong>g Pr<strong>in</strong>cipal Balance<br />

<strong>The</strong> follow<strong>in</strong>g formula will calculate your rema<strong>in</strong><strong>in</strong>g balance if you have made t <strong>of</strong> N<br />

fixed payments <strong>in</strong> a timely basis (i.e. by the due date) so that no additional <strong>in</strong>terest has<br />

accrued.<br />

where:<br />

P = P*(1 -((1 + J)**t - 1)/((1 + J)**N - 1))<br />

P = pr<strong>in</strong>cipal, the <strong>in</strong>itial amount <strong>of</strong> the loan<br />

I = the annual <strong>in</strong>terest rate (from 1 to 100 percent)<br />

L = length, the length (<strong>in</strong> years) <strong>of</strong> the loan, or at least the length over which the<br />

loan is amortized.<br />

J = monthly <strong>in</strong>terest <strong>in</strong> decimal form = I / (12 x 100)<br />

N = number <strong>of</strong> months over which loan is amortized = L x 12<br />

t=number <strong>of</strong> paid monthly loan payments<br />

This is from Mortgage Backed Securities by William W Barlett and was sent to me by<br />

Victor Kheyfets.<br />

If you would like to calculate an outstand<strong>in</strong>g loan balance but have not made regular<br />

fixed payments by the due date, you will have to fill out an accurate payment schedule<br />

with<strong>in</strong> a spreadsheet, or similar application where you can account for miss<strong>in</strong>g and<br />

different payments.<br />

F<strong>in</strong>d<strong>in</strong>g the Interest Rate Given Loan Amount, Payment and Number<br />

<strong>of</strong> Periods<br />

Many folks have asked me for a simple formula to calculate the <strong>in</strong>terest rate give the<br />

other three terms (loan amount, payment and # <strong>of</strong> periods). I can calculate the number<br />

easily enough, but I have no idea if there is a simple formula to do it or not. I do it the<br />

good old fashioned way -- plug and chug! Luckily, a computer program makes "plug and<br />

chug" trivial and speedy with a simple b<strong>in</strong>ary search:<br />

m<strong>in</strong>_rate = 0; max_rate = 100; # Set Maximum and m<strong>in</strong>imum rate<br />

while (m<strong>in</strong>_rate < max_rate - 0.0001)<br />

{<br />

mid_rate = (m<strong>in</strong>_rate + max_rate) / 2; # Divide by 2<br />

J = mid_rate / 1200; # Convert to monthly decimal<br />

# calculate payment from <strong>in</strong>terest, term and loan_amt<br />

guessed_pmt = loan_amt * ( J / (1 - (1 + J) ** -N ));<br />

Page 234 <strong>of</strong> 289

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!