Mathematica evaluates Sum[((n - y - 1)*(n - y)^2*n^y)/y!, {y, 0, n - 2}] as -2 e^n n. This should not be a negative value. What am I doing wrong?
Tell me more
×
Mathematica Stack Exchange is a question and answer site for
users of Mathematica. It's 100% free, no registration required.
|
This is apparently a problem of version 8 where I get the same. In version 9.0.1 I get
or, with nicer formatting,
This can be reduced with
to
or, in
|
|||||||||||
|


(1/(n! Gamma[ n]))(-n! (5 n^n + E^n (1 + 4 n) Gamma[n] - E^n Gamma[n, n] - 2 E^n Gamma[1 + n, n]) + n^n Gamma[n] HypergeometricPFQ[{2, 2, 2}, {1, 1, 1 + n}, n]). – Sjoerd C. de Vries Mar 11 at 22:34n-2ton-1(which introduces a zero into the sum, leaving it unaltered) MMA 8 obtains(1/((1 + n)! Gamma[ 2 + n]))n ((1 + n)! (n^n (1 + 2 n) - E^n Gamma[2 + n] - E^n Gamma[2 + n, n]) + n^n Gamma[2 + n] HypergeometricPFQ[{2, 2, 2}, {1, 1, 2 + n}, n])--which numerical tables show is correct. Also, if the fullSumis involved within a more complex expression, it might get evaluated correctly. – whuber Mar 11 at 22:39