Normally, terms are ordered from least to greatest, so x+1 is displayed as 1+x
, xx+1+2x+3xx is displayed 2x+3x
x
+x
x+1
, and so on. However, x2x+xx+1 is displayed as x
2x
+x
1+x
instead of the expected x
1+x
+x
2x
. Also, Format[x^x+x^10,TraditionalForm]
gives x
10
+x
x
instead of the expected x
x
+x
10
. Is this intended behavior?