I need to prove that $$I = \int^{\infty}_{-\infty}u(x,y) \,dy$$ is independent of $x$ and find its value, where $$u(x,y) = \frac{1}{2\pi}\exp\left(+x^2/2-y^2/2\right)K_0\left(\sqrt{(x-y)^2+(-x^2/2+y^2/2)^2}\right)$$
and $K_0$ is the modified Bessel function of the second kind with order zero. Evaluating the integral numerically with Mathematica for different values of $x$ gives the result of $2.38$, but I want to know if it is possible to show analytically.
Increasing $x$ results in an increase of the exponential term on the left, but it also then strongly increases the argument of modified Bessel function, thus reducing its value.
To show that integral is independant of $x$, it is sufficient to show that $\int^{\infty}_{-\infty}\frac{\, d}{\, dx}u(x,y) = 0$ but any differentiation looks more and more ugly.
EDIT Mathematica test:
x = 100
NIntegrate[
(1/(2 Pi))* Exp[x*x/2 - y*y/2] BesselK[0,
Sqrt[(x - y)*(x - y) + (x*x/2 - y*y/2)*(x*x/2 -
y*y/2 )]], {y, -Infinity, x, Infinity}, MaxRecursion -> 22]
This gives an answer of $0.378936$ independent of the choice of $x$. In the earlier calculation I missed the factor $\frac{1}{2\pi}$.