Section 2.4 Project: matrix transformations
Exercise 2.4.1.
Confirm that
\begin{equation*}
B=\left\{\begin{bmatrix}1\\0\\2\\3\end{bmatrix},\begin{bmatrix}4\\2\\0\\-3\end{bmatrix},
\begin{bmatrix}0\\4\\-3\\2\end{bmatrix}, \begin{bmatrix}3\\5\\-2\\1\end{bmatrix}\right\}
\end{equation*}
is a basis for \(\R^4\text{.}\)
To assist with solving this problem, a code cell is provided below. Recall that you can enter the matrix \(\begin{bmatrix}a\amp b\amp c\\d\amp e\amp f\\g\amp h\amp i\end{bmatrix}\) as Matrix([[a,b,c],[d,e,f],[g,h,i]])
or as Matrix(3,3,[a,b,c,d,e,f,g,h,i])
.
The reduced row-echeleon form of A
is given by A.rref()
. The product of matrices A
and B
is simply A*B
. The inverse of a matrix A
can be found using A.inv()
or simply A**(-1)
.
In a Jupyter notebook, remember you can generate additional code cells by clicking on the +
button.
You can also use the cell below to write down any necessary explanation.
Exercise 2.4.2.
Write each of the standard basis vectors in terms of this basis.
Suggestion: in each case, this can be done by solving a matrix equation, using the inverse of an appropriate matrix.
Let \(\{\vece_1,\vece_2,\vece_3, \vece_4\}\) denote the standard basis for \(\R^4\text{.}\)
Exercise 2.4.3.
Determine \(T(\vece_i)\) for \(i=1,2,3,4\text{,}\) and in so doing, determine the matrix \(A\) such that \(T=T_A\text{.}\)
Exercise 2.4.4.
Let \(M\) be the matrix whose columns are given by the values of \(T\) on the basis \(B\text{.}\) (This would be the matrix of \(T\) if \(B\) was actually the standard basis.) Let \(N\) be the matrix whose inverse you used to solve part (b). Can you find a way to combine these matrices to obtain the matrix \(A\text{?}\) If so, explain why your result makes sense.
Let \(T\) be the linear transformation given in the previous exercises.
Exercise 2.4.5.
Determine the kernel of \(T\text{.}\)
Exercise 2.4.6.
Determine the image of \(T\text{.}\)
Exercise 2.4.7.
The Dimension Theorem states that for a linear transformation \(T:V\to W\text{,}\) where \(V\) is finite-dimensional,
\begin{equation*}
\dim V = \dim\ker(T)+ \dim\im(T)\text{.}
\end{equation*}
Confirm that your results on this worksheet agree with this theorem.