linalg(deprecated)
rref
reduced row echelon form
gaussjord
a synonym for rref (Gauss-Jordan elimination)
Calling Sequence
Parameters
Description
Examples
gaussjord(A)
gaussjord(A, 'r')
gaussjord(A, 'r', 'd')
gaussjord(A, rmar)
A
-
rectangular matrix
'r'
(optional) for returning the rank of A
'd'
(optional) for returning the determinant of A
rmar
(optional) non-negative integer
Important: The linalg package has been deprecated. Use the superseding command LinearAlgebra[GaussianElimination], instead.
- For information on migrating linalg code to the new packages, see examples/LinearAlgebraMigration.
- For details related to the GaussianElimination and ReducedRowEchelonForm commands, see the LinearAlgebra[GaussianElimination] help page.
Elementary row operations are performed on A, an n by m matrix over a field, to reduce it to row echelon (Gauss-Jordan) form. At present, if the matrix contains floating-point or decimal numbers, then Gaussian elimination with partial pivoting is used where all arithmetic is done in floating-point at Digits precision. In this case, the matrix entries on input must all be numbers of type numeric or complex(numeric). Otherwise ordinary Gaussian elimination is used. At present, the matrix entries must be rationals or complex rationals or in general rational functions with these coefficients.
The resulting matrix is upper triangular with leading nonzero entries 1 . If the matrix contains integers only, then in general rational numbers will appear in the result. Likewise if the matrix contains polynomials, in general rational functions will appear in the result.
If an optional second parameter is specified, and it is a name, it is assigned the rank of A. The rank of A is the number of nonzero rows in the resulting matrix.
If an optional third parameter is also specified, and the rank of A = n, then it is assigned the determinant of submatrix⁡A,1..n,1..n.
If an optional second parameter is specified, and it is an integer, the elimination is terminated at this column position.
The global _GaussJordanPivotList will contain the pivots which are not provably nonzero with the current Normalizer. This may be used to facilitate changing the value of Normalizer so that the computation may be repeated without using pivots not previously known to be nonzero.
with⁡linalg:
A≔array⁡4,−6,1,0,−6,12,0,1,−2,6,1,1
A≔4−610−61201−2611
gaussjord⁡A,r
101120112130000
rank⁡A
2
m≔matrix⁡2,2,1sqrt⁡6+1−sqrt⁡2⁢sqrt⁡36,1,1sqrt⁡6+2−sqrt⁡2⁢sqrt⁡36,2
m≔66+1−2⁢36166+2−2⁢362
infolevellinalg≔1
rref⁡m
1001
_GaussJordanPivotList
66+1−2⁢36,−2⁢3+6−2⁢3+6+6
map⁡radnormal,_GaussJordanPivotList
1,0
linalgrref⁡m
See Also
Digits
Gaussjord
linalg(deprecated)[gausselim]
linalg(deprecated)[hermite]
linalg(deprecated)[rowspace]
LinearAlgebra
Download Help Document