Consider the following Least Square Minimization problem:$min_{x \in \mathbb C^3} |x_1 +x_3-3|^2+|x_2 -x_3|^2+|x_1+x_3-4|^2$ Find the pseudo-inverse of the matrix $A=\begin{bmatrix} 1 & 0 & 1 \\ 0 & 1 & -1 \\ 1 & 0 & 1 \end{bmatrix}$ without computing singular values of $A$.
It seems we cannot use normal equations to denote $A^{+}=(A^{T}A)^{-1}A^{T}$ since $A^{T}A^{-1}$ is not invertible. Any hints would be appreciated.
$$ \mathbf{A}^{\dagger} = \frac{1}{6} \left[ \begin{array}{rrr} 2 & -2 & 2 \\ 1 & -4 & 1 \\ 1 & 2 & 1 \\ \end{array} \right] $$