Section 2.3 Characterizations of Invertible Matrices

The Fundamental Role of Pivot Positions in Matrix Algebra

  • The properties of an even-sized or rectangular matrix AA of size m×nm \times n are fundamentally determined by the locations of its pivot positions.

  • Column-Based Pivot Properties:

    • The following statements are true if and only if there is a pivot in every column of AA:
    • The homogeneous 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.
  • Row-Based Pivot Properties:

    • The following statements are true if and only if there is a pivot in every row of AA:
    • The equation Ax=bAx = b has a solution for every bRmb \in \mathbb{R}^m.
    • The columns of AA span Rm\mathbb{R}^m.
    • Fresh columns are produced by the transformation xAxx \mapsto Ax mapping Rn\mathbb{R}^n onto Rm\mathbb{R}^m.
  • The Case for Square Matrices (m=nm = n):

    • When the matrix is square, the row and column pivot conditions become interchangeable.
    • A square matrix has a pivot in every column if and only if it has a pivot in every row.

The Invertible Matrix Theorem

  • Let AA be a square n×nn \times n matrix. The Invertible Matrix Theorem states that the following statements are equivalent (if one is true, all are true; if one is false, all are false):

    • (a) AA is an invertible matrix.
    • (b) AA is row equivalent to the n×nn \times n identity matrix InI_n.
    • (c) AA has nn pivot positions.
    • (d) The equation Ax=0Ax = 0 has only the trivial solution.
    • (e) The columns of AA form a linearly independent set.
    • (f) The linear transformation xAxx \mapsto Ax is one-to-one.
    • (g) The equation Ax=bAx = b has at least one solution for each bRnb \in \mathbb{R}^n.
    • (h) The columns of AA span Rn\mathbb{R}^n.
    • (i) The linear transformation xAxx \mapsto Ax maps Rn\mathbb{R}^n onto Rn\mathbb{R}^n.
    • (j) There is an n×nn \times n matrix CC such that CA=ICA = I.
    • (k) There is an n×nn \times n matrix DD such that AD=IAD = I.
    • (l) ATA^T is an invertible matrix.
  • Implications and Relationships within the Theorem:

    • The theorem establishes a "circle" of implications where each point logically leads to the next.
    • Matrix DD in statement (k) works as the inverse, linking (k) and (g) to the main logical circle.
    • Statements (g), (h), and (i) are naturally equivalent for any matrix and are linked through (g) to the core of the theorem.
    • Statements (d), (e), and (f) are equivalent for any matrix AA and are linked to the circle through (d).

Categorization of Matrices: Invertible vs. Singular

  • The Invertible Matrix Theorem effectively divides the set of all square matrices into two disjoint classes:

    • Invertible (Nonsingular) Matrices: These possess every property listed in the theorem.
    • Noninvertible (Singular) Matrices: These possess none of the properties listed. For example, an n×nn \times n singular matrix is not row equivalent to InI_n, does not have nn pivot positions, and has linearly dependent columns.
  • Extension to Transposes:

    • If AA is invertible, then ATA^T is also invertible and (AT)1=(A1)T(A^T)^{-1} = (A^{-1})^T.

Practical Application and Limitations

  • Example 1: Assessing Invertibility via Pivots

    • Consider the matrix:     A=(102312519)A = \begin{pmatrix} 1 & 0 & -2 \\ 3 & 1 & -2 \\ -5 & -1 & 9 \end{pmatrix}
    • By performing row operations, we determine if AA has three pivot positions.
    • Step 1: Add 3-3 times row 1 to row 2, and add 55 times row 1 to row 3:     (102014011)\begin{pmatrix} 1 & 0 & -2 \\ 0 & 1 & 4 \\ 0 & -1 & -1 \end{pmatrix}
    • Step 2: Add row 2 to row 3:     (102014003)\begin{pmatrix} 1 & 0 & -2 \\ 0 & 1 & 4 \\ 0 & 0 & 3 \end{pmatrix}
    • Since the result is in echelon form and shows three pivots, matrix AA is invertible according to statement (c) of the Invertible Matrix Theorem.
  • Critical Restriction: Square Matrices Only

    • The Invertible Matrix Theorem applies strictly to square matrices.
    • If a rectangular matrix (e.g., 4×34 \times 3) has linearly independent columns, one cannot use the Invertible Matrix Theorem to conclude anything about the existence of solutions for Ax=bAx = b.

Invertible Linear Transformations

  • Conceptual Mapping:

    • Matrix multiplication corresponds to the composition of linear transformations.
    • If matrix AA is invertible, then for the equation y=Axy = Ax, the operation can be reversed: x=A1yx = A^{-1}y. This means A1A^{-1} transforms AxAx back into xx.
  • Definition of an Invertible Transformation:

    • A linear transformation T:RnRnT: \mathbb{R}^n \rightarrow \mathbb{R}^n is invertible if there exists a function S:RnRnS: \mathbb{R}^n \rightarrow \mathbb{R}^n such that:
    1. S(T(x))=xS(T(x)) = x for all xRnx \in \mathbb{R}^n
    2. T(S(x))=xT(S(x)) = x for all xRnx \in \mathbb{R}^n
  • Theorem 9:

    • Let T:RnRnT: \mathbb{R}^n \rightarrow \mathbb{R}^n be a linear transformation and let AA be the standard matrix for TT.
    • TT is invertible if and only if AA is an invertible matrix.
    • In this scenario, the unique inverse function SS is defined by S(x)=A1xS(x) = A^{-1}x.
  • Proof Overview for Theorem 9:

    • If TT is invertible, then for any bRnb \in \mathbb{R}^n, we have b=T(S(b))b = T(S(b)), indicating that every bb is in the range of TT. Thus, TT is onto. By statement (i) of the Invertible Matrix Theorem, the matrix AA must be invertible.
    • Conversely, if AA is invertible, defining S(x)=A1xS(x) = A^{-1}x provides a linear transformation that satisfies the requirements for an inverse, such as S(T(x))=S(Ax)=A1(Ax)=xS(T(x)) = S(Ax) = A^{-1}(Ax) = x.