1

Is it even do-able to take the following derivative $$\frac{d\Big(\int_{0}^t f(i,t)\ di\Big)}{dt}$$

if yes, how?

1 Answers1

2

Let $g(t)=\int_{0}^{t} f(s,t)\,ds$.

Then $$g(t+h)-g(t)= \int_{0}^{t} (f(s,t+h)-f(s,t))\,ds + \int_{t}^{t+h} f(s,t+h)\,ds$$

So $$\frac{g(t+h)-g(t)}{h} = \int_{0}^{t} \frac{f(s,t+h)-f(s,t)}{h}\,ds + \frac{1}{h}\int_{t}^{t+h} f(s,t+h)\,ds$$

If $f$ is "nice", then the limit of this as $h\to 0$ is:

$$\frac{dg}{dt} = \int_0^t \frac{\partial f}{\partial t}(s,t)\,ds + f(t,t)$$

I forget the conditions under which you can switch the limit and integral, but it is true for lots of $f$.


The second term $f(t,t)$ really requires $f$ to be continuous, at least on $t.$

Thomas Andrews
  • 177,126
  • In general we have $dg(t,y)/dt=(\partial g/\partial t)+(\partial g/\partial y)(dy/dt).$ In this case let $g(t,y)=\int_0^yf(t,i)di.$ – DanielWainfleet Sep 09 '16 at 02:00