1

I will ask this question based on an example. Recently I was working on the sequences of natural numbers, where the general term of the sequence is given by a polynomial. For obtaining the partial sum of such a sequence, I know I had to find out the closed form solutions to sums like $\sum_{k=1}^{n}k$,$\sum_{k=1}^{n}k^2$,$\sum_{k=1}^{n}k^3$ and so on, for any natural power $x$. I started by solving the sum of natural numbers, which is just an arithmetic progression. The main problem I faced was with powers greater than $1$. I worked out a couple of formulae for degree $2$, but they only reduced the computation, they didn't give a closed form expression. It took my roughly four days to tell myself that I have to change my approach. Then, I applied my technique to degree $3$, and noticed that if I knew a closed form expression for degree $2$, I could calculate an expression for degree $3$ and vice-versa. Then I continued this work on degree $3$, and somehow got the expression for degree $2$. Now using this method I can work out an expression for any degree. Then I read a couple of proof techniques, one of them was the sum $$\sum_{k=1}^n{(k+1)^3-k^3}$$, which looks like a telescoping sum, but can be used to determine the solution for degree $2$. And upon looking closely, the method I came up with was just a different version of this. And it took me about a week to figure this out.

Now, I wonder if someone would have thought of this sum instantly, he would have solved it very faster, not like me who took a week. So, luck can play a game-changing role in research, can't it? But, I want to ask, as in this case, is a week taken by me too long or is it fine? And am I going the right way spending this much time on these problems?

codetalker
  • 2,419
  • Fast does not necessarily means by chance. I can also mean thanks to extended experience and knowledge of powerful tools. –  Oct 08 '16 at 09:28
  • A lot of mathematics turns out to be easier when you know the answer than before you do, often annoyingly so. Some of the things which now look easy took centuries to discover and decades to simplify. So do not worry if it takes you weeks when looking at something new to you, such as your example of discrete calculus. – Henry Oct 08 '16 at 09:36

2 Answers2

1

There is a direct way to get the Faulhaber's formulas for a given degree.

As the difference of the requested sums for two successive $n$ is a polynomial in $n$ of degree $d$, the sums must themselves be polynomials in $n$ of degree $d+1$. It is well-known that a polynomial of degree $d+1$ is obtained by the Lagrangian formula on $d+2$ points.

Let us play the game for $d=2$ and use $(0,0),$$(1,0+1),$$(2,0+1+4),$$(3,0+1+4+9)$.

$$P(x)=0\frac{(x-1)(x-2)(x-3)}{(0-1)(0-2)(0-3)}+1\frac{x(x-2)(x-3)}{1(0-2)(0-3)}+5\frac{x(x-1)(x-3)}{2(2-1)(2-3)}+14\frac{x(x-1)(x-2)}{3(3-1)(3-2)}\\=\frac{x^3}3+\frac{x^2}2+\frac{x}6.$$

The method is not very efficient in terms of operations to be performed (the Neville's algorithm can accelerate), but it relies on an available tool.

1

I would not qualify your success as lucky, but rather as experimental, that is, based on failed attempts and looking closely at examples. The only thing where you have been lucky is that your assumption there was a closed form for your sums was right (it is far from always being the case: just think of a sum like $\sum_{n=1}^k {1\over n}$).

If you look back in history, mathematicians like Leibnitz, Newton, Euler, and the like were all doing a lot of experimental mathematics, trying to find closed forms like you or more generally mathematical formulas. All of this involved a lot of computation by hand and a lof of attempts before finding the right solution.

J.-E. Pin
  • 40,163