Description
Mathics3 currently sorts symbols in products from left to right, while WMA goes from right to left in monomial products.
For example, consider Order[b c, a d].
Because $d$ is higher in the variable hierarchy than $c$, $ad$ is treated as having a "higher variable degree" than $bc$, placing $ad$ later in canonical polynomial order (e.g., $b c + a d$).
How to Reproduce and Output Given
In[1]:= Order[b c, a d]
Out[1]= -1
Expected behavior
In[1]:= Order[b c, a d]
Out[1]= 1
Description
Mathics3 currently sorts symbols in products from left to right, while WMA goes from right to left in monomial products.
For example, consider
Order[b c, a d].Because$d$ is higher in the variable hierarchy than $c$ , $ad$ is treated as having a "higher variable degree" than $bc$ , placing $ad$ later in canonical polynomial order (e.g., $b c + a d$ ).
How to Reproduce and Output Given
Expected behavior