Wednesday, May 18, 2016

arithmetic - What is the name of this summation formula?

So recently I derived a formula (obviously not the first... it already existed but that is what got me into summations) that quickly adds all the numbers from 1 to "n" However I recently derived another formula (also not the first I am guessing) that adds all the numbers from any number (not just 1) to "n" (i.e. 14+15+16+17)



Where i= Starting number and n= Ending number




$$\sum_{i}^{n} = \left ( n-i+1 \right )\ast \left ( \left ( n+i \right )/2 \right )$$



What I want to know is what is this formula called? Mine is very complicated looking as well so is there a more compact way?

No comments:

Post a Comment

analysis - Injection, making bijection

I have injection $f \colon A \rightarrow B$ and I want to get bijection. Can I just resting codomain to $f(A)$? I know that every function i...