$\Sigma$ is diagonal
It exists for any matrix
A solution to the linear system of equations with a square matrix $A$
$$ Ax = b $$exists, iff
or
Definition: LU decomposition of the matrix $A$ is representation in the form
$$A = LU,$$where $L$ – lower triangular and $U$ – upper triangular matrix.
Forward and backward steps in Gaussian elimination
Forward step
$$ L y = b.$$
Backward step
$$ U x = y.$$
Does LU decomposition always exist?
where $P$ is a permutation matrix.
where $R$ is lower triangular matrix.
where $(A + \Delta A) \widehat{x} = f + \Delta f.$
Matrix $A^* A$ is called Gram matrix.
Property of the normal equation:
is called pseudoinverse matrix for the matrix $A$.
We have obtained standard inverion of the matrix $A$
Let $A = U \Sigma V^*$ be SVD of the matrix $A$. Then,
$$A^{\dagger} = V \Sigma^{\dagger} U^*,$$where $\Sigma^{\dagger}$ is diagonal matrix such that diagonal entries are inverse of non-zero singular values of the matrix $A$. Indeed,
\begin{align*} A^{\dagger} = \lim_{\alpha \rightarrow 0}(\alpha I + A^* A)^{-1} A^* = \lim_{\alpha \rightarrow 0}( \alpha VV^* + V \Sigma^2 V^*)^{-1} V \Sigma U^* = \lim_{\alpha \rightarrow 0}( V(\alpha I + \Sigma^2) V^*)^{-1} V \Sigma U^* = V \lim_{\alpha \rightarrow 0}(\alpha I + \Sigma^2)^{-1} \Sigma U^* = V \Sigma^{\dagger} U^*, \end{align*}Q: what about condition number?
Any matrix can be represented in the form
$$ A = Q R, $$where $Q$ is unitary matrix, and $R$ is upper tringular matrix.
Complexity of Householder matrix by vector product is $\mathcal{O}(n)$!
Q: what about complexity?
where $U$ is unitary, and $T$ is upper triangular.
or
$$A = \begin{bmatrix} * & * & * & * & * \\ * & * & * & * & * \\ 0 & * & * & * & *\\ 0 & 0 & * & * & *\\ 0 & 0 & 0 & * & * \\ \end{bmatrix}.$$