I am trying to evaluate an integral that has two symbolic parameters, $x$ and $y$ in it
$$-\int_0^1\frac{\log (u)}{\sqrt{1-u^2}} \exp \left(\frac{2 u}{u+1}xy-\frac{u^2 (x-y)^2}{1-u^2}\right) \; du$$
Of course an analytic formula would be desirable, but I can't find it neither by hand nor with Mathematica. Therefore, I've tried the following numerical evaluation
NIntegrate[- Log[u]/Sqrt[1 - u^2]Exp[(2 u)/(1 + u) xy - u^2/(1 - u^2) (x - y)^2], {u, 0, 1}]
This idea makes sense to me since NIntegrate can find the result for specific $x$ and $y$ values, so there should be a formula that I should find. I'm getting the error
NIntegrate::inumr: The integrand -((E^((2 u xy)/(1+u)-(u^2 (x-y)^2)/(1-Power[<<2>>])) Log[u])/Sqrt[1-u^2]) has evaluated to non-numerical values for all sampling points in the region with boundaries {{0,1}}.
Then, I tried to look up what might cause the issue, and I ended up at this 9 year old question, describing exactly the same problem. Now, it looks like the problem was solved there with comments, but as it often happens with very old questions, the link is broken, and the solution is not explained in comments.
Could someone point me to the right direction on why NIntegrate is not able to handle symbolic parameters, and also on how to solve this problem using a more recent version of Mathematica (maybe the solution had changed in the last 9 years)?


aa typo? – Ulrich Neumann Feb 16 '22 at 09:35NIntegratecannot handle symbolic parameters, despite this being documented and, to be blunt, fairly obvious. What method might it use to give a symbolic result thatIntegratecannot provide? – Daniel Lichtblau Feb 16 '22 at 13:44{x, y}? – Michael E2 Feb 16 '22 at 15:02