GaussianElimination - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.
Our website is currently undergoing maintenance, which may result in occasional errors while browsing. We apologize for any inconvenience this may cause and are working swiftly to restore full functionality. Thank you for your patience.

Online Help

All Products    Maple    MapleSim


Student[LinearAlgebra]

  

GaussianElimination

  

perform Gaussian elimination on a Matrix

  

ReducedRowEchelonForm

  

perform Gauss-Jordan elimination on a Matrix

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

GaussianElimination(A)

ReducedRowEchelonForm(A)

Parameters

A

-

Matrix

Description

• 

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.

Examples

withStudentLinearAlgebra:

A8,3,1,5|4,5,0,2|5,8,3,1|5,5,4,9

A84−5−53−585−103−4−5−2−1−9

(1)

b4,0,8,5

b40−8−5

(2)

GaussianEliminationA

84−5−501327985580016352213520002607163

(3)

ReducedRowEchelonFormA|b

10001715260701003668260700101345869000117592607

(4)

See Also

LinearAlgebra[GaussianElimination]

Student[LinearAlgebra]

Student[LinearAlgebra][AddRow]

Student[LinearAlgebra][GaussianEliminationTutor]

Student[LinearAlgebra][GaussJordanEliminationTutor]

Student[LinearAlgebra][LinearSolve]

Student[LinearAlgebra][LinearSolveTutor]

Student[LinearAlgebra][LUDecomposition]

Student[LinearAlgebra][MultiplyRow]

Student[LinearAlgebra][SwapRow]