.. -*- coding: utf-8 -*- Theorems on Solutions of Linear Equations ----------------------------------------- Rank of a Matrix ~~~~~~~~~~~~~~~~ Let :math:`\,\boldsymbol{A}\ ` be a matrix with :math:`\,m\,` rows :math:`\ \ \text{and}\ \ \,n\ ` columns over a field :math:`\,K:\ \,\boldsymbol{A}\,\in M_{m\times n}(K). \\` .. admonition:: Definition. :math:`\,` The *row rank* :math:`\,` of the matrix :math:`\,\boldsymbol{A}\ \,` is the number of linearly independent rows of this matrix. :math:`\\` Similarly, the :math:`\,` *column rank* :math:`\,` is the number of linearly independent columns. .. admonition:: Theorem. :math:`\,` The column rank is equal to the row rank of the matrix. It makes sense then to talk about the rank of the matrix :math:`\,\boldsymbol{A},\,` which is equal to its number of linearly independent rows or columns. We denote it by :math:`\ \text{rk}\,\boldsymbol{A}.` .. **Corollaries:** 1. The rank of the matrix cannot be greater than any of its two sizes: :math:`\ \,\text{rk}\,\boldsymbol{A}\,\leq\,m,n.` 2. The rank of the matrix equals the dimension of the space spanned by its rows, :math:`\\` and also to the dimension of the space spanned by its columns. **Corollary 1.** :math:`\\` The rank of the matrix cannot be greater than any of its two dimensions: :math:`\ \,\text{rk}\boldsymbol{A}\,\leq\,m,n.` **Corollary 2.** :math:`\\` The rank of the matrix equals the dimension of the space spanned by its rows, :math:`\\` and also to the dimension of the space spanned by its columns. :math:`\\` .. admonition:: Theorem. :math:`\,` Elementary operations on rows or columns do not change rank of the matrix. .. **Corollary.** :math:`\,` The rank of the matrix is equal then to the number of leading unities in its reduced row echelon form. .. admonition:: Theorem. :math:`\,` The rank of the matrix is equal to the highest order of its non-zero minors. .. **Definition.** :math:`\,` *Minor of order* :math:`\,k\,` of a matrix :math:`\,\boldsymbol{A}\,` is the determinant of a matrix :math:`\,` obtained from :math:`\,\boldsymbol{A}\,` by deleting :math:`\,m-k\,` rows :math:`\ ` and :math:`\ \ \,n-k\,` columns :math:`\ (1\leq k \leq m,n).` We will apply the aforementioned methods to determine rank of a given matrix by using functions built in Sage. :math:`\\` Rank of the matrix is given by a direct function ``rank()``: .. code-block:: python sage: A = matrix(QQ,[[2, 3, 5,-3,-2], [3, 4, 3,-1,-3], [5, 6,-1, 3,-5]]) sage: rk_A = A.rank() sage: print "Rank of the matrix A is", rk_A Rank of the matrix A is 2 The methods ``row_space()`` and ``column_space()`` create a space spanned by rows :math:`\\` and columns of the matrix, :math:`\,` while ``dimension()`` provides a dimension of the space: .. code-block:: python sage: Vrow = A.row_space() sage: Vcol = A.column_space() sage: print "Dimension of the row space of matrix A:", Vrow.dimension() sage: print "Dimension of the column space of matrix A:", Vcol.dimension() Dimension of the row space of matrix A: 2 Dimension of the column space of matrix A: 2 In reduced row echelon form the matrix :math:`\,\boldsymbol{A}\,` has two leading unities: .. code-block:: python sage: table([["A", "=", A, '$\\rightarrow$', A.rref()]]) .. math:: A\quad =\quad \left(\begin{array}{rrrrr} 2 & 3 & 5 & -3 & -2 \\ 3 & 4 & 3 & -1 & -3 \\ 5 & 6 & -1 & 3 & -5 \end{array}\right)\quad\rightarrow\quad\left(\begin{array}{rrrrr} 1 & 0 & -11 & 9 & -1 \\ 0 & 1 & 9 & -7 & 0 \\ 0 & 0 & 0 & 0 & 0 \end{array}\right)\,. The method ``minors(k)`` provides a list of all the minors of order :math:`\,k\ ` of the given matrix: .. code-block:: python sage: print A.minors(2) sage: print "" sage: print A.minors(3) [-1, -9, 7, 0, -11, 9, -1, 4, -9, 7, -3, -27, 21, 0, -33, 27, -3, 12, -27, 21, -2, -18, 14, 0, -22, 18, -2, 8, -18, 14] [0, 0, 0, 0, 0, 0, 0, 0, 0, 0] As one can see, the matrix :math:`\,\boldsymbol{A}\ ` has non-zero minors of order two, whereas all the minors of order three vanish. :math:`\\` Eventually, each of the methods used gives the same result: :math:`\ \,\text{rk}\,\boldsymbol{A} = 2.` General Solution of a System of Equations ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ We consider a (nonhomogeneous) system of linear equations given by a matrix equation of the form .. math:: :label: 05 \boldsymbol{A}\,\boldsymbol{x}\,=\,\boldsymbol{b} and the corresponding homogeneous system .. math:: :label: 06 \boldsymbol{A}\,\boldsymbol{x}\,=\,\boldsymbol{0}\,, where :math:`\,\boldsymbol{A}\,\in M_{m\times n}(K)\,` and :math:`\,\boldsymbol{b}\in K^m.` A necessary and sufficient condition for any solution to exist provides .. **Theorem 0.** :math:`\,` (Kronecker-Capelli) :math:`\\` .. admonition:: Theorem 0. :math:`\,` (Kronecker-Capelli) :math:`\,` A system of linear equations :eq:`05` has a solution (is consistent) if and only if the rank of its coefficient matrix is equal to the rank of its augmented matrix: .. math:: :label: 07 \text{rk}\,\boldsymbol{A}\,=\,\text{rk}\,\boldsymbol{B}\,,\qquad \text{where}\quad\boldsymbol{B}\,=\,[\,\boldsymbol{A}\,|\,\boldsymbol{b}\,]. For the homogeneous system :eq:`06` the condition :eq:`07` is always fulfilled, because adding a zero column does not change the rank of the matrix. Hence, the homogeneous system is always consistent :math:`\,` - :math:`\,` there always exists at least a zero solution :math:`\,\boldsymbol{x} = \boldsymbol{0}.\,` The existence of non-zero solutions explains .. **Theorem 1.** :math:`\\` .. admonition:: Theorem 1. :math:`\,` The homogeneous system of equations :eq:`06` has non-zero solutions if and only if the rank of its coefficient matrix is smaller than the number of unknowns: :math:`\ \ \text{rk}\boldsymbol{A}\,<\,n\,.` In particular, the non-zero solutions exist if the number of equations is smaller than the number of unknowns, that is when :math:`\,m