[Math] Changing order of integration

integrationmultivariable-calculus

Change the order of integration of the following and evaluate the integral:

$$\int_{-1}^{0} \int_{-1}^y y\sqrt{x^2 + y^2} \, dx \, dy$$

I know I have to draw out the graph but im having a hard time with that… any pointers?

Best Answer

When changing the order of integration, it is very convenient to implement the integration boundary via an Iverson bracket (a method promoted by Knuth for sums), so $$\begin{align*}\int_{-1}^{0} \!dy \int_{-1}^{y} \!dx\, f(x,y) &= \int dy\int_{-1}^y\! dx\,[-1\leq y \leq 0]\,f(x,y)\\ &= \iint \!dx\,dy\, [-1\leq x\leq y\leq0]\,f(x,y)\end{align*}$$

In the second step, one can then go back and implement the integration boundaries again without the bracket. This time, however, the integration boundaries of $y$ are used first $$\begin{align*}\iint \!dx\,dy\, [-1\leq x\leq y\leq0]f(x,y) &= \int dx \int_x^{0} \!dy\, [-1\leq x \leq 0]\,f(x,y)\\ &= \int_{-1}^0\!dx\int_x^{0}\!dy\,f(x,y)\end{align*}$$

In conclusion, we have $$\int_{-1}^{0} \!dy \int_{-1}^{y} \!dx\, f(x,y) = \int_{-1}^0\!dx\int_x^{0}\!dy\,f(x,y).$$

Related Question