LowerEchelonForm - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Mozilla Firefox.

Online Help

All Products    Maple    MapleSim


RegularChains[MatrixTools]

  

LowerEchelonForm

  

lower echelon form of a matrix modulo a regular chain

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

LowerEchelonForm(A, rc, R)

Parameters

A

-

square Matrix with coefficients in the ring of fractions of R

rc

-

regular chain of R

R

-

polynomial ring

Description

• 

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](..).

Examples

> 

with⁡RegularChains:with⁡ChainTools:with⁡MatrixTools:

> 

R≔PolynomialRing⁡x,y,z

R≔polynomial_ring

(1)
> 

T≔Empty⁡R:

> 

T≔Chain⁡z+1⁢z+2,y2+z,x−z⁢x−y,T,R

T≔regular_chain

(2)
> 

Equations⁡T,R

x2+−y−z⁢x+z⁢y,y2+z,z2+3⁢z+2

(3)
> 

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

(4)
> 

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

(5)

See Also

Chain

Empty

Equations

IsStronglyNormalized

IsZeroMatrix

JacobianMatrix

MatrixInverse

MatrixMultiply

MatrixOverChain

MatrixTools

NormalForm

PolynomialRing

RegularChains