How do multiple integrals work?
When I try to mentally calculate a double, triple, or quadruple integral, my answers are always different from what my calculator presents.
I can calculate definite integrals easily int_b^a f(c)dx = (a)(c) - (b)(c)
but how do other integrals work and how are they calculated?
When I try to mentally calculate a double, triple, or quadruple integral, my answers are always different from what my calculator presents.
I can calculate definite integrals easily
but how do other integrals work and how are they calculated?
1 Answer
It's a bit like the way partial derivatives work where you treat other variables as constant and perform the derivative against a particular variable.
So for Partial derivatives:
Eg.
For a traditional single definite integral we are summing up infinitesimal vertical bars to find an area.
For a double integral we have something like
int int _R f(x,y) dA
where
To evaluate a double integral we do it in stages, starting from the inside and working out, using our knowledge of the methods for single integrals. The easiest kind of region
E.g. If
int int_R f(x,y) dA = int_1^2 int_0^3 (1+8xy) dx dy
Or to be more explicitly;
int int_R f(x,y) dA = int_(y=1)^(y=2) int_(x=0)^(x=3) (1+8xy) dx dy
We evaluate the "inner integral" by treating
int int_R f(x,y) dA = int_(y=1)^(y=2) {int_(x=0)^(x=3) underbrace((1+8xy) dx)_("treat y as constant")} dy
Hope that helps. Feel free to ask for further help or examples.