I can seem to find an answer to this question. It sounds like it should be simple but i can't find antying online and only found one answer on stack that seem overly complicated. I have a loan amount, term and total payment and i need to simply solve for the interst rate.
I am trying to simple get the interest rate of a mortgage loan (amortized) when loan amount, term and PI payment is know. Now i want to use that information to solve for the interest rate.
loan amount , term, payment = rate???
Can someone please help me solve this equation in a step by step manner. The only solution i found online was some exhausting formulas with no explanation and I couldn't make out the variables or workflow because there was not step by step calculation.
Thank you.
The rate on your loan should be somewhere on your statement.
The basic formula
$B = P \frac {(1+y)^N + 1}{y(1+y)^N}$
$B$ is the balance on your loan. $P$ is your payment. $N$ is the number of payments remaining. $y$ is your periodic rate. So, if you are making monthly payments. $y = \frac {r}{12}$ with r as your annualized rate.
Rather than trying to find a formula for $y,$ I suggest you numerical methods to find a solution.