We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
big(3)^100
is 515377520732011331036461129765621272702107522001
then I tried Symbolics, it get different result.
using Symbolics @variables x y f=expand((x+y)^100); substitute(f,Dict(x => big(1),y=> big(2)))
the output is 82584274084965915071296193740091271394366417
strange! BTW, expand((x+y)^50) works
┆Issue is synchronized with this Trello card by Unito
The text was updated successfully, but these errors were encountered:
Seems to be integer overflow in DynamicPolynomials...
julia> @polyvar x y (x, y) julia> p = (x+y)^100
has negative coefficients.
I wish it handled this automatically because SymbolicUtils does not see the process where an integer grows too big for Int.
cc @blegat
Sorry, something went wrong.
No branches or pull requests
is 515377520732011331036461129765621272702107522001
then I tried Symbolics, it get different result.
the output is 82584274084965915071296193740091271394366417
strange!
BTW, expand((x+y)^50) works
┆Issue is synchronized with this Trello card by Unito
The text was updated successfully, but these errors were encountered: