LinearAlgebra
GaussianElimination
perform Gaussian elimination on a Matrix
ReducedRowEchelonForm
perform Gauss-Jordan elimination on a Matrix
Calling Sequence
Parameters
Description
Examples
GaussianElimination(A, m, options)
ReducedRowEchelonForm(A, options)
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
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](..).
with⁡LinearAlgebra:
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
GaussianElimination⁡A,method=FractionFree
84−5−50−52795500−1632130002607
ReducedRowEchelonForm⁡A|b
1000171526070100−366826070010−1345869000117592607
See Also
LinearAlgebra[LUDecomposition]
Vector
Download Help Document