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=n∑k=0ak=an+1−1a−1
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+1−1a−1−1
In your concrete case a=3 and n=3:
31+32+33=34−13−1−1=39
You can derive it as follows:
Let S=a0+a1+…an. Therefore
a⋅S=a1+a2…+an+1.
So (a−1)S=aS−S=an+1−a0=an+1−1 results when dividing by (a−1) in:
S=an+1−1a−1
No comments:
Post a Comment