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

Incomplete or Garbage Result When trying to Integrate. #76

Open
BrettKnoss opened this issue Nov 23, 2023 · 1 comment
Open

Incomplete or Garbage Result When trying to Integrate. #76

BrettKnoss opened this issue Nov 23, 2023 · 1 comment
Labels
bug Something isn't working

Comments

@BrettKnoss
Copy link

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 BrettKnoss added the bug Something isn't working label Nov 23, 2023
@rzhli
Copy link

rzhli commented Jan 29, 2025

This answer may be correct, as x -> -∞, both x * exp(x) and exp(x) approaches to 0, thus the first and the third term vanishes, left only the 2.0a^2, which is the correct answer.
The problem is seems it didn't calculate or judge the limit value of the first and the third term, but directly output them.
BTW, why

@syms x::Real
limit(x * exp(x), x, -Inf)

fails as:

ERROR: MethodError: no method matching substitute(::SymbolicUtils.BasicSymbolic{Real}, ::Dict{SymbolicUtils.BasicSymbolic{Real}, SymbolicUtils.BasicSymbolic{Real}}, ::SymbolicUtils.BasicSymbolic{Real})
The function `substitute` exists, but no method is defined for this combination of argument types.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants