Monday, June 4, 2018

sequences and series - Deriving Sum of a Geometric Progression

I was trying to derive the sum of a geometric progression: n1i=0ari


This is equal to:
ar0+ar1+ar2++arn1

Factorising with a, I get:
an1i=0ri



Assuming r is 6 for example, I get:

a[r0(1+r(1+r(1+r(1+r(1+r)))))]


The number of (1+r)s inside is equal to n1.



I have no idea how to expand the above equation, and simplify it.



Can someone please give me a step-by-step expansion and simplification of the equation. Something a 9th grader would understand.



EDIT
In general, I don't understand how to expand nested braces(recursion isn't the most intuitive thing for me) so a very simple explanation of how this is done will be much appreciated.

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