GaussAlgorithmus
GaussAlgorithmus, commonly known as Gaussian elimination, is a fundamental algorithm in linear algebra for solving systems of linear equations, computing determinants, and obtaining matrix inverses. The method is named after Carl Friedrich Gauss, though the concept predates him, and it remains a core tool in numerical linear algebra.
The algorithm operates on an n-by-n coefficient matrix A and a right-hand side vector b. It transforms
In practice, Gaussian elimination is often implemented as a decomposition step: A is factored into A =
The method has a typical computational cost of O(n^3) operations for dense systems and O(n^2) storage. It
Applications include solving linear systems, computing determinants (as the product of the diagonal entries of U,