I have some measurements $M_1, M_2, M_3$ and some parameters $a,b,c$ I want to estimate. They are related as follows:
$$\begin{bmatrix}M_1 \\ M_2 \\ M_3\end{bmatrix} = \begin{bmatrix}1 & -1 & 0 \\ 0 & 1 & -1 \\ -1 & 0 & 1\end{bmatrix} \begin{bmatrix}a \\ b \\ c\end{bmatrix} $$
where the 3x3 matrix is singular (no information about $a+b+c$), but I also know that $a \approx 1$ and $b \approx 0$ and $c \approx 0$, so it seems like I would want to minimize $(a-1)^2 + b^2 + c^2$.
How would I solve for $a,b,c$ in a least-squares sense, given this information? I know how to use least-squares estimates without constraints, in an overdetermined system, but not sure what to do here.