2

For the tiple integral $$\iiint_D (z^2+z) \,dx\,dy\,dz$$ over the domain $D:x^2+y^2+z^2\leq4,\quad z^2\leq x^2+y^2$

The textbook states that by symmetry of the domain the integral simplifies to $$\iiint_D z^2 \,dx\,dy\,dz.$$ How exactly do they arrive at that conclusion?

Eiraus
  • 349
  • 1
  • 3
  • 15

2 Answers2

3

This is because $$ \iiint_D z\,dV = 0 $$ Why is that? If $(a,b,c)$ is in $D$, then so is $(a,b,-c)$ (both inequalities have $z^2$ in them). So each point $P$ in $D$ has a mirror-image point $P'$ on the opposite side of the $xy$-plane. If $f(x,y,z) = z$, then $f(P') = -f(P)$. Accumulating all the points $P$ above the $xy$-plane, their $f$-values cancel in pairs with their corresponding points $P'$.

3

The domain is symmetric about $z$, and the function $f(x,y,z)=z$ is odd, meaning that $$ f(x,y,-z)=-f(x,y,z)=-z $$ Therefore $$ \iiint_D z \; dV = 0 $$

To understand why this happens, consider the $1$ dimensional case: do you see why $$ \int_{-a}^{a} x\; dx = 0 \; ? $$

Kuifje
  • 9,584
  • Thanks I think I get it: In your last example the area from 0 to a and from -a to zero cancel each other out? – Eiraus Mar 06 '17 at 15:51
  • Yes that is exactly it! @Matthew Leingang explains it well in the other answer ;) – Kuifje Mar 06 '17 at 16:09