On Tuesday I mentioned the following question: What is the average distance of a point in a unit disk to a fixed point on its perimeter? Let $D$ be the unit disk centered at the origin and let $(1,0)$ be the fixed point on its perimeter. Becase of the symmetry the average distance does not depend on the special choice of this point. The average distance is
$$
\frac{1}{\pi} \iint_D \sqrt{(x-1)^2+y^2}dA = \frac{1}{\pi} \int_{-1}^1 \int_{-\sqrt{1-x^2}}^{\sqrt{1-x^2}} \sqrt{(x-1)^2+y^2}dy \, dx .
$$
The double integral involved is the volume below.
In polar coordinates this volume is given by
$$
\int_{-1}^1 \int_{-\sqrt{1-x^2}}^{\sqrt{1-x^2}} \sqrt{(x-1)^2+y^2}dy \, dx = \int_{0}^{2\pi} \int_{0}^{1} \sqrt{1+r^2-2 r \cos \theta} dr \, d\theta .
$$
Both iterated integrals are difficult. However, the integral in rectangular coordinates is easier. Mathematica calculates
$$
\int_{-1}^1 \int_{-\sqrt{1-x^2}}^{\sqrt{1-x^2}} \sqrt{(x-1)^2+y^2}dy \, dx = \frac{32}{9}
$$
The Mathematica code to evaluate this integral is
Integrate[
Integrate[
((x-1)^2+y^2)^(1/2), {y,-(1-x^2)^(1/2),(1-x^2)^(1/2)},
Assumptions->And[x>-1,x<1]
],
{x,-1,1}
]