series.

This topic has expert replies
User avatar
Newbie | Next Rank: 10 Posts
Posts: 4
Joined: Wed Nov 30, 2011 8:27 pm

series.

by samuel minato » Wed Nov 30, 2011 8:31 pm
hi... can anyone help me to find the sum of this series?

a + a^2 + a^4 + a^8 +... + a^(2^(n-1))= Sn

so what is the formula for Sn?

Master | Next Rank: 500 Posts
Posts: 176
Joined: Thu Sep 22, 2011 5:32 am
Thanked: 5 times

by vishal.pathak » Wed Nov 30, 2011 10:41 pm
samuel minato wrote:hi... can anyone help me to find the sum of this series?

a + a^2 + a^4 + a^8 +... + a^(2^(n-1))= Sn

so what is the formula for Sn?
consider a^2 as x

so Sn = a + x + x^2 + .. + x^(n-1)

or Sn = a + GP(x)

Sum of a GP = b(r^n - 1)/(r-1) if r > 1 and b(1 - r^n)/(1 - r) if r < 1. Here r is the common ratio and b is the initial term

or Sn = a + b(r^n - 1)/(r - 1) if r > 1 and a + b(1 - r^n)/(1 - r) if r < 1

In our case b = r = a^2, n in our case is (n - 1)

so Sn = a + a^2(a^2(n-1) - 1)/(a^2 - 1) if r > 1 and a + a^2(1 - a^2(n-1))/(1 - a^2) if r < 1

User avatar
Newbie | Next Rank: 10 Posts
Posts: 4
Joined: Wed Nov 30, 2011 8:27 pm

by samuel minato » Thu Dec 01, 2011 7:41 pm
thank you...