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
From https://groups.google.com/forum/?fromgroups=#!topic/sage-devel/d25Dkwc0loA
sage: f = x*(x+1) sage: g = x^2 + x sage: bool(f == g) True sage: bool([f] == [g]) True sage: bool(matrix([f]) == matrix([g])) False
Component: symbolics
Keywords: equality, simplify, matrix
Issue created by migration from https://trac.sagemath.org/ticket/14277
The text was updated successfully, but these errors were encountered:
Also,
sage: matrix([f]) - matrix([g]) [(x + 1)*x - x^2 - x]
but the fix for this might be different.
Sorry, something went wrong.
burcin
No branches or pull requests
From https://groups.google.com/forum/?fromgroups=#!topic/sage-devel/d25Dkwc0loA
Component: symbolics
Keywords: equality, simplify, matrix
Issue created by migration from https://trac.sagemath.org/ticket/14277
The text was updated successfully, but these errors were encountered: