GaußEliminationsverfahren
Gauss Elimination is a fundamental algorithm in linear algebra used to solve systems of linear equations, find the rank of a matrix, and calculate the inverse of an invertible square matrix. The process involves transforming a given matrix into row echelon form or reduced row echelon form through a sequence of elementary row operations.
The elementary row operations are: swapping two rows, multiplying a row by a non-zero scalar, and adding
Once the matrix is in row echelon form, the system of equations can be solved using back-substitution.