I'm trying to find the equation that will calculate my blinds for me based on number of players and target length of a tournament. I have most of it. I'm only missing one part.
Given a starting blind and the blind at the target end time, I need an equation that will tell me what percentage the blinds should go up each level.
I need to input 1) the starting blind 2) the ending blind, and 3) the number of levels and get back the percent increase.
For example, if I start with a big blind of 50 chips and I want to end with a big blind of 4300 chips at the three hour mark, with 20 minute levels (that's a total of 9 increases), I can play around in Excel and by trial and error I know that if I increase the blind by 0.65 each time, I will arrive at my target big blind of 4300.
I realize that this is an interest rate problem.
What I need the equation that will get that interest rate given a starting value, ending value and number of interest periods.
(I realize that this should be a simple problem, but I'm a computer programmer, not a mathematician. Feel free to mock me.)
Thanks in advance.
There shall be no mocking here.
Say you start with $a$ blinds and after $n$ (exponential) increases end up with $b$. Then there is some constant $C$ so that
$$b = a \cdot C^n$$
Solving for $C$ gives
$$C = \left(\frac{b}{a}\right)^{\frac{1}{n}}$$
Meaning: At each step, the new big blind is the earlier big blind multiplied by $C$.
Your example: Here, initial big blind is $a=50$ and ends up with $b=4300$ after $n=10$ increases.
$$C = \left(\frac{4300}{50}\right)^{\frac{1}{10}} \approx 1.56$$
($1.56$ means an increase of $56 \%$)