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
For specific inputs the simplification never finishes. For example, the following code never finishes running
simplify(ysym("((0.625e-1)*(4*a^2+a^3))/(a^4)"))
while it runs fine with the alternative number formatting below (0.0625 instead of 0.625e-1)
0.0625
0.625e-1
simplify(ysym("(0.0625*(4*a^2+a^3))/(a^4)")) y: (0.0625*a+0.25)/a^2
Note that the input with 0.625e-1 was obtained from earlier calculations using Ryacas.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
For specific inputs the simplification never finishes. For example, the following code never finishes running
simplify(ysym("((0.625e-1)*(4*a^2+a^3))/(a^4)"))
while it runs fine with the alternative number formatting below (
0.0625
instead of0.625e-1
)Note that the input with
0.625e-1
was obtained from earlier calculations using Ryacas.The text was updated successfully, but these errors were encountered: