-
Notifications
You must be signed in to change notification settings - Fork 50
New issue
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
Canonicalization over simplifies division #227
Comments
I believe that this is amongst several inaccuracies during canonicalization; some of which span beyond 'Divide'. @arnog, if you get round to fixing the current behaviour of some BoxedExpression methods drawing on assumptions (in ref. to discussion around https://discord.com/channels/1115702937902121111/1115702938426413251/1319682852811575386 a few weeks back), & deciding on course of action, if any, regarding canonicalization's (current behaviour) of drawing on domains, & values of symbols (constants), I'd be happy to address this and others identified (for you, over next couple of months or whatever; understandably this potentially being a big change). I use a fork of compute-engine which slightly 'augments' it for minor personal use, & during the course of this have familiarised with the minutiae of the canonicalization/CanonicalForm process, so would be happy to hone in on any slight inaccuracies (& maybe discuss a few changes), if you'd like 👍 |
Feel like there are some points & questions bearing worth bringing up now / rather than later (have ended up tediously investigating this, since is very pertinent to what I'm working on currently):
let canonForms = ['Multiply'];
let input = ce.parse('x * 2 * y * z^1 * n/0 * {m+0}', { canonical: false }); // Assuming all symbols are _inferred_/first time to be used
//→Results in top-level 'Multiply' of form '[ "Multiply", "x", 2, "y", [ "Power", "z", 1, ], [ "Divide", "n", 0, ], [ "Add", "m", 0, ], ]'
const partialCanonical = ce.box(
['CanonicalForm', input, ...canonForms],
{ canonical: false }
).canonical;
partialCanonical.toString(); // → '2 * ~oo * m * x * y * z'
//...^i.e., sub-expressions 'z^1', 'n/0', 'm+0' have been fully canonicalized The same is not the case for 'Add', but after investigating this appears to be a consequence of the outlined bug. I would have thought that the CanonicalForm of
Would appreciate much a response for the second point, since this appears to have a lot of implications! (Worth mentioning also: beware that ASCII-string expr. serialization as it stands can be confusing if debugging canonical-form reducible expressions. E.g., serialization of '3 + 0 + 1' will serialize as '3 +0', |
Description
When computing A \div B, if A = B, it will be simplified to 1 during the canonicalization procedure. However, this introduce some edge cases dealing with NaN / infinity. If A and B are NaN / infinity and the value isn't ready till evaluation, A \div B should not return 1. For example, tan(90) / tan(90) should not return 1.
Steps to Reproduce
ce.box(["Divide", ["Tan", pi/2], ["Tan", pi/2]]).evaluate().print();
Actual Result
1
Expected Result
NaN or throw an error.
Environment
ComputeEngine: 0.27.0
The text was updated successfully, but these errors were encountered: