Skip to main content

Recitation 5B

The Invertible Matrix Theorem: Let AA be a square n×nn\times n matrix. Then the following statements are equivalent.

  • AA is invertible matrix.
  • AA is row equivalent to the n×nn\times n identity matrix.
  • AA has nn pivot positions.
  • The equation Ax=0Ax=0 has only the trivial solution.
  • The columns of AA form a linearly independent set.
  • The linear transformation xAxx\mapsto Ax is one-to-one.
  • The equation Ax=bAx=b has at least one solution for each bb in Rn\mathbb{R}^n.
  • The columns of AA span Rn\mathbb{R}^n.
  • The linear transformation xAxx\mapsto Ax maps Rn\mathbb{R}^n onto Rn\mathbb{R}^n.
  • There is an n×nn\times n matrix CC such that CA=ICA=I.
  • There is an n×nn\times n matrix DD such that AD=IAD=I.
  • ATA^T is an invertible matrix.

Problem 1: Suppose AB=ACAB=AC, where BB and CC are n×pn\times p matrices and AA is invertible. Show that B=CB=C. Is this true, in general, when AA is not invertible?

Solution: If AA is invertible, then we can multiply A1A^{-1} on the left of each side of AB=ACAB=AC and get A1AB=A1ACA^{-1}AB=A^{-1}AC. As A1A=IA^{-1}A=I, B=CB=C. In general, it is not true that AB=ACAB=AC implies B=CB=C. For instance, if AA is the zero matrix, then AB=ACAB=AC always holds but it is not necessary the case that B=CB=C.

Problem 2: Suppose AA, BB and CC are invertible n×nn\times n matrices. Show that ABCABC is also invertible by producing a matrix DD such that (ABC)D=I(ABC)D=I and D(ABC)=ID(ABC)=I.

Solution: Let DD be C1B1A1C^{-1}B^{-1}A^{-1}. Easy to check (ABC)D=I(ABC)D=I and D(ABC)=ID(ABC)=I.

Problem 3: Determine which of the matrices are invertible. [5736],[300340853],[303204407]\begin{bmatrix}5 & 7 \\ -3 & -6\end{bmatrix}, \begin{bmatrix}3 & 0 & 0 \\ -3 & -4 & 0 \\ 8 & 5 & -3\end{bmatrix}, \begin{bmatrix}3 & 0 & -3 \\ 2 & 0 & 4 \\ -4 & 0 & 7\end{bmatrix}

Solution: As for the first matrix, as two columns are not multiple of each other, they are linearly independent. By the invertible matrix theorem, it is invertible. As for the second one, its transpose has nn pivot positions. By the invertible matrix theorem, the transpose is invertible. Again by the theorem, the second matrix itself is invertible. As for the last one, its second column is a zero vector. By the invertible matrix theorem, the matrix is not invertible because its columns are not linearly independent.

Problem 4: Let AA and BB be n×nn\times n matrices. Show that if ABAB is invertible, so is AA.

Solution: By the invertible matrix theorem, we can find CC such that ABC=IABC=I. In other words, A(BC)=IA(BC)=I. Again by the invertible matrix theorem, AA is invertible because BCBC is the left inverse of AA.

Problem 5: Suppose TT and UU are linear transformations from Rn\mathbb{R}^n to Rn\mathbb{R}^n such that T(U(x))=xT(U(x))=x for all xx in Rn\mathbb{R}^n. Is it true that U(T(x))=xU(T(x))=x for all xx in Rn\mathbb{R}^n?

Solution: Let AA and BB be the standard matrix of TT and UU. The assumption that T(U(x))=xT(U(x))=x for all xx implies AB=IAB=I. Therefore AA and BB are inverse of each other and BA=IBA=I. Hence U(T(x))=xU(T(x))=x for all xx in Rn\mathbb{R}^n.