I’m solving some finance problems and faced the equation below. $$PV = C(\frac{1-\frac{1}{(1+r)^n}}{r}) + \frac{FV}{(1+r)^n}$$ Since I don’t have the finance calculator, I want to solve that for r in hand. Assume all PV, FV, n, C are constant.
Is there anyway to solve it, not using a trial and error approach?
I’ve tweaked that equation a couple of times. And this is what I’ve reached $$(1+r)^n\{rPV - C\} = rFV - C$$ But I don’t know how to go further. Is there anyway to solve it?
No, you can't solve it algebraically as far as I know, but your last equation is close to a good fixed point expression. Write it as $$r=\frac {(1+r)^n\{rPV - C\} +C}{FV}$$ now pick some starting $r$, plug into the right and calculate the left. Plug that into the right and keep going to convergence. If your starting guess is close enough and the derivative of the right side is less than $1$ in absolute value it will converge. If $nr \ll 1$ you can replace $(1+r)^n$ with $1+nr$ and have a linear equation to solve. That can give you a start if you don't have a better (experience based) guess for $r$.