1

I am stuck with this problem:

$$\int \int_Q e^{-x-y}dA$$ where Q is the first quadrant of the XY plane.

I then rewrite it as $\int_0^ \infty \int_0 ^\infty e^{-x-y}dxdy$. So far so good. If we start with the inner integral we get $\int_0 ^\infty e^{-x-y}dx = -[e^{u}]_0^{-\infty}=-1$. Then when we get back to the double integral, we now got $\int_0^ \infty-1dy=[-y]_0^\infty=-\infty$. However the correct answer is 1. What am I doing wrong? I have watched multiple similar problems and I understand the concepts overall but this particular one is different.

J. Doe
  • 281

3 Answers3

5

You have $$\int_{0}^{\infty}e^{-x-y}dx=\int_{0}^{\infty}e^{-x}e^{-y}dx$$ $$=e^{-y}\big[-e^{-x}\big]_{x=0}^{x\rightarrow\infty}=e^{-y}[-0+1]=e^{-y}.$$

Alessio K
  • 10,599
  • Ohhh, I put my u=-x-y when doing u substitution. I see why I got the wrong answer, however how could I have prevented this from happening? Is it even possible to do u substitution in my case? – J. Doe Oct 05 '20 at 09:25
  • 1
    If $u=-x-y$ then at $x=0$ we have $u=-y$, so both integration limits change. Thus we have $$\int_{-y}^{-\infty}-e^{u}du=[-e^{u}]_{u=-y}^{u\rightarrow -\infty}=[-0+e^{-y}]=e^{-y}.$$ – Alessio K Oct 05 '20 at 09:30
  • ohh I see, I really need to pay better attention to the small details. Thank you for your help. This was invaluable :) – J. Doe Oct 05 '20 at 09:32
2

Hint:$$\int\limits_0^ \infty \int\limits_0 ^\infty e^{-x-y}dxdy=\left(\int\limits_0 ^\infty e^{-x}dx\right)^2$$

zkutch
  • 13,410
2

$$\int_0^{\infty}\int_0^{\infty}e^{-x-y}dxdy=\int_0^{\infty}e^{-x}dx\times\int_0^{\infty}e^{-y}dy=1\times 1$$

tommik
  • 32,733
  • 4
  • 15
  • 34