Euler's use of infinitesimal calculus

401 Views Asked by At

Can anyone explain (12) in this article. Why can we write $f(n)$ as a sum of derivatives: $$f(n) = \frac{ds}{dn} - \frac{1}{2!}\frac{d^2s}{dn^2} + \frac{1}{3!}\frac{d^3s}{dn^3} - \cdots$$ where $s(n) = \sum_{i = 0}^n f(i)$.

1

There are 1 best solutions below

1
On BEST ANSWER

It looks like $s$ isn't defined by the sum, but is instead meant to be an analytic function that has those values for natural number arguments.

The right hand side is the Taylor series for $s(x)$ centered at $n$, and evaluated at $n-1$:

$$ s(x) = \sum_{i=0}^{\infty} s^{(i)}(n) \frac{(x-n)^i}{n!} $$ $$ s(n-1) = s(n) + \sum_{i=1}^{\infty} (-1)^i s^{(i)}(n) \frac{1}{n!} $$

where $f^{(k)}$ means the $k$-th derivative of $f$.