Basic Elementary Row Operations of Matrix

May 22, 2024 | Mahishi Peramuna



Case 01: Interchanging two rows

 Any 2 rows of a matrix can be exchanged. If the ith and jth rows are exchanged, it is shown by Ri ↔ Rj 

                     Example:

Case 02: Multiplying a row by a non-zero real number and replace in the same row

The elements of any row of a matrix can be multiplied by a non-zero number. So if we multiply the ith row of a matrix by a non-zero number k, symbolically it can be denoted by RikRi.

                    Example:-

Case 03: Adding a non-zero multiple of one row and replace that row

The elements of any row  can be added with the corresponding elements of another row  which is multiplied by a non-zero number. So if we add the ith row of a matrix to the jth row which is multiplied by a non-zero number k, symbolically it can be denoted by Ri → Ri + kRj.

                    Example:-

A matrix is in Row Echelon Form if it has the following properties:  


Examples:-

A matrix is in Reduced Row Echelon Form if it has the following properties:  

·       The matrix in the row echelon form.

·       Any column containing a leading 1 has other elements zero.

  Example:-

Algorithm to convert a matrix into a row echelon form matrix:


Step 01:

Step 02:

Step 03:

Mahishi Peramuna