GaussianElimination - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


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, m, options)

ReducedRowEchelonForm(A, options)

Parameters

A

-

Matrix

m

-

(optional) equation of the form method = name where name is one of 'GaussianElimination', or 'FractionFree'; method used to factorize A

options

-

(optional); constructor options for the result object

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 function is equivalent to calling LinearAlgebra[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 function is equivalent to calling LinearAlgebra[LUDecomposition] with the output=['R'] option.

• 

The constructor options provide additional information (readonly, shape, storage, order, datatype, and attributes) to the Matrix constructor that builds the result. These options may also be provided in the form outputoptions=[...], where [...] represents a Maple list.  If a constructor option is provided in both the calling sequence directly and in an outputoptions option, the latter takes precedence (regardless of the order).

• 

These functions are part of the LinearAlgebra package, and so it can be used in the form GaussianElimination(..) or ReducedRowEchelonForm(..) only after executing the command with(LinearAlgebra). However, it can always be accessed through the long form of the command by using LinearAlgebra[GaussianElimination](..) or LinearAlgebra[ReducedRowEchelonForm](..).

Examples

withLinearAlgebra:

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)

GaussianEliminationA,method=FractionFree

84−5−50−52795500−1632130002607

(4)

ReducedRowEchelonFormA|b

10001715260701003668260700101345869000117592607

(5)

See Also

LinearAlgebra[LUDecomposition]

Matrix

Vector