Rusty L. answered 12/13/20
Senior Aerospace Engineer specializing in data analysis
The exponential growth equation is in the form of: y(t) = y0 * e(k*t), y0 is the initial size, t is the time, and k is the growth constant.
Using the given information we know that
y0 = 2500
tdbl = 30
y(tdbl) = 2*y0
n finding the doubling period you are finding where y(t) = 2 * y0
The longer method would be to set the equation equal to 2*2500 and solve for k:
y(t)= 5000 = 2500 * e(30 * k)
The more elegant solution is knowing that since
y(t) = 2 * y0 and y(t) = y0 * e(k*t)
then
2 * y0 = y0 * e(k*t)
or better yet
2 = e(k*t)
Solving for t gets:
k = 1/tdbl * ln(2)
Substitute the known and solved for variables into the full equation:
use k from where you solved above
y(t) = 2500 * e(k*t)
For population size at 20 minutes:
y(20) = 2500 * e(k*20)
For population size at 7hrs, you must first convert to whatever units were used for "half an hour". I have used minutes above, so 7hrs must first be converted into minutes:
7hrs = 7*60 minutes
Use k from where you solved above, use t = 7*60
y(20) = 2500 * e(k*7*60)