As shown in the title, the least norm-2 problem can be formulated as $$\min_{x}{\|Ax-b\|_2^2}$$ where $A\in\mathbb R^{m\times n},b\in\mathbb R^m$ are parameters with $\operatorname{rank}(A)=n$ and $x\in\mathbb R^n$ is variable.
As the above problem equals to $$A^TAx=A^Tb$$
the closed form solution is $$x^*=(A^TA)^{-1}A^Tb$$
As the size of $A^TA$ is $n\times n$, reaching $(A^TA)^{-1}$ becomes quite challenging if $n$ is a quite large number. So my question is is there any methods that can improve the computation efficiency with quite large $n$?
x = M\y
. – Ben Grossmann Feb 06 '17 at 15:47