I'm trying to integrate this function with mathematica 9
NIntegrate[
c4[u, v, w] Cos[ 2*w] , {u, -\[Infinity],
0}, {v, -\[Infinity], u}, {w, -\[Infinity], v]
with
c4[x_, y_, z_] :=
E^(-((x^2 + y^2 + z^2)/
4 )) (E^((x y)/2 ) + E^((x z)/2 ) + E^((y z)/2));
I have this error:
NIntegrate::ncvb: NIntegrate failed to converge to prescribed accuracy after 27 recursive bisections in v near {u,v,w} = {0.0000318293,2.37147*10^-13,0.0000318293}. NIntegrate obtained -6.039603923653673*10^7640189323695 and 6.039603923653673`15.954589770191005*^7640189323695 for the integral and error estimates. >>
NIntegrate tries to evaluate the integrand outside the integration region. How is it possible?
