I have three populations
a <- 100
b <- 100000
c <- 75000
Population a growths 10% per year while population b growths 1% per year and population c growths 2% per year.
How many years are necessary for the total population of a be the same of b and of c?
I have tried to solve this problem by using the compound interest formula (but I am not sure whether this is the right way to do it).
If so, how can I find t in this comparison so that it returns TRUE?
a * ((1 + 0.1) ^ (1 * t)) == b * ((1 + 0.01) ^ (1 * t))
Thanks,