0

I want to calculate volume of region between the cylinders x^2+y^2=36 and x^2+z^2=36. How can I code it in mathematica? and there is also another question form like this one. enter image description here

I wanna calculate this also. Thanks.

cvgmt
  • 72,231
  • 4
  • 75
  • 133

1 Answers1

2

Try

reg = ImplicitRegion[{x^2 + y^2 <= 49, z >= 0, x + z <= 4}, {x, y, z}]
Volume[reg]
(*2 (19 Sqrt[33] + 49 \[Pi] + 98 ArcSin[4/7])*)

Hope it helps!

Ulrich Neumann
  • 53,729
  • 2
  • 23
  • 55