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

Integrate e^{0.5x^2}

Open MathNog opened this issue 1 year ago • 0 comments

I am trying to integrate an exp function without sucess, as follows:

using Symbolics, SymbolicNumericIntegration
@variables x
integrate(exp(0.5*x^2), x)

Which returns (0, exp(0.5(x^2)), Inf).

However, when I try to integrate a similar function, the package works fine:

using Symbolics, SymbolicNumericIntegration
@variables x
integrate(exp(x^2), x)

Which returns (0.7071067811865478SymbolicNumericIntegration.Erfi(x), 0, 1.958577713602137e-12).

Is this type of function not supported in the package, or is there something I'm doing wrong?

MathNog avatar Apr 24 '24 19:04 MathNog