Problem is as follows:
A bacterial population is $7000$ at time $t = 0$, and its rate of growth is $1,000 · 4^t$ bacteria per hour at time $t$ hours.
What is the population after one hour? (Round your answer to the nearest whole number.)
My approach: I'm having a hard time understanding how this involves calculus at all. It seems to me as simple as $1,000*4^(1) + 7,000 = 11,000.$ But it's obviously wrong.
Why do we need to integrate anything if we already have the rate of growth?
To find the population after 1 hour, you need to find an expression for the number of bacteria as a function of $t$. What you have is the rate of growth as a function of time.
Just as an analogy, it is the same as position $s$ and velocity $v$ as a function of time. If I provide with an initial position $s_0$, and the velocity function $v(t)=\frac{ds(t)}{dt}$, and I ask you the position of an object at $t=1$, you can't say it is $s_0+v(1)$.
In order to recover how much the position of the object has changed, based on velocity, i.e. the rate of change of position $\frac{ds(t)}{dt}$, you have to do integration on the velocity function.
So, at $t=1$, the position of the object is actually $$s(1) = s_0+\int_{t=0}^{1}v(t)dt$$
Does that make sense?