Replies: 1 comment 1 reply
-
It appears to work if I trim spaces out of the expressions. (%i9) /* |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Using wxMaxima 18.02.0
Not sure why (24 - 3) * (4 + 28) / 14 evaluates to (3* (32))/2 but 21 * 32 / 14 evaluates to 48. The two is tests I would think would be true. How do I get the (3* (32))/2 to evaluate to 48 as does 21 * 32 / 14 ?
(%i104) /*
(b)
(24 - 3) * (4 + 28) / 14;
(24 - 3)/14 * (4 + 28)
(3 / 2) * 32
3*16;
48;
/
(24 - 3) * (4 + 28) / 14;
21 * 32 / 14;
is ((24 - 3) * (4 + 28) / 14 = 48);
is (21 * 32 / 14 = 48);
(%o101) (3 (32))/2
(%o102) 48
(%o103) false
(%o104) true
Beta Was this translation helpful? Give feedback.
All reactions