Hello,
In my book, there is an exercise:
f(x,y) is continuous over a closed region of D={(x,y)|x^2+y^2<=y,x>=0}, and f(x,y)=Sqrt[1-x^2-y^2]-8/Pi*Integrate[f(x,y),dy,dx]
In Mathematica
Solve[f[x, y] ==
Sqrt[1 - x^2 - y^2] -
8/Pi*Integrate[
f[x, y], {x, 0, 1/2}, {y, -Sqrt[1/4 - x^2] + 1/2,
Sqrt[1/4 - x^2] + 1/2}], f[x, y]] // Simplify
produces
{{f[x, y] -> 1/2 Sqrt[1 - x^2 - y^2]}}
But the right answer should be
Sqrt[1-x^2-y^2]+8/9/Pi-2/3
So, what the reason for Mathematica to produce that answer?