3

Find the value of $$\sum^{10}_{k=1}\left (\sin\left (\frac{2k\pi}{11} \right )+i\cos\left (\frac{2k\pi}{11}\right ) \right)$$

My approach:

Since $\cos\theta + i\sin\theta = e^{i\theta}$, we can write the given equation as:

$$\begin{align*} &i \left \{\sum^{10}_{k=1} \left (\cos\frac{2k\pi}{11} -i\sin\frac{2k\pi}{11} \right ) \right \}\\ = &i \left \{\sum^{10}_{k=1}\left (e^{-i\frac{2k\pi}{11}} \right ) \right \} \tag{i} \end{align*}$$

Solving the index part only which is $$\begin{align*} -i\frac{2k\pi}{11} &= -i\frac{2\pi}{11}(1+2+3+\cdots+10) \quad (\text{putting the values of } k)\\ &= -i\frac{2\pi}{11}( 55) \quad \left(\text{By applying sum of first $n$ natural numbers} = \frac{n(n+1)}{2}\right )\\ &=-i10\pi \end{align*}$$

Putting this value in $(\text{i})$ we get:

$e^{-i10\pi} = i\cos10\pi = i.$

But the answer is $-i$. Please suggest where I went wrong… Thanks..

Ben
  • 2,774
Sachin
  • 9,896
  • 16
  • 91
  • 182

2 Answers2

3

I am not sure where your steps came from. You are right that you are summing

$$i \sum_{k=1}^{10} e^{-i 2 \pi k/11}$$

This is a geometric series and has value

$$i\frac{e^{-i 2 \pi/11}-e^{-i 2 \pi}}{1-e^{-i 2 \pi/11}} = i\frac{e^{-i 2 \pi/11}-1}{1-e^{-i 2 \pi/11}}= -i$$

Ron Gordon
  • 138,521
  • Geometric progression with a = $e^{\frac{-i2\pi}{11}}$ and common ratio = $e^{\frac{-i2\pi}{11}}$

    Therefore, using sum of n terms of G.P $= \frac{a-r^{n}}{1-r} = [ \frac{e^{\frac{-i2\pi}{11}}{ \frac{1-e^{-i2\pi}{11}}{1-e^{-i2\pi}{11}} = -i \frac{e^{\frac{-i2\pi}{11}}$

    – Sachin Jun 06 '13 at 03:06
  • 1
    sorry for previous comment, I jut want to ask sum of G.P = $\frac{a(1-r^n)}{1-r}$ where a is first term and r is common ratio, where both of these are same here, i.e. $e^{\frac{-i2\pi}{11}}$ – Sachin Jun 06 '13 at 03:15
  • Ron Gordon Nice solution....... – juantheron Dec 15 '13 at 11:04
2

You went wrong when you turned the sum into a product (which you'd have to do in order to sum the indices like that).

Instead, multiply (i) by $1=e^{i2\pi}$ and reindex to get $$i\sum_{k=1}^{10}e^{i2\pi\left(1-\frac{k}{11}\right)}=i\sum_{k=1}^{10}e^{\frac{i2\pi}{11}},$$ then substitute $\omega=e^{\frac{i2\pi}{11}}$ to get $$i\sum_{k=1}^{10}\omega^k.$$ All that's left is to use the fact that $$\sum_{k=0}^{10}\omega^k=0.$$ (Why is this true?)

Cameron Buie
  • 102,994