For an assignment I have to use numerical integration technique to calculate volume with cylindrical surface
$\Omega = \{(x−0.5)^2 +(y−0.5)^2 \leq 0.25\}$ and height is $\ln(x+y)$
I have used Monte Carlo technique to calculate the volume. But to be sure the answer is correct I want to check the exact volume using Maple. I have been searching online on how to do it but couldn't find it.
So the question is, is there a way to calculate exact volume using Maple for that object or integral like $$ \iint_\Omega \lvert \ln(x+y)\rvert \, \mathrm dx \, \mathrm dy $$ with $$ \Omega = \{(x-0.5) ^2 + (y-0.5)^2 \leq 0.25\} $$


Note that this answer does not contain an exact solution
For a general solution, you can use indicator functions, implemented in Maple with $1_A$ =
piecewise(A,1)to integrate over your set $\Omega$.The integral bounds form a cartesian square $(x,y)\in [a,b]^2$. Note that the bounds must cover $\Omega$ entirely. As $\omega$ in your case is a disk with center $(1/2,1/2)$ and radius $1/4$ then $a = 0$ and $b = 1$ will suffice. Since Maple was not able to find an exact solution I used
evalfto get a numerical approximation. Maple approximates it to be $\approx 0.2550197391$ in agreement with your MC method.