Homework question: given a regular matrix $A\in M^{n\times n}$ and a linear system of equations $A\vec{x} = \vec{b}$, state the preferred method of solving and its computational costs:
- $A$ has no special properties.
- $A$ has positive eigenvalues.
- $A$ is orthogonal.
Solutions that I've been able to find so far:
- LU-Decomposition, $\approx \frac{2n^3}{3}$. (Source)
- Cholesky-Decomposition, $\approx \frac{n^3}{3}$. (Source)
- Orthogonal Diagonalization, depends on matrix multiplication $\approx n^{2.376}.$ (Source)
Are these answers correct, or are there better methods/are the best methods slover?