Is there a way to make Mathematica do a series of the form:
Series[ E^{\beta}$ , {x, 0, 1}]
I have noticed that
Series[E^x^(1/2), {x, 0, 1}]
work but
Series[E^x^(.5), {x, 0, 1}]
does not. Thanks for the help.
EDIT: I have tried things like
Assuming[{\bet>0},Series[ E^{\beta}$ , {x, 0, 1}]]
which hasn't helped.
Rationalizethe expression, e.g.,Series[E^x^(.5) // Rationalize[#,0]&, {x, 0, 1}]– Bob Hanlon Jul 02 '14 at 18:40Series[Exp[x^beta],{x,0,1}]to deliver. I am looking for a response along the lines of "something + somethingElse*x^somepower + O[x]^someOtherPower" but with the various somethings made explicit. – Daniel Lichtblau Jul 02 '14 at 19:11SeriesData, the encapsulated result of a (proper)Seriesexpansion in Mathematica, only supports explicit Puisiux series. So exponents must be explicit rational numbers. This is motivated by a number of considerations such as need to do manipulations on them, need for an explicit ordering of terms, and the like. – Daniel Lichtblau Jul 02 '14 at 19:49