|
[Date Index]
[Thread Index]
[Author Index]
RE: Unexpected behavior with S
Adrian Cable wrote:
|
|In fact, it turns out that for any integer k,
|(Series[x^x,{x,0,k}]-1)/(Log[x]) = Integrate[Series[x^x,{x,0,k}]].
Now, |this result doesn't make sense, because it would imply that
|Integrate[x^x,x] = (x^x - 1)/Log[x], whereas in fact Integrate[x^x,x]
|cannot be expressed in closed form. What have I (or Mathematica, for
|that matter) done wrong here to get this obviously incorrect result? |
|
I looked into it, and it may be that Mathematica incorrectly does the
integral for certain cases of SeriesData (a series expansion with an
O[x]^n term). See below.
I may have missed something, but I would expect zero for Out[2] and
Out[3] below.
In[1]:=
poly=Series[x^x, {x,0,2}];
int=Integrate[poly, x];
In[2]:=
Normal[ D[int, x] - poly ]
Out[2]=
x/2
In[3]:=
D[ Normal[int], x ] - Normal[poly]
Out[3]=
x/2 + 1/3*x^2*Log[x]
Ted Ersek
Prev by Date:
RE: FourierTransform rect func
Next by Date:
numerical accuracy & sorting problem
Prev by thread:
RE: FourierTransform rect func
Next by thread:
numerical accuracy & sorting problem
|