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
Maxima combines fractions only on the top level, not recursively:
sage: 1/x + 1/x^2 + (x+1)/x (x + 1)/x + 1/x + 1/x^2 sage: (1/x + 1/x^2 + (x+1)/x).combine() (x + 2)/x + 1/x^2 sage: (1/x + (1/x+1/x^2+(x+1)/x)/x^2 + (x+1)/x).combine() (x + 2)/x + ((x + 1)/x + 1/x + 1/x^2)/x^2
Upstream: Fixed upstream, but not in a stable release.
Component: symbolics
Issue created by migration from https://trac.sagemath.org/ticket/20858
The text was updated successfully, but these errors were encountered:
This is implemented in Pynac master. Corresponding Sage Python and doctests are in the pynac/sage github branch.
Sorry, something went wrong.
Determined to be invalid/duplicate/wontfix (closing as "wontfix" as a catch-all resolution).
No branches or pull requests
Maxima combines fractions only on the top level, not recursively:
Upstream: Fixed upstream, but not in a stable release.
Component: symbolics
Issue created by migration from https://trac.sagemath.org/ticket/20858
The text was updated successfully, but these errors were encountered: