I want to expand the argument of Exp[ Sqrt[1+x]/x ] in powers of x around x = 0.
Series[ Exp[ Sqrt[1+x]/x ] ,{x,0,3}]
does not work as there is an essential singularity.
The next best thing is to do
Exp[ Series[ Sqrt[1+x]/x ,{x,0,3}] ]
But I want to do this outside the Exp function as there may be many such terms all added up...
Exp[Sqrt[1 + x]/x] /. Exp[u_] :> Exp[Series[u, {x, 0, 3}]]– Michael E2 May 20 '17 at 13:12Exp[ Sqrt[1+x]/x ]. – Michael E2 May 21 '17 at 14:08x^3ofExp[Sqrt[1 + x]/x]that you would expect to see? – Michael E2 May 22 '17 at 17:00