SeriesCoefficient[x^m, {x, 0, p}]
This gives back the same thing. I tried Assumptions, FullSimplify etc. I keep getting back the same thing. The answer is clearly KroneckerDelta[p,m]
SeriesCoefficient[x^m, {x, 0, p}]
This gives back the same thing. I tried Assumptions, FullSimplify etc. I keep getting back the same thing. The answer is clearly KroneckerDelta[p,m]
With Assumptions you get
SeriesCoefficient[x^m, {x, 0, p},Assumptions -> Element[{p, m}, Integers]]
(* Piecewise[{{1, m == p}}, 0] *)
Reals also. which version are you using? I am using 11.2 on windows.
– Nasser
Feb 26 '18 at 10:04
m. as inSeriesCoefficient[x^4,{x,0,p}]then it givesPiecewise[{{1, p == 4}}, 0]– Nasser Feb 26 '18 at 09:51