I'm taking a finance course, and I can't afford the financial calculator which can be used to solve this, so I would like to know how to solve this algebraically by hand (I don't care if it uses complex numbers or quadratic formula or anything tricky).
Note that I have a regular calculator that can grind out numbers, but not a financial calculator.
I tried and tried but wasn't able to isolate 'r' even into a quadratic form to solve it.
Trying to understand the process to duplicate it for any set of numbers...
The formula represents the effective monthly rate of a loan with a known principal value and interest rate of the loan, and the number of compounding periods.
The actual question is...
27000 = 2430 * { ( 1 - [1/(1+r)^12] ) / r }
A simple, reasonably fast way to solve this numerically is to use the secant rule.
Say you have an equation $$ f(x) =0 $$ Say you have two estimates $x_0$ and $x_1$, with corresponding values $y_0 = f(x_0)$ and $y_1 = f(x_1)$. Hopefully they are near the root, ideally on both sides of it. But the method often works even starting from far away. A better estimate is given by: $$ x_2 = x_1 - \frac{y_1 (x_1 - x_0)}{y_1 - y_0} $$ If the result isn't near enough, reuse the point nearest the root or keep the pair straddling it, and repeat.
The explanation is that $x_2$ is where the straight line through $(x_0, y_0)$ and $(x_1, y_1)$ cuts the $x$ axis; if the graph of $f(x)$ isn't too wild, $x_2$ is much nearer the root than the starting points.