I'm dealing with finite sums of infinite series. Each of the infinite series possesses a different starting index, i.e. each of the series begins at n = 0, n = 1, or n = 2. As a result, it's important to keep track of the indices for each of the series.
In addition, Mathematica cannot evaluate the series, because it's too complicated and undesirable for what's to be accomplished. I've only written the series in this manner to allow for efficient symbolic manipulation.
The problem is that Mathematica takes a long time "trying" to evaluate each of the series. I've tried Hold, HoldAll, Unevaluated, and HoldForm. HoldForm seems like the correct choice, but there's a problem. Although I don't want to evaluate the series themselves, I'd still like to be able to perform operations on the series, such as differentiation.
So, does anyone know of a way to differentiate a series without evaluating the series itself?
I'm new to Mathematica, so the answer might be simple. Thanks for your time.
\begin{equation} \sum _{n=0}^N f_n(x,y,z) \end{equation}
In my problem, however, $f_n$ takes the form:
\begin{equation}
– Rob Jul 04 '12 at 20:26SeriesorSum? – rcollyer Jul 04 '12 at 20:30$for inline formulas and$$for\[ \]. – rcollyer Jul 04 '12 at 20:32As I attempted to write before, the function $f_n$ is a product of other functions of (x,y,z), some of which are specified (i.e. by a specified function, I mean something like $x^2$) and some of which are left unspecified (i.e. by which I mean something like $g_n(y)$).
– Rob Jul 04 '12 at 20:37Deferto prevent evaluation of the sum:Sum[Suscript[f,n],{n,0,Infinity}]. – rcollyer Jul 04 '12 at 20:46