How cam I simplify
Sum[UnitStep[-1 + n]/Sqrt[n!], {n, 0, ∞}]
to
$$\sum _{n=1}^{\infty } \frac{1}{\sqrt{n!}}$$
and then to
$$\sum _{n=0}^{\infty } \frac{1}{\sqrt{(n+1)!}}$$
I tried Simplify and FullSimplify, but neither of them worked.
|
How cam I simplify
to $$\sum _{n=1}^{\infty } \frac{1}{\sqrt{n!}}$$ and then to $$\sum _{n=0}^{\infty } \frac{1}{\sqrt{(n+1)!}}$$ I tried |
||||
|
Here is a brute force way, hope it will help.
$$\sum _{n=0}^{\infty } \frac{1}{\sqrt{(1+n)!}}$$ |
|||
|
|
Sumwill either evaluates to something and if not, then it remain as is. i.e if M can't evaluate it, then it will leave it as is. It will not look inside it to see it it can simplify the internal for specific index. No point. The sum does not evaluate. SinceSum[1/Sqrt[n!], {n, 1, Infinity]}]does not evaluate. I tried this on Maple and Maxima, and they both do the same as M. So, this will require special function to handle this specific case. – Nasser Mar 3 at 10:16PiecewiseExpandonUnitStep[-1 + n]/Sqrt[n!]– Silvia Mar 4 at 0:33