User:Jim.belk/Draft:Row echelon form

In linear algebra, a matrix is in row echelon form (or echelon form) if it satisfies the following requirements:

  1. Any rows of zeros are at the bottom of the matrix.
  2. In each of the remaining rows, the first nonzero entry is a one. (These entries are called pivots.)
  3. The pivot in each row lies to the right of the pivot in the preceding row.

Visually, a matrix in echelon form has a "staircase" of zeros in the lower left:

The first nonzero entry in each row (circled above) is called a pivot.

Any matrix can be put into echelon form through Gaussian elimination. (In some books, Gaussian elimination involves changing each pivot to a one, and this is taken as a requirement for echelon form.) The echelon form makes various properties of the original matrix apparent, including the rank and determinant of the matrix, the dimension of the null space, the linear dependence relations between the columns, and so forth.

Systems of linear equations edit

Row echelon form is closely related to reduced row echelon form (row canonical form). The difference is that in reduced row echelon form, the entries above the leading coefficient also have to be zero, and that the leading coefficient is always one.

The first non-zero entry in each row is called a pivot.

Examples edit

This matrix is in row echelon form:

 

The following matrix is also in row echelon form:

 

However, this matrix is not in row echelon form, as the leading coefficient of row 3 is not strictly to the right of the leading coefficient of row 2.

 

Non-uniqueness edit

Every non-zero matrix can be reduced to an infinite number of echelon forms (they can all be multiples of each other, for example) via elementary matrix transformations. However, all matrices and their row echelon forms correspond to exactly one matrix in reduced row echelon form.

Systems of linear equations edit

A system of linear equations is said to be in echelon form if its augmented matrix is in row echelon form. Similarly, a system of equations is said to be in reduced echelon form or canonical form if its augmeneted matrix is in reduced row echelon form.

See also edit

Notes edit


Category:Numerical linear algebra