RegularChains[MatrixTools]
LowerEchelonForm
lower echelon form of a matrix modulo a regular chain
Calling Sequence
Parameters
Description
Examples
LowerEchelonForm(A, rc, R)
A
-
square Matrix with coefficients in the ring of fractions of R
rc
regular chain of R
R
polynomial ring
The command LowerEchelonForm(A, rc, R) returns a list of pairs Bi,rci where rci is a regular chain, and Bi is the lower echelon form of A modulo the saturated ideal of rc_i.
All the returned regular chains rci form a triangular decomposition of rc (in the sense of Kalkbrener).
It is assumed that rc is strongly normalized.
The algorithm is an adaptation of the algorithm of Bareiss.
This command is part of the RegularChains[MatrixTools] package, so it can be used in the form LowerEchelonForm(..) only after executing the command with(RegularChains[MatrixTools]). However, it can always be accessed through the long form of the command by using RegularChains[MatrixTools][LowerEchelonForm](..).
with⁡RegularChains:with⁡ChainTools:with⁡MatrixTools:
R≔PolynomialRing⁡x,y,z
R≔polynomial_ring
T≔Empty⁡R:
T≔Chain⁡z+1⁢z+2,y2+z,x−z⁢x−y,T,R
T≔regular_chain
Equations⁡T,R
x2+−y−z⁢x+z⁢y,y2+z,z2+3⁢z+2
m≔Matrix⁡x,y,z,x+1,y+2,z+3,x+4,y+5,z+6
m≔xyzx+1y+2z+3x+4y+5z+6
lem≔LowerEchelonForm⁡m,T,R
lem≔600030x+4y+5z+6,regular_chain,1200−630x+4y+5z+6,regular_chain,000−6−30x+4y+5z+6,regular_chain,−3⁢x+6⁢y+6003⁢x3⁢y+30x+4y+5z+6,regular_chain
See Also
Chain
Empty
Equations
IsStronglyNormalized
IsZeroMatrix
JacobianMatrix
MatrixInverse
MatrixMultiply
MatrixOverChain
MatrixTools
NormalForm
PolynomialRing
RegularChains
Download Help Document