This set of exercises is retrieved from the sixth chapter of Linear Algebra by Robert J. Valenza. Note that these solutions are not fully elaborated; You have to fill the descriptions by yourself.
Problem 6.1
Let \(T:\mathbb{R}^2 \rightarrow \mathbb{R}\) be a linear transformation and suppose that \(T(1,\,1)=5\) and \(T(0,\,1)=2.\) Find \(T(x_1,\,x_2)\) for all \(x_1,\) \(x_2 \in \mathbb{R}.\)
Solution. Suppose \((x_1 ,\,x_2 )\) be given. Take \(\lambda_1 = x_1 ,\) \(\lambda_2 = x_2 - x_1 ,\) then \[(x_1 ,\,x_2 ) = \lambda_1 (1,\,1) + \lambda_2 (0,\,1).\] Therefore, we have \[\begin{align} T(x_1 ,\,x_2 ) &= x_1 T((1,\,1)) + (x_2 - x_1 ) T((0,\,1)) \\[5pt] &= x_1 \times 5 + (x_2 - x_1 ) \times 2 \\[5pt] &= 3x_1 + 2x_2 . \end{align}\]
Problem 6.2
Find the matrix with respect to the canonical basis of the linear transformation \(T : \mathbb{R}^3 \rightarrow \mathbb{R}^2\) defined by
\[T
\begin{pmatrix} x_1 \\ x_2 \\ x_3 \end{pmatrix} =
\begin{pmatrix} 5x_1 - 2x_2 + x_3 \\ 4x_2 - 7x_3 \end{pmatrix}.
\]
Solution. \[ [T] = [T(e_1) \quad T(e_2) \quad T(e_3)] = \left[ \begin{array}{crr} 5 & -2 & 1\\ 0 & 4 & -7 \end{array} \right] \]
Problem 6.3
Let \(T : \mathbb{R}^2 \rightarrow \mathbb{R}^2\) be the linear transformation which is defined by reflection through the line \(x=y.\) What is \(M(T),\) the matrix of \(T\) with respect to the canonical basis? Explain geometrically how one knows without calculation that \(M(T)^2\) is \(I_2.\)
Solution. The formula for \(T\) is \[T((x,\,y)) = (y,\,x).\] Hence the matrix of \(T\) is \[[T] = [ T((1,\,0)) \quad T((0,\,1))] = \left[ \begin{array}{cc} 0 & 1 \\ 1 & 0 \end{array} \right].\] Since an iterated reflection(twice) through a fixed line does not change anything, \(T\circ T\) is the identity function.
Problem 6.4
Let \(V\) be the vector space of real functions spanned by the functions \(e^x\) and \(e^{2x},\) which in fact constitute a basis for \(V.\) What is the matrix of the differentiation operator on \(V\) with respect to this basis?
Solution. Since \[[D(e^x )] = [e^x] = (1,\,0)\] and \[[D(e^{2x})] = [2e^{2x}] = (0,\,2),\] we have \[[D] = \left[\begin{array}{cc} 1 & 0 \\ 0 & 2 \end{array}\right].\] As an example, let \[f(x) = 3e^x + 4e^{2x}.\] Then \[[f] = (3,\,4).\] and \[[D][f] = \left[\begin{array}{cc} 1 & 0 \\ 0 & 2 \end{array}\right]\left[\begin{array}{c} 3 \\ 4 \end{array}\right] = \left[\begin{array}{c} 3 \\ 8 \end{array}\right].\] Furthermore, since \[Df(x) = f ' (x) = 3e^x + 8e^{2x},\] we have \[[Df] = \left[\begin{array}{c} 3 \\ 8 \end{array}\right].\] Therefore \([Df] = [D][f].\)
Problem 6.5
Find the matrix representation (with respect to the canonical basis) for each of the projection maps \(\rho_j : K^n \rightarrow K.\)
Solution. The matrix representation for \(\rho_j\) is \([a_{1k}]\) where \(a_{1k} = 1\) for \(k=j\) and \(a_{1k} = 0\) otherwise. For example, if \(n=4\) and \(j=2,\) the matrix repersentation for \(\rho_2\) is \[\left[\begin{array}{cccc} 0 & 1 & 0 & 0 \end{array}\right].\]
Problem 6.6
Let \(V\) be the real function space spanned by the linearly independent functions \(\sin x,\) \(\sin 2x\) and \(e^x,\) which therefore constitute a basis \(B\) for \(V.\) What is the matrix of the second derivative operator on \(V\) with respect to \(B?\)
Solution. Let \[\begin{align} v_1 & : x \mapsto \sin x ,\\[5pt] v_2 & : x \mapsto \sin 2x , \\[5pt] v_3 & : x \mapsto e^x , \end{align}\] then \[\begin{align} (D^2 v_1) (x) &= -\sin x = -v_1, \\[5pt] (D^2 v_2) (x) &= -4 \sin 2x = -4v_2 ,\\[5pt] (D^2 v_3) (x) &= e^x = v_3 , \end{align}\] that is, \[\begin{align} [D^2 ] \left[\begin{array}{c} 1 \\ 0 \\ 0 \end{array}\right] &= \left[\begin{array}{r} -1 \\ 0 \\ 0 \end{array}\right], \\[4pt] [D^2 ] \left[\begin{array}{c} 0 \\ 1 \\ 0 \end{array}\right] &= \left[\begin{array}{r} 0 \\ -4 \\ 0 \end{array}\right], \\[4pt] [D^2 ] \left[\begin{array}{c} 0 \\ 0 \\ 1 \end{array}\right] &= \left[\begin{array}{r} 0 \\ 0 \\ 1 \end{array}\right]. \end{align}\] Hence \[[D^2] = \left[\begin{array}{rrc} -1 & 0 & 0 \\ 0 & -4 & 0 \\ 0 & 0 & 1 \end{array}\right].\]
Problem 6.7
Let \(V\) be finite-dimensional vector space of dimension \(n\) over \(K.\) Show that the matrix of the identity map on \(V\) with respect to any basis is \(I_n.\)
Solution. Since \(I(e_j) = e_j,\) we have \([I] = [e_1 \,\,\, e_2 \,\,\, \cdots \,\,\, e_n] = I_n.\)
Problem 6.8
Let \(T: V \rightarrow V ' \) be a linear transformation of vector spaces \(V\) and \(V ' \) with bases \(B\) and \(B ' ,\) respectively. Show that \(T\) is invertible if and only if the matrix of \(T\) with respect to \(B\) and \(B ' \) is likewise invertible. Note that this result does not depend on the choice of bases.
Solution. Suppose that \(T\) is invertible, then \(T^{-1}: V ' \rightarrow V\) exists. Furthermore, since \(T\) is one-to-one correspondence, \(V\) and \(V'\) are isomorphic and have the same dimension. Observe that \[[T]_{B,B '} [T^{-1}]_{B',B} = [T\circ T^{-1}]_{B',B'} = [I_{V'}]_{B'} = I\] and \[ [T^{-1}]_{B',B}[T]_{B,B '} = [T^{-1} \circ T]_{B,B} = [I_{V}]_{B} = I ;\] Thus \([T^{-1}]_{B',B}\) is the inverse matrix for \([T]_{B,B'}.\)
To prove the converse, suppose that \([T]_{B,B'}\) is invertible, then the inverse matrix \(([T]_{B,B'})^{-1}\) exists. Define the linear transformation \(U : V ' \rightarrow V\) by \[U : [v']_{B'} \mapsto ([T]_{B,B'})^{-1}[v']_{B'}\] for \(v' \in V'.\) Then, for each \(v' \in V',\) there exists \(v\in V\) such that \[[v]_{B} = ( [T]_{B,B'})^{-1} [v']_{B'}.\] Hence we have \[\begin{align} [(T\circ U)(v')]_{B'} &= [T]_{B,B'} [U]_{B',B} [v']_{B'} \\[5pt] &= [T]_{B,B'} ([T]_{B,B'})^{-1} [v']_{B'} \\[5pt] &= [I]_{B'} [v']_{B'} = [v']_{B'} \end{align}\] and \[\begin{align} [(U\circ T)(v)]_{B} &= [U]_{B',B} [T]_{B,B'} [v]_{B} \\[5pt] &= ([T]_{B,B'})^{-1} [T]_{B,B'} [v]_{B} \\[5pt] &= [I]_{B} [v]_{B} = [v]_{B}, \end{align}\] that is, both \(T\circ U\) and \(U\circ T\) are identity functions. Therefore \(U\) is the inverse function for \(T\) and we conclude that \(T\) is invertible.
Problem 6.9
Let \(V\) be a vector space over \(K\) of dimension \(n.\) Given \(\lambda \in K,\) let \(T_\lambda\) denote the linear transformation from \(V\) to itself defined by \(T_\lambda (v) = \lambda v\) for all \(v\in V.\) What is the matrix of \(T_\lambda\) with respect to any basis?
Solution. \([T_\lambda ] = \lambda I_n .\)
Problem 6.10
Let \(V\) be the real vector space of polynomials of degree less than or equal to \(2,\) with basis \(B = \left\{ 1 ,\,x,\,x^2 \right\}.\) Suppose that for some linear transformation \(T\) from \(V\) to itself, we have that the matrix of \(T\) with respect to \(B\) is
\[\begin{pmatrix}
2&0&1 \\ 0&1&2 \\ 1&1&1
\end{pmatrix}.\]
Compute \(T( 2+5x-4x^2 ).\)
Solution. Since \[[2+5x-4x^2]_B = \left[\begin{array}{r} 2 \\ 5 \\ -4 \end{array}\right],\] we have \[\begin{align} [T(2+5x-4x^2 )]_B &= \left[\begin{array}{ccc} 2 & 0 & 1 \\ 0 & 1 & 2 \\ 1 & 1 & 1 \end{array}\right] \left[\begin{array}{r} 2 \\ 5 \\ -4 \end{array}\right] \\[4pt] &= \left[\begin{array}{r} 0 \\ -3 \\ 3 \end{array}\right] = [0 - 3x + 3x^2 ]_B . \end{align}\] Therefore \(T(2+5x-4x^2) = -3x+3x^2 .\)
Problem 6.11
Let \(V\) be the real vector space of polynomials of degree less than or equal to \(2,\) with basis \(B = \left\{ 1,\,x,\,x^2 \right\}.\) Consider the differential operator \(D : V \rightarrow V\) defined by
\[D(p(x)) = 2p(x) + p ' (x) - 5 p ' ' (x).\]
What is the matrix of \(D\) with respect to \(B?\) Is \(D\) invertible? Why or why not?
Solution. Since \[\begin{align} D(1) & = 2 , \\[5pt] D(x) &= 1+2x ,\\[5pt] D(x^2) &= -10 + 2x +2x^2 , \end{align}\] we have \[[D] = \left[\begin{array}{ccr} 2 & 1 & -10 \\ 0 & 2 & 2 \\ 0 & 0 & 2 \end{array}\right].\] Since \([D]\) is invertible, \(D\) is invertible.
Another way to show the invertibility of \(D\) is as follows: It is easily shown that \(p(x)=0\) only for \(x=0,\) that is, \(\operatorname{Ker}(D) = \left\{0\right\}.\) Hence \(D\) is one-to-one correspondence and \(D\) is invertible.
Problem 6.12
Consider \(\mathbb{C}\) as a two-dimensional vector space over \(\mathbb{R}\) with ordered basis \(\left\{ 1,\,i \right\}.\) For \(z=a+bi\) (\(a,\,b\in\mathbb{R}\)), define the mapping \(T_z : \mathbb{C} \rightarrow \mathbb{C}\) by
\[T_z (w) = zw\]
so that \(T_z\) is just multiplication by \(z.\) By the field axioms for the complex numbers, this is a linear transformation.
- What is the matrix of \(T_z\) with respect to the given basis?
- Use the \(2\times 2\) matrix inversion formula to invert the matrix associated with a nonzero \(z.\) What complex number does this represent?
- What is the matrix associated with the complex number \(i?\)
- Finally, consider the matrix \[A = \left(\begin{array}{cr}0&-1\\1&0\end{array}\right).\] Compute \(A^{1000}\) and \(A^{1003}.\)
Solution. (1) Since \[\begin{align} (a+bi)(1+0i) &= a+bi ,\\[5pt] (a+bi)(0+1i) &= -b+ai , \end{align}\] we have \[[T_z] = \left[\begin{array}{cr} a & -b \\ b & a \end{array}\right].\] (2) \[[T_z]^{-1} = \frac{1}{a^2 + b^2} \left[\begin{array}{rc} a & b \\ -b & a \end{array}\right] = [T_{1/z}].\] (3) \[\left[\begin{array}{cr} 0 & -1 \\ 1 & 0 \end{array}\right].\] (4) \[\begin{align} A^{1000} &= [T_i]^{1000} = [T_{i^{1000}}] = [T_1] = \left[\begin{array}{cc} 1 & 0 \\ 0 & 1 \end{array}\right],\\[4pt] A^{1003} &= [T_i]^{1003} = [T_{i^{1003}}] = [T_{-i}] = \left[\begin{array}{cc} 0 & 1 \\ -1 & 0 \end{array}\right]. \end{align}\]
Problem 6.13
Let \(V\) be a vector space of dimension \(3\) and suppose that \(B = \left\{ v_1 ,\, v_2 ,\, v_3 \right\}\) is an ordered basis for \(V.\) If the matrix of a linear transformation \(T:V \rightarrow V\) relative to \(B\) is
\[\begin{pmatrix} 2&0&1 \\ 1&1&5 \\ 2&1&2 \end{pmatrix},\]
what is \(T(2v_1 - v_2 + 5v_3 )?\)
Solution. Since \[ \left[\begin{array}{ccc} 2 & 0 & 1 \\ 1 & 1 & 5 \\ 2 & 1 & 2 \end{array}\right] \left[\begin{array}{r} 2 \\ -1 \\ 5 \end{array}\right] = \left[\begin{array}{r} 9 \\ 26 \\ 13 \end{array}\right], \] we have \(T(2v_1 - v_2 + 5v_3 ) = 9 v_1 + 26 v_2 + 13 v_3 .\)
Problem 6.14
Let \(T:V \rightarrow V\) be a linear transformation from a finite-dimensional vector space to itself and suppose that the nullity of \(T\) is \(n.\) Show that there exists a basis \(B\) for \(V\) such that the matrix of \(T\) with respect to \(B\) has precisely \(n\) columns of \(0 ' \text{s}.\)
Solution. If \(n=0,\) then there's nothing to prove; Hence assume that \(n > 0.\)
Let \(\dim(V)=m \ge n.\) If \(m=n,\) then \(T\) is the zero map and there's no need to prove. Hence suppose that \(m > n.\) Since \(\dim(\operatorname{Ker}(T))=n,\) we can take a basis for \(\operatorname{Ker}(T)\) that consists of \(n\) vectors, say \(v_1 ,\) \(v_2 ,\) \(\cdots,\) \(v_n.\) Expand this collection to the basis for \(V,\) say \[v_1 ,\, v_2 ,\, \cdots ,\, v_n ,\, \cdots ,\, v_m .\] By construction, \(v_{n+1},\) \(\cdots,\) \(v_m\) don't belong to the kernel of \(T.\) With this collection, we have \[T(v_1 ) =0 ,\, T(v_2) =0 ,\, \cdots ,\, T(v_n) =0\] and \[T(v_{n+1}) \ne 0 ,\, \cdots ,\, T(v_m) \ne 0.\] Hence this collection constitutes a desired basis.
Problem 6.15
Let \(T : V \rightarrow V\) be a linear transformation from a finite-dimensional vector space to itself. Let \(A\) be the matrix of \(T\) with respect to some basis for \(V.\) Show that for any positive integer \(r,\) \(T^r = 0\) if and only if \(A^r = 0.\)
Solution. If \(r=0\) or \(r=1,\) then the result obviously follows. If \(r\ge 2,\) then \[[T^r] = [T]^r = A^r.\] The result directly comes from this identity.
Problem 6.16
Let \(T:V \rightarrow V\) be a linear transformation from a vector space \(V\) of dimension \(n\ge 2\) to itself, and suppose that there exists a subspace \(W\) of \(V\) of dimension \(m\) such that \(T(W) \subseteq W.\) Assume further that \(n > m > 0.\) Show that there is a basis \(B\) of \(V\) such that the matrix of \(T\) relative to \(B\) has the form
\[
\left(
\begin{array}{c|c}
P&Q \\
\hline
0&R
\end{array}
\right)
\]
where \(P\) represents an \(m\times m\) matrix, \(Q\) represents \(m\times (n-m)\) matrix, \(R\) represents an \((n-m)\times (n-m)\) matrix, and \(0\) denote the \((n-m)\times m\) zero matrix.
Solution. Take a basis for \(W\) consisting of \(m\) vectors, say \[v_1 ,\, v_2 ,\, \cdots ,\, v_m .\] Expand this collection to the basis for \(V,\) say \[v_1 ,\, v_2 ,\, \cdots ,\, v_m ,\, v_{m+1} ,\, \cdots ,\, v_n.\tag{*}\] By construction, \(v_{m+1},\) \(\cdots,\) \(v_n\) don't belong to \(W.\) Furthermore \(T(v_j)\in W\) for \(j \le m.\) Hence, if \(j \le m,\) \(T(v_j)\) is expressed by a linear combination of \(v_1 ,\) \(\cdots ,\) \(v_m,\) say \[T(v_j) = \lambda_{j1} v_1 + \lambda_{j2} v_2 +\cdots + \lambda_{jm} v_m + 0v_{m+1} + \cdots + 0v_n .\] Hence the collection (*) constitutes a desired basis.
Problem 6.17
Let \(V\) be a vector space of dimension \(n\) and suppose that \(V = W_1 \oplus W_2\) for subspaces \(W_1\) and \(W_2\) of \(V\) of positive dimensions \(n_1\) and \(n_2 ,\) respectively. Now suppose further that \(T\) is an endomorphism of \(V\) such that \(T(W_j ) \subseteq W_j\) for \(j=1,\,2,\) so that \(T\) maps each of the component subspaces into itself. Show that there is a basis \(B\) for \(V\) such that the matrix of \(T\) with respect to \(B\) takes the form
\[
\left(
\begin{array}{c|c}
P&0 \\
\hline
0&Q
\end{array}
\right)
\]
where \(P\) is an \(n_1 \times n_1\) matrix, \(Q\) is an \(n_2 \times n_2\) matrix and the \(0 \text{'s}\) represent blocks of zeros of the appropriate sizes.
Solution. The solution is not that far from the solutions of problems 14 and 16. Take a basis \[v_1 ,\, v_2 ,\, \cdots ,\, v_{n_1} ,\, w_1 ,\, w_2 ,\, \cdots ,\, w_{n_2}\] where all \(v_i ' \text{s}\) belong to \(W_1\) and all \(w_j ' \text{s}\) belong to \(W_2 .\)
Problem 6.18
Let \(V\) be a finite-dimensional vector space with basis \(v_1 ,\) \(\cdots ,\) \(v_n\) (\(n > 2\) ). Let \(T\) be the endomorphism of \(V\) defined by
\[v_1 \mapsto v_2 ,\,\, v_2 \mapsto v_3 ,\,\, \cdots ,\,\, v_{n-1} \mapsto v_n ,\,\, v_n \mapsto v_1 .\]
Let \(A\) be the matrix of \(T\) with respect to the given basis. Describe \(A.\) What is \(A^n,\) the \(n\)th power of \(A?\)
Solution. Take \[A = [T] = [a_{ij}]_{n\times n}\] where \[a_{ij} = \begin{cases} 1 \quad & \text{if} \, i \equiv j+1 \, (\text{mod} \, n) \\ 0 \quad & \text{otherwise.} \end{cases}\] If \(k\) is a positive integer less than or equal to \(n,\) then \[A^k = [T]^k = [b_{ij}]_{n\times n}\] where \[b_{ij} = \begin{cases} 1 \quad & \text{if} \, i \equiv j+k \, (\text{mod} \, n) \\ 0 \quad & \text{otherwise.} \end{cases}\] If \(k=n,\) we have \(A^n = I_n ,\) the identity matrix.
As an example, if \(n=5,\) then \[A=[T] = \left[\begin{array}{ccccc} 0 & 0 & 0 & 0 & 1 \\ 1 & 0 & 0 & 0 & 0 \\ 0 & 1 & 0 & 0 & 0 \\ 0 & 0 & 1 & 0 & 0 \\ 0 & 0 & 0 & 1 & 0 \end{array}\right]\] and \[A^2 =[T]^2 = \left[\begin{array}{ccccc} 0 & 0 & 0 & 1 & 0 \\ 0 & 0 & 0 & 0 & 1 \\ 1 & 0 & 0 & 0 & 0 \\ 0 & 1 & 0 & 0 & 0 \\ 0 & 0 & 1 & 0 & 0 \end{array}\right].\]
Problem 6.19
Assume that \(V\) is a vector space of dimension \(n.\) Let \(T\) be an endomorphism of \(V,\) and let there be given subspaces \(W_1,\) \(\cdots ,\) \(W_n\) of \(V\) such that the following three conditions are satisfied:
- \(W_j \subseteq W_{j+1}\) (\(j=1,\,\cdots,\, n-1 \))
- \(\dim (W_j ) = j\) (\(j=1,\,\cdots,\,n\))
- \(T(W_j ) \subseteq W_j \) (\(j=1,\,\cdots,\,n\))
Show that there exists a basis \(B\) of \(V\) such that the matrix of \(T\) with respect to \(B\) is upper triangular.
Solution. Take \[\begin{align} v_1&\in W_1 , \\[5pt] v_2&\in W_2 \setminus W_1 , \\[5pt] v_3&\in W_3 \setminus W_2 , \\[5pt] &\vdots \\[5pt] v_n&\in W_n \setminus W_{n-1}. \end{align}\] inductively. Then \(T(v_j)\) is expressible by a linear combination of the first \(j\) vectors of this collection.
Problem 6.20
Given the following basis \(B\) for \(\mathbb{R}^3,\) find the transition matrix from \(B\) to the canonical basis.
\[B = \left\{ (1,\,2,\,-1) ,\,\, (6,\,0,\,1),\,\, (-1,\,2,\,2) \right\}\]
Solution. Let \(S\) be the canonical basis. \[P_{B\rightarrow S} = \left[\begin{array}{rcr} 1 & 6 & -1 \\ 2 & 0 & 2 \\ -1 & 1 & 2 \end{array}\right].\]
Problem 6.21
Let \(V\) be the vector space of real polynomials of degree less than or equal to \(4.\) Let \(B = \left\{ 1,\,x,\, \cdots ,\,x^4 \right\}\) be the usual (ordered) basis of monomials. We can form an alternative basis
\[B ' = \left\{ (1+x)^j \,\,\vert\,\, j = 0 ,\, \cdots ,\, 4 \right\}.\]
Find the transition matrix from \(B ' \) to \(B\) and the transition matrix from \(B\) to \(B ' .\) What is the relationship between the two transition matrices?
Solution. Observe \[\begin{align} v_1 &= (1+x)^0 = 1 , \\[5pt] v_2 &= (1+x)^1 = 1+x , \\[5pt] v_3 &= (1+x)^2 = 1 + 2x + x^2 , \\[5pt] v_4 &= (1+x)^3 = 1 + 3x + 3x^2 + x^3 , \\[5pt] v_5 &= (1+x)^4 = 1 + 4x + 6x^2 + 4x^3 + x^4 . \end{align}\] Hence \[P_{B ' \rightarrow B} = \left[\begin{array}{ccccc} 1 & 1 & 1 & 1 & 1 \\ 0 & 1 & 2 & 3 & 4 \\ 0 & 0 & 1 & 3 & 6 \\ 0 & 0 & 0 & 1 & 4 \\ 0 & 0 & 0 & 0 & 1 \end{array}\right].\] To find the inverse transition matrix, we see that \[\begin{align} 1 & = v_1 ,\\[5pt] x &= -v_1 + v_2 ,\\[5pt] x^2 &= v_1 - 2v_2 + v_3 , \\[5pt] x^3 &= -v_1 + 3v_2 - 3v_3 + v_4 , \\[5pt] x^4 &= v_1 - 4v_2 + 6v_3 - 4v_4 + v_5 . \end{align}\] Hence \[P_{B \rightarrow B ' } = \left[\begin{array}{rrrrr} 1 & -1 & 1 & -1 & 1 \\ 0 & 1 & -2 & 3 & -4 \\ 0 & 0 & 1 & -3 & 6 \\ 0 & 0 & 0 & 1 & -4 \\ 0 & 0 & 0 & 0 & 1 \end{array}\right].\] Obviously, \(P_{B \rightarrow B ' }\) is the inverse matrix of \(P_{B ' \rightarrow B}.\)
Problem 6.22
Let there be given basis \(B,\) \(B ' \) and \(B ' ' \) for the finite-dimensional vector space \(V.\) Suppose that the transition matrix from \(B ' ' \) to \(B ' \) is \(Q\) and that the transition matrix from \(B ' \) to \(B\) is \(P.\) State and prove a formula for the transition matrix from \(B ' ' \) to \(B.\)
Solution. Let \(v\in V\) be given. Since \[Q[v]_{B ' ' } = [v]_{B '}\] and \[P[v]_{B'} = [v]_{B},\] we have \[(PQ)[v]_{B''} = P(Q[v]_{B''}) = P[v]_{B'}= [v]_B.\] Hence the transition matrix from \(B''\) to \(B\) is \(PQ.\)
Problem 6.23
Show that any two similar matrices have the same rank.
Solution. Let \(M_1\) and \(M_2\) be similar matrices. Then there exist a vector space \(V,\) bases \(B_1 ,\) \(B_2 \) for \(V,\) and a linear transformation \(T : V \rightarrow V\) such that \[ [T]_{B_1} = M_1 \quad \text{and} \quad [T]_{B_2} = M_2 .\] Hence \[\operatorname{rank}(M_1) = \dim(\operatorname{Im}(T)) = \operatorname{rank}(M_2 ).\] (You have to fill the descriptions.)
Problem 6.24
What is the inverse to the map described in Theorem 6.14?
Theorem 6.14 reads:
Let \(V\) be an \(n\)-dimensional vector space over \(K,\) and let \(B\) be any basis for \(V.\) Then the mapping
\[\begin{align}
\operatorname{Hom}(V,\,V) &\rightarrow M_n (K) \\[7pt]
T &\mapsto M_B (T)
\end{align}\]
is an isomorphism of \(K\)-algebras.
Solution. Suppose that \(A = [T]_B ,\) then \(T_A = T.\) Hence \(A \mapsto T_A\) is the inverse map. (You need to show that this mapping is well-defined.)
Problem 6.25
Let \(V\) and \(W\) be finite-dimensional vector spaces with \(T\in\operatorname{Hom}(V,\,W).\) Assume the following additional data:
- With respect to the bases \(B\) and \(C\) for \(V\) and \(W,\) respectively, the matrix of \(T\) is \(M.\)
- With respect to the alternative bases \(B ' \) and \(C ' \) for \(V\) and \(W,\) respectively, the matrix of \(T\) is \(N.\)
- In \(V,\) the transition matrix from \(B ' \) to \(B\) is \(P;\) in \(W,\) the transition matrix from \(C ' \) to \(C\) is \(Q.\)
State and prove a formula relating \(N\) to \(M\) via \(P\) and \(Q.\)
Solution. The given datum are translated as follows:
(1) \([T]_{B,C} = M;\)
(2) \([T]_{B',C'} = N;\)
(3) \(P_{B'\rightarrow B}=P ,\,\, P_{C'\rightarrow C} = Q.\)
This translation can be expressed by the diagram as follows:
Hence \(M = QNP^{-1}\) and \(N = Q^{-1} MP.\)
Problem 6.26
Prove without calculation that for matrices \(A\) and \(B,\) \((AB)^T = B^T A^T ,\) whenever these products are defined.
Solution. Since \[(T_A \circ T_B)^* = T_B ^* \circ T_A^*,\] we have \[(AB)^T = [ (T_A \circ T_B)^* ] = [T_B ^*][T_A ^*] = B^T A^T .\]