I have this equation:
$$x_i = \frac{\alpha_i^2}{\sum{\alpha_j}}$$
and transformed it into vector mode this way:
$$x = \frac{\alpha^T \alpha}{1^T \alpha}$$
where x and $\alpha$ are column vectors of size $n$, and 1 is a $n$ size vector of all 1s. Given $x$, how can I calculate $\alpha$ in this situation? One constraint is that all the elements of $\alpha$ have to be between 0 and 1.
Thanks!