Hello, I get strange behaviour on the following function. It persists when changing constants, but is not present for very simple functions, so any hint for a limit would be appreciated.
Here comes the important and irritating part: $f4 = f2(a=3,N=0.7); f4$ (e^(-0.714285714285714(y - 3)^2) + e^(-0.714285714285714(y + 3)^2))*y^2 $Z = integral(f4,y,-100,100); Z.n(digits=5)$ 9.7000 $F = integrate(f4,y); H = F(y=10) - F(y=-10); H.n(digits=5)$ -1.1562e-14
I guess it is not important, but the part mentioned above is prepared with $f1 = exp(-1/2(y-a)^2/N)+exp(-1/2(y+a)^2/N); f1$ e^(-1/2(a - y)^2/N) + e^(-1/2(a + y)^2/N) $f2 = f1y^2; f2$ (e^(-1/2(a - y)^2/N) + e^(-1/2(a + y)^2/N))y^2