Student[LinearAlgebra]
GaussianElimination
perform Gaussian elimination on a Matrix
ReducedRowEchelonForm
perform Gauss-Jordan elimination on a Matrix
Calling Sequence
Parameters
Description
Examples
GaussianElimination(A)
ReducedRowEchelonForm(A)
A
-
Matrix
The GaussianElimination(A) command performs Gaussian elimination on the Matrix A and returns the upper triangular factor U with the same dimensions as A.
This command is equivalent to calling LUDecomposition with the output=['U'] option.
The ReducedRowEchelonForm(A) command performs Gauss-Jordan elimination on the Matrix A and returns the unique reduced row echelon form R of A.
This command is equivalent to calling LUDecomposition with the output=['R'] option.
with⁡StudentLinearAlgebra:
A≔8,3,−1,−5|4,−5,0,−2|−5,8,3,−1|−5,5,−4,−9
A≔84−5−53−585−103−4−5−2−1−9
b≔4,0,−8,−5
b≔40−8−5
GaussianElimination⁡A
84−5−50−1327985580016352−21352000−2607163
ReducedRowEchelonForm⁡A|b
1000171526070100−366826070010−1345869000117592607
See Also
LinearAlgebra[GaussianElimination]
Student[LinearAlgebra][AddRow]
Student[LinearAlgebra][GaussianEliminationTutor]
Student[LinearAlgebra][GaussJordanEliminationTutor]
Student[LinearAlgebra][LinearSolve]
Student[LinearAlgebra][LinearSolveTutor]
Student[LinearAlgebra][LUDecomposition]
Student[LinearAlgebra][MultiplyRow]
Student[LinearAlgebra][SwapRow]
Download Help Document