I have an underdetermined linear system, with 3 equations and four unknows. I also know an initial guess for these 4 unknows. The article I am reading says: We can solve the system using the least squares method, starting form a guess. I don't know how can I do this. Thanks.
2026-04-03 19:45:37.1775245537
Underdetermined Linear Systems and the Least Squares Solution
8.9k Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
2
Suppose your underdetermined system looks like this: $$Ax=y$$
The least squares solution can be determined using the Moore-Penrose pseudoinverse: $$x=A^T(AA^T)^{-1}y$$ where it is assumed that the inverse of $AA^T$ exists. Royi's answer discusses the case when $AA^T$ is singular.
In any case, you do not need an initial guess. The solution you'll get is the solution with the smallest norm of all possible solutions.