Given matrix $A \in \mathbb{R}^{3\times 4}$ and vector $b \in \mathbb{R}^3$, I have the following optimization problem in $w \in \mathbb{R}^4$
\begin{equation*} \min_{w \in \Delta}\frac{1}{2}\lVert Aw - b\rVert_2^2 \end{equation*}
where
$$\Delta := \left\{ w \in \mathbb{R}^4 \mid w \geq 0, \sum_{i=1}^4 w_i = 1 \right\}$$
Could you please help me solve this problem? Is there a closed form solution to this problem?
Motivation
This optimization problem arises as a part of computer vision pipeline and is mainly used to perform co-ordinate transformation. I am trying to process as many frames per second as possible. Having a closed form solution instead of a numerical one would reduce the computation time significantly, in my humble opinion. For more information, see this question.