c. m*[2^(d/10)]
(d/10) tells you how many doubling "periods" the system has gone through. If 20 days have elapsed, then you have gone through 2 doubling periods (20/10). So the generic form will be d/10. We use 2 as the base because we are doubling every period. Think about it, if 20 days have elapsed, we went through 2 periods of doubling, or in other words multiplied by a factor of 4 (2^2) because we doubled the original amount, then doubled this amount again. So [2^(d/10)] tells us by what factor the population has increased after a time of d. So after 20 days, we would expect the original population to have quadrupled, and we can just multiply the original population size (m) by this factor to get the total population size after 20 days (or whatever time period we're dealing with). This gives us a general formula:
m*[2^(d/10)]
Hope this makes sense, I probably didn't explain it that great