Partial derivative of a definite integral

63 Views Asked by At

I'm creating this algorithm (kinda machine learning) and i have a function which is defined like this: $$ V(x, y) = \int_a^b g(x,y,t) dt $$ (a and b are some constants) And then i want to calculate partial derivative of V over x and y, by using chain rule: $$ \frac{\partial V}{\partial x} = \frac{\partial V}{\partial g} \cdot \frac{\partial g}{\partial x} $$ And I'm asking how to calculate this derivative of V over g. It's probably real simple but I can't figure it out