MoorePenroseinverse
The Moore-Penrose inverse, denoted A^+, is a generalized matrix inverse defined for any m-by-n matrix A over the real or complex numbers. It is the unique matrix that provides a best possible solution to linear systems that are inconsistent or ill-conditioned and plays a central role in least-squares problems.
It is characterized by four Penrose equations: A A^+ A = A, A^+ A A^+ = A^+, (A A^+)^T
Computation: the most common method is via the singular value decomposition A = U Σ V^*, with Σ = diag(σ_i).
Applications and notes: A^+ provides the least-squares solution x to Ax ≈ b as x = A^+ b;