Is there any built-in way to print the highest power of polynomial first and followed by the rest?
In[1]:= Normal[Series[Log[1-x],{x,0,5}]]
Out[1]:=-x - x^2/2 - x^3/3 - x^4/4 - x^5/5
the expected output is
- x^5/5 - x^4/4 - x^3/3 - x^2/2 - x
basically reversing the order.
In addition, I want to save the expression in a text or .m file for further manipulation. TraditionalForm does not serve this purpose.
Normal[Series[Log[1 - x], {x, 0, 5}]] // TraditionalForm– Nasser Oct 04 '19 at 08:25PolynomialForm– Michael E2 Oct 04 '19 at 10:37