SymbolicNumericIntegration.jl icon indicating copy to clipboard operation
SymbolicNumericIntegration.jl copied to clipboard

Incomplete or Garbage Result When trying to Integrate.

Open BrettKnoss opened this issue 1 year ago • 1 comments

Using Julia 1.10.0 on an M1 mac with BigSur, I get a garbage result for

Using Sybolics
Using SymbolicNumericIntegration

@variables x a

E(x)=(x^(3/2)/a^2)*exp(-(x/(2*a^2))) # the function provided
F(X)=integrate(E(x^2),(x,0,Inf);symbolic=true , detailed=false)
print(F(x))

should give 2a but instead gives:

Screenshot 2023-11-21 at 11 10 52 PM

BrettKnoss avatar Nov 23 '23 22:11 BrettKnoss