Tuesday, September 19, 2017

sequences and series - How Can I Represent These Progressions in Sigma Notation?



I would like to represent the following finite progressions in sigma notation:





  1. Finding the nth term of a geometric progression: an=a1(rn1), where a1 is the first time and r is the common ratio


  2. The sum of a geometric progression: Sn=a11rn1r


  3. Determining the nth term of an arithmetic progression:an=a1+(n1)d,
      where d is the common difference

  4. And finally, the sum of an arithmetic progression: Sn=n2(2a1+(n1)d)


Answer



You wish to expression the sum of the first n terms of an geometric progression and the sum of the first n terms of an arithmetic progression in summation notation.




Sum of a geometric progression: If the initial term is a1 and the common ratio is r, then the kth term of the geometric progression is ak=a1rk1. Hence, the sum of the first n terms of the geometric progression is
Sn=nk=1a1rk1={a11rn1rif r1na1if r=1
Notice that the index of the variable must be different from the index of the upper limit. Otherwise, all n terms in the sum would be equal to a1rn1.



Sum of an arithmetic progression: If the initial term is a1 and the common difference is d, then the kth term of the arithmetic progression is ak=a1+(k1)d. Hence, the sum of the first n terms of the arithmetic progression is

Sn=nk=1[a1+(k1)d]=n2[2a1+(n1)d]=n(a1+an)2


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...