[Mathematica] Sorting polynomial terms

Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
5 replies · 4K views
jackmell
Messages
1,806
Reaction score
54
Hi. Can someone explain to me how to sort a Series so that the terms are in increasing powers of the exponent? For example the code:

myseries = Normal[ Series[Sqrt[1 - w], {w, 0, 5}]] /. w -> 1/z

produces
[tex]1-\frac{7}{256 z^5}-\frac{5}{128 z^4}-\frac{1}{16 z^3}-\frac{1}{8 z^2}-\frac{1}{2 z}[/tex]

I would like them to be

[tex]1-\frac{1}{2z}-\frac{1}{8z^2}-\cdots[/tex]

Thanks,
Jack
 
Physics news on Phys.org
Sorry. I'm afraid I'm having some problems with this. The series is being reported by Mathematica in increasing powers of 1/z like it should and like I'd want it to be.

Thanks Hurky for suggesting expanding it around infinity which is what I'd want for the function outside the unit circle.
 
Last edited:
myseries = Normal[Series[Sqrt[1 - w], {w, 0, 5}]] /. w -> 1/z;
TraditionalForm[myseries]
 
Ok, thanks guys. TraditionalForm does what I wanted.