I am given a signal $x[n]$ that have the following properties:
- Real and odd
- Period of $N=8$ and Fourier coefficients $a_k$
- $a_9 = 6j$
- The sum of $|x[n]|^2$ from $n=0$ to $n=7$ is $576$.
I want to solve for $a_k$ and $x[n]$. What I have are the following: $$x[n] = \sum_{k=0}^{N-1}\alpha_k e^{jkn(\frac{2\pi}{N})}$$ $$a_k = \frac{1}{N}\sum_{n=0}^{N-1}x[n]e^{-jkn(\frac{2\pi}{N})}$$ $$\sum_{n=0}^{7}|x[n]|^2 = 576$$ I expanded the series for $a_k$ and ended up with something that looks like this: $$a_k = \frac{1}{8}(x[0] + x[1]e^{-jk(\frac{2\pi}{8})} + x[2]e^{-jk(\frac{2\pi}{4})}+..)$$ However, before I proceed any further, I know there must be a technique I should be using to simplify this problem, especially using the fact that this is an odd function. However, an odd function will simplify terms be helping me cancel out terms on either side of the number line. However, in this case, since I'm only summing up on the positive side, I'm not sure how to simplify this equation. How should I proceed and how do I best use the extra information given?