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
One idea is to transform a formula into using a single symbol, e.g.:
x + x => 2 * x x * x => x^2
It is easy to find the inverses inv(mul(2)) and inv((^ 2)).
inv(mul(2))
inv((^ 2))
Maybe there could be a command to transform a formula into a form which is easily invertible.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
One idea is to transform a formula into using a single symbol, e.g.:
It is easy to find the inverses
inv(mul(2))
andinv((^ 2))
.Maybe there could be a command to transform a formula into a form which is easily invertible.
The text was updated successfully, but these errors were encountered: