Sunday, 15 December 2013

sequences and series - Calculate Cn=sumnk=0cosleft(dfrac2kpi2n+1right) (Python being my assistant)

I'm trying to calculate the following sum: Cn=nk=0cos(2kπ2n+1)



In order to get hints, I programmed the following code in Python:






from math import *
def C(k,n):
return cos((2*k*pi)/(2*n+1))

S = 0.0
n = int(input("choose a value for n: "))

while(True):
for k in range(n+1):

S += C(k,n)
print('step ', k,' is S = ',S)
S = 0.0
print('\n\n')
n = int(input("choose a value for n: "))


The sums all end up equal to 0.5.
Wolfram Alpha agrees.




I..don't.. I tried to express the cosine as ei2kπ2n+1+ei2kπ2n+12, then extract the k as a power like so: nk=0(ei2π2n+1)k+(ei2π2n+1)k2



=12nk=0(ei2π2n+1)k+(ei2π2n+1)k



That way, if I'm correct, those two terms are each a sum of terms of a geometric series. While a 12 does appear later on as separate term, this approach seems to create more problems than it solves.



I would be grateful for any pointers :)
Thanks in advance.

No comments:

Post a Comment

real analysis - How to find limhrightarrow0fracsin(ha)h

How to find lim without lhopital rule? I know when I use lhopital I easy get $$ \lim_{h\rightarrow 0}...