You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 18, 2023. It is now read-only.
Debugging I found that this was being transformed into
(x+1)*y
that first part gives the correct answer -1
but solving y for x returns 0, which may be the problem of a missing pair of parenthesis in Solve.js line 1328 if(eq.group === S || eq.group === CB && eq.contains(solve_for))
in this case eq.group === S is true and eq.contains(solve_for) is false
but the whole condition is true
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
a very simple
solved for x return two answers:
x=-1 (correct) and x=0 (incorrect)
The text was updated successfully, but these errors were encountered: