Problem:
Let $z_1, z_2, ..., z_n$ be complex numbers with a modulus of $1$.
Given the condition $S = \sum_{j=1}^{n} z_j = 0$. Please compute all possible values for $z_j$.
My idea:
Assume $$z_j = e^{i\theta_j},\quad \theta_j \in [0,2\pi),\quad j=1,...,n$$ It can be calculated that $$|S|^2 = \left( \sum_{j=1}^{n}\cos\theta_j \right)^2 + \left( \sum_{j=1}^{n}\sin\theta_j \right)^2 = n + \sum_{1 \le j < k \le n} 2 \cos({\theta_j - \theta_k})$$ According to this formula, when $n=2$, we have $2 + 2\cos(\theta_1 - \theta_2) = 0$, so $|\theta_1 - \theta_2| = \pi$. This completes the $n=2$ case.
When n is larger, I don't know how to handle it.
I want to handle arbitrary $n$ cases. Thanks for any suggestions. Recommendation on relevant literature is also appreciated.