I want to define a function $f(x)$ as in
$\quad \quad f(x) = \sum^{n}_{i=0} c_i x^i$
as a symbolic expression. Then I'd like to do operations on it. For example, take derivatives of it with respect to any variable or collection of variables. Is there a concise way to do this, so that I get the results in symbolic form?
Again, for example, if I would like to get $ x^i$ from evaluating $ \frac{d f(x)}{dc_i}$.
D[Sum[C[k] x^k, {k, 0, 5}], x]. – J. M.'s missing motivation Aug 07 '15 at 01:50C[k]to differentiate against; onlyC[0],C[1], … and heavens, I do not jut out my posterior like that in public! – J. M.'s missing motivation Aug 07 '15 at 01:55