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+e−i2kπ2n+12, then extract the k as a power like so: ∑nk=0(ei2π2n+1)k+(e−i2π2n+1)k2
=12∑nk=0(ei2π2n+1)k+(e−i2π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