To solve this problem, start by writing out the first few terms of the sequence - let's translate the information in the problem. "triples every hour" means that each hour, the number of bacteria increases by a multiple of 3. Since the bacteria are unaware of time, each new number becomes the starting point for the next number
A table of t (hours) vs n (number) helps
t n
0 600
1 1800 = 600 *3
2 5400 = 1800 * 3 = (600*3)*3 = 600 * 32
3 16200 = 5400 * 3 = 600 * 33
....and so on
As you can see, n(t) = 600 * 3t, where t is in hours
ONce you have the expression, go back and verify that it works:
when t = 0, 3t = 1, n(0) = 600
for t = 2 , n(2) = 600 * 32 = 600 * 9 = 5400
Now that the equation has been found and verified, you can use it to make predictions.
The rate of change of a function is the first derivative of the function, in this case dn/dt
dn/dt = 600 * ∂(3t) ⁄ ∂t
General Rule:
d (ax) ⁄ dx = ax ln(a)
==> dn/dt = 600 * (3t * ln(3))
for t = 1.5, n'(t=1.5) = 600 * (31.5) * ln 3 = 3425 bacteria per hour CHECK: 1.5 is between 1 and 2 and 3425 is between 1800 and 5400.