1

I'd like to calculate this integral

$$ \int_E y\ dydz $$ where $E = \{ (x,y,z) \in R^3 : z^2+6 < y^2 < 5z \}$

By hand i've got $\frac{1}{12}$ but i'm not sure, and i'd like to verify this integral and others.

I tried using ParametricRegion

ParametricRegion[{{y, z}, 6 + z^2 < y^2 < 5 z}]
Integrate[y, {z, y} \[Element] Region]

The result is very strange

(52 Sqrt[2/5])/3 - 14 Sqrt[3/5]
apt45
  • 1,648
  • 9
  • 14

1 Answers1

2

The way you wrote it it obviously vanishes, since all the conditions are on $y^2$ while the integrand is $y$ (so whatever the $y>0$ bit contributes is cancelled by the $y<0$ bit).

If you meant for $y>0$ to be true, then eg

Integrate[y*Boole[z^2 + 6 < y^2] 
    Boole[y^2 < 5 z] Boole[0 < y], {y, -\[Infinity], \[Infinity]}, {z, -\[Infinity], \[Infinity]}]

give $1/12$.

But this sort of thing breaks down the moment you increase complexity.

acl
  • 19,834
  • 3
  • 66
  • 91