Exercises – Long Day#


Exercise 1: Eigenvalues and Eigenvectors#

We are given the matrix

\[\begin{split}{\mathbf A}=\left[\begin{array}{cc} -5 & 10\\ 1 & 4\end{array}\right] \in \mathbb{R}^{2 \times 2}\,.\end{split}\]

Determine whether the following vectors are eigenvectors of matrix \(\mathbf A\). If yes, compute the corresponding eigenvalue.

  1. \(\left[\begin{array}{c} 1 \\ 2\end{array}\right]\)

  2. \(\left[\begin{array}{c} 1 \\ 1\end{array}\right]\)


Exercise 2: Real Eigenvalues and Eigenvectors#

This exercise should be solved purely by hand. As in the previous exercise we consider the matrix

\[\begin{split}{\mathbf A}=\left[\begin{array}{cc} -5 & 10\\ 1 & 4\end{array}\right] \in \mathbb{R}^{2 \times 2}\,.\end{split}\]

Question a#

Determine the characteristic polynomial of \(\mathbf A\,\) and use it to find the eigenvalues of \(\mathbf A\,\). Determine their algebraic multiplicities as well.

Question b#

Determine the eigenspace \(E_{-6}\) corresponding to the eigenvalue \(-6\). What is the geometric multiplicity of the eigenvalue \(-6\)?

Question c#

The eigenspace corresponding to the eigenvalue \(5\) is denoted \(E_{5}\). Try determining \(\mathrm{dim}(E_5)\) by using Theorem 11.2.4. Use the results from Exercise 1 to provide a basis for \(E_{5}\).


Exercise 3: Eigenvalues and Eigenvectors in an Infinite-Dimensional Case#

Let \(C_\infty(\Bbb R)\) be the infinite-dimensional, real vector space mentioned in Example 9.3.4 in the textbook. It contains functions from \(\mathbb{R}\) to \(\mathbb{R}\) that can be differentiated an arbitrary number of times. A linear map \(L: C_\infty(\Bbb R) \to C_\infty(\Bbb R)\) is given by \(L(f)=f''\). In other words, \(L\) maps a function \(f \in C_\infty(\Bbb R)\) to its second-order derivative.

Question a#

Determine whether the following functions are eigenvectors of \(L\). If yes, determine the corresponding eigenvalue.

  1. \(f_1(t)=t^2\)

  2. \(f_2(t)=\cos(t)\)

  3. \(f_3(t)=\sin(t)\)

  4. \(f_4(t)=\mathrm e^{4 t}\)

  5. \(f_5(t)=t\mathrm e^t\)


Exercise 4: Complex Eigenvalues and Eigenvectors#

We are given the matrix

\[\begin{split}{\mathbf A}=\left[\begin{array}{cc} 2 & 2\\ -1 & 4\end{array}\right] \in \mathbb{C}^{2 \times 2}\,.\end{split}\]

Question a#

Set up the characteristic polynomial of \(\mathbf A\,\) and use it to compute the eigenvalues of \(\mathbf A\,\).

Question b#

Determine the eigenspace \(E_{3+i}\) corresponding to the eigenvalue \(3+i\). You may use SymPy to solve the linear equation system or for finding the reduced row-echelon form.

Question c#

State without further computations the eigenspace that belongs to the other eigenvalue.

Question d#

Check your answer with the SymPy command eigenvects() .


Exercise 5: A Nice Basis Change#

We consider the same matrix,

\[\begin{split}{\mathbf B}=\left[\begin{array}{cc} 2 & 2\\ -1 & 4\end{array}\right] \in \mathbb{C}^{2 \times 2}\,,\end{split}\]

as in Exercise 4. Let \(\beta\) be the ordered standard basis for \(\mathbb{C}^2\). We define another ordered basis for \(\mathbb{C}^2\) as follows:

\[\begin{split}\gamma = \left( \left[\begin{array}{cc} 1-i\\ 1\end{array}\right], \left[\begin{array}{cc} 1+i\\ 1\end{array}\right] \right).\end{split}\]

Question a#

Compute the change-of-basis matrix \({}_\beta[\mathrm{id}_{\mathbb{C}^2}]_\gamma\). Now use SymPy to compute the change-of-basis matrix \({}_\gamma[\mathrm{id}_{\mathbb{C}^2}]_\beta\).

Question b#

Compute (e.g. using SymPy) the matrix \({}_\gamma [\mathrm{id}_{\mathbb{C}^2}]_\beta \cdot {\mathbf B} \cdot {}_\beta [\mathrm{id}_{\mathbb{C}^2}]_\gamma\). The result will be a diagonal matrix. Why, though?


Question 6: Eigenvalues and Eigenvectors of a Real \(3 \times 3\) matrix#

A linear map \(f: \mathbb{R}^3 \to \mathbb{R}^3\,\) between real vector spaces has with respect to the ordered standard basis for \(\mathbb{R}^3\,\) the following mapping matrix:

\[\begin{split} {\mathbf A}=\left[\begin{array}{rrr} 1 & -1 & 1 \\ 2 & 4 & -1 \\ 0 & 0 & 3 \end{array}\right]\,. \end{split}\]

Determine the characteristic polynomial and find the eigenvalues of \(f\,\). State the algebraic multiplicity of the eigenvalues. Determine the eigenspaces that belong to each of the eigenvalues, and state the geometric multiplicities of the eigenvalues.


Exercise 7: Eigenvalues and Eigenvectors of another Real \(3 \times 3\) matrix#

We now consider the matrix

\[\begin{split} {\mathbf B}=\left[\begin{array}{rrr} 1 & 1 & 0 \\ 2 & -1 & -1\\ 0 & 2 & 1 \end{array}\right]\,. \end{split}\]

Find the eigenvalues of \(\mathbf B\) and denote their algebraic multiplicities. Determine the real eigenspaces that correspond to each of the eigenvalues, and state the geometric multiplicities of the eigenvalues. You are welcome to use SymPy for computing determinants and reduced row-echelon forms.


Exercise 8: The Characteristic Polynomial of a \(2 \times 2\) Matrix#

Let \(\mathbb{F}\) be a field and \(a,b,c,d\) elements from \(\mathbb{F}\). We consider the matrix

\[\begin{split}{\mathbf A}=\left[ \begin{array}{r} a & b\\ c & d\end{array}\right].\end{split}\]

Question a#

Show that the matrix \(\mathbf A\) has the characteristic polynomial \(Z^2-(a+d)Z+\mathrm{det}({\mathbf A})\). Note: The expression \(a+d\) is called the trace of the matrix and is denoted by \(\mathrm{tr}({\mathbf A})\).

Question b#

Assume that \({\mathbf A}\) has eigenvalues \(\lambda_1\) and \(\lambda_2\). Use the previous question to realise that \(\lambda_1+\lambda_2=\mathrm{tr}({\mathbf A})\) and \(\lambda_1 \cdot \lambda_2=\mathrm{det}({\mathbf A})\).


Exercise 9: Linear Independency of two Eigenvectors#

We are given a matrix \({\mathbf A} \in \mathbb{C}^{2 \times 2}\) as well as two of its eigenvectors \({\mathbf v}_1,{\mathbf v}_2 \in \mathbb{C}^2\). Assume that the corresponding eigenvalues \(\lambda_1,\lambda_2\) are different. Show that \({\mathbf v}_1\) and \({\mathbf v}_2\) are linearly independent.