Skip to content
Sahithyan's S1
Sahithyan's S1 — Mathematics

Elementary Transformations

  • Interchange of any columns or rows
  • Addition of multiple of any row or column to any other row or column
  • Multiplication of each element of a column or a row by a non-zero constant

When a matrix BB is obtained by applying elementary transformations to a matrix AA, then AA is equivalent to BB. Denoted by ABA\approx B.

Theorem

The elementary row operations that reduce a given matrix AA to the identity matrix, also transform the identity matrix to the inverse of AA.

Augmented Matrix

Two matrices are written as a single matrix with a vertical line in-between. Denoted by (AB)(A\lvert B). Example:

[123456]\left[ \begin{array}{cc|c} 1&2&3\\ 4&5&6 \end{array} \right]

Finding Inverse

Let AA be a square matrix with order n×nn\times n.

  • Start with (An×nIn)(A_{n\times n}|I_n)
  • Repeatedly perform row transformations (not column) to both matrices until the LHS\text{LHS} becomes an identity matrix.
    • Transform all elements outside the main diagonal to 00.
    • Transform elements on the main diagonal to 11 by multiplying by a constant.
  • RHS\text{RHS} is A1A^{-1}.

For singular matrices

They don’t have an inverse, so the process of using elementary row transformations to find A1A^{-1} will fail in such cases.

Typically occurs because at least one row becomes all zeros during the reduction process, indicating that the matrix has no full rank (rank(A)<n\text{rank}(A) < n).