Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Integrate e^{0.5x^2} #88

Open
MathNog opened this issue Apr 24, 2024 · 0 comments
Open

Integrate e^{0.5x^2} #88

MathNog opened this issue Apr 24, 2024 · 0 comments
Labels
question Further information is requested

Comments

@MathNog
Copy link

MathNog commented Apr 24, 2024

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 MathNog added the question Further information is requested label Apr 24, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
question Further information is requested
Projects
None yet
Development

No branches or pull requests

1 participant