Q: What geometrically means multiplication matrix $A = I - 2uu^{\top}$ by any vector $x$?
This method is appropriate to solve a $m$ systems of linear equations with constant matrix $A$ and different right-hand side $b_i, \; i=1,\ldots,m$:
Theorem. Any nonsingular matrix $A$ can be represented in the following form $$ A = PLU, $$ where $P$ is a permutation matrix, $L$ is lowertriangular matrix and $U$ is uppertriangular matrix
LU factorization requires $2n^3/3$ operations
Q: What is complexity of solving system of linear equations $Ax=b$ given LU factorization of matrix $A$?
Q: Why do we need permutation matrix $P$?
Theorem. Any symmetrix and positive definite matrix $A$ can be represebted in the following form $$ A = LL^{\top}, $$ where $L$ is a lowertriangulat matrix.
Cholesky factorization requires $n^3/3$ operations.
Q: What is complexity of solving system of linear equations $Ax=b$ given Cholesky factorization of matrix $A$?
Definition. Nonzero vector $x$ is called eigenvector of a transformation given by matrix $A$ if $$ Ax = \lambda x, $$ where $\lambda$ is eigenvalue corresponding to the eigenvector $x$.
If matrix $A$ has $n$ linear independent eigenvector, then it can be represented in the form of spectral decomposition: $$ A = X\Lambda X^{-1}, $$ where $\Lambda = \mathrm{diag}(\lambda_1, \ldots, \lambda_n)$, and $X = [x_1, \ldots, x_n]$.