Sunday, October 23, 2016

Sum of a sequence which is neither arithmetic nor geometric




If you have a sequence which is not geometric or arithmetic or arithmetico–geometric. Is there any methodology to follow in order to have a formula for its sum ?



Take for example the following sequence: {0.912(ni+1)(i+n)}ni=1. It is not a geometric or an arithmetic progression. I don't see how to split it into sums of sequences which are arithmetic or geometric. Is there any hints I can get to proceed with writing a formula for this sum ?



Sn=ni=10.912(ni+1)(i+n)


Answer



I hope you’ve played with this, and noticed:
1.It’s not a sum, it’s many sums, and each sum is finite.
2.The base, 0.9 in this case, plays no particular role, so that you can use any base r.
3.The first few values are
S0=0S1=rS2=r3+r2S3=r6+r5+r3S4=r10+r9+r7+r4S5=r15+r14+r12+r9+r5Sn=rn(Sn1+1)


I see no way of getting a closed-form expression for Sn, a polynomial in r of degree 12(n2+n), and most certainly not a numerical value once you evaluate r to, in your case, r=0.9.



I do wonder where or how you came across this—without context, it seems a most unnatural problem.


No comments:

Post a Comment

analysis - Injection, making bijection

I have injection f:AB and I want to get bijection. Can I just resting codomain to f(A)? I know that every function i...