I want to know how to calculate minimum fixed monthly payment needed in order to pay off a credit card balance within 12 months. I just want to understand the concept, and how to work around this problem. Any book suggestion on this kind of problem will also be helpful.
Example - The outstanding balance on the credit card = 4773 , Annual interest rate = 0.2
Thanks in advance!
I just want to add that, the annual interest rate is 20% (i.e. 0.2) My apologies for the confusion.
A series of payments made at fixed points in time are called annuities.
Essentially, you are summing up a finite geometric series. If you want to calculate how much you'd have to pay per month to pay off a $ \$ 4773$ debt at an annual effective rate of $20 \%$, we'd first convert our annual effective interest rate to the effective interest rate per month:
$(1 + i) = (1 + i_{12})^{12} \implies i_{12} = (1.2)^{1/12}-1$.
Once we have that, we need to solve
$4773 = P\frac{1 - (1+i_{12})^{-12}}{i_{12}}$.
At this point you can just plug numbers in.
Annuities are really flexible and pretty interesting, so I'd encourage you to read the wikipedia page. Unfortunately, the calculations can become tedious, but many calculators will calculate the values for you.
EDIT: I want to make clear my assumptions: We start paying next month, and the annual effective rate of interest is $20\%$
To explain the $i_{12}$ part, here's a picture:
If we consider the total interest accrued in the year, it's $1 + i$. We want to change this into a monthly interest though, since we are making a payment every month. So, the payment made in the first month will accrue interest from time $1$ until time $12$, the second payment from time $2$ until time $12$, etc. Basically, we want to find $i_{12}$ so that $(1 + i) = (1 + i_{12})^{12}$ for that reason. We could just use $(1 + i)$, but that would introduce fractional exponents.
I should also apologize also. I was using the notation $i^{(12)}$ originally which is actually something called the nominal rate of interest, and the relationship is $i_{12} = \frac{1}{12}i^{(12)}$. The notation really isn't as horrible as I make it seem, I promise!