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

How to make SymbolicNumericIntegration.integrate not convert exp(1) to floating point? #21

Open
nasser1 opened this issue Aug 29, 2022 · 0 comments

Comments

@nasser1
Copy link

nasser1 commented Aug 29, 2022

reference

https://discourse.julialang.org/t/basic-question-on-julia-symbolic-how-to-keep-exp-1-as-is-and-not-convert-it-to-a-floating-point-number/86476

Using this code

using Symbolics
using SymbolicNumericIntegration
using SymbolicUtils

@syms x
expr=x*Symbolics.Term(exp,[1])
julia> SymbolicNumericIntegration.integrate(expr,x)
(1.3591409142295223(x^2), 0, 2.220446049250313e-16)

As can be seen, exp(1) before the call remained exp(1) because of using Symbolics.Term(exp,[1]) to prevent evaluation.

But inside/during the call SymbolicNumericIntegration.integrate it was converted at one point to floating point.

Is there a way to keep it as exp(1) so the result should be exp(1)*x^2/2 ?

Julia 1.8 on Linux

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant