Thursday, 22 October 2015

number theory - How to find sum of powers from 1 to r



Let say I have two numbers n power r. How can we find sums of all powers. For example if n = 3 and r 3 then we can calculate manually like this



3 ^ 3 = 27
3 ^ 2 = 9
3 ^ 1 = 3

Sum = 39



Can we formulate this? I mean can we create a function which takes n and r and returns this sum?



I have background in programming but don't know maths :-) . I know using any programming language we can write a function which can calculate sum using loops or recursion but is there any other solution so I find sum without loops or recursion.



Thanks in advance


Answer



As I said in the comment, it is called geometric series:




a0+a1+a2++an=nk=0ak=an+11a1



So in your case we do not begin witht the exponent 0 but with 1 so we just substract a0=1:



a1+a2+a3++an=an+11a11



In your concrete case a=3 and n=3:



31+32+33=341311=39




You can derive it as follows:



Let S=a0+a1+an. Therefore



aS=a1+a2+an+1.



So (a1)S=aSS=an+1a0=an+11 results when dividing by (a1) in:



S=an+11a1


No comments:

Post a Comment

real analysis - How to find limhrightarrow0fracsin(ha)h

How to find lim without lhopital rule? I know when I use lhopital I easy get $$ \lim_{h\rightarrow 0}...