<div id="comment:0"></div> ``` sage: (x+1).sqrt().series(x,3) 1 + 1/2*x + (-1/8)*x^2 + Order(x^3) sage: (x+1).sqrt().series(x,3).subs(x=1/x) 1/2/x - 1/8/x^2 + 1 ``` Component: **symbolics** _Issue created by migration from https://trac.sagemath.org/ticket/19997_