Processing math: 100%

Search This Blog

Elementary row/column operations on matrices

The elementary row/column operations on matrices are:

1) Multiplying the i-th row (column) by a number λ0.

Ri:=λRi

2) Adding the j-th row/column multiplied by a number λ to the i-th row/column.

Ri:=Ri+λRj

3) Exchanging the rows/columns i and j.

R=Ri

Ri=Rj

Rj=R

The interesting thing is that for square matrices each of these operations can be accomplished by matrix multiplication.

Let us define: 

  • E - the identity matrix of order n×n.
  • Eij - the square matrix of order n×n which has an element 1 at position (i,j) and zeroes at all other positions.
  • A - any square matrix of order n×n.

Then one can show that:

(1) Multiplying the i-th row/column of A by the number λ0 is accomplished by left/right multiplying A with the matrix Ai(λ)=E+(λ1)Eii

(2A) Adding the j-th row multiplied by a number λ to the i-th row is accomplished by left multiplying A with the matrix Bij(λ)=E+λEij

(2B) Adding the j-th column multiplied by a number λ to the i-th column is accomplished by right multiplying A with the matrix Bji(λ)=E+λEji

(3) Exchanging the rows/columns i and j is accomplished by left/right multiplying A with the matrix Cij=EEiiEjj+Eij+Eji

The matrices Ai(λ),Bij(λ),Cij are usually called matrices of the elementary transformations.


No comments:

Post a Comment