Exercises – Short Day#


Exercise 1: A Homogeneous, Complex System of Linear Differential Equations#

We are given the following complex system of differential equations:

\[\begin{split} \left\{ \begin{array}{rcl} f_1'(t) & = & 2f_1(t)-5f_2(t)\\ f_2'(t) & = & f_1(t)-2f_2(t) \end{array}. \right. \end{split}\]

Question a#

The system can be written in the form

\[\begin{split} \left[\begin{array}{c} f_1'(t)\\ f_2'(t)\end{array}\right] = {\mathbf A} \cdot \left[\begin{array}{c} f_1(t)\\ f_2(t)\end{array}\right]. \end{split}\]

What is the matrix \(\mathbf A\)? Also determine the characteristic polynomial of the matrix.

Question b#

We are being informed that over the complex numbers the eigenspace \(E_i\) of the matrix \(\mathbf A\) from Question a is given by

\[\begin{split} E_i=\mathrm{span}_{\mathbb C}\left( \left[\begin{array}{c} 2+i\\ 1\end{array}\right] \right).\end{split}\]

Describe without further computations the eigenspace \(E_{-i}\).

Question c#

Provide the general, complex solution to the given system of differential equations.


Exercise 2: From Complex to Real Solutions#

In this exercise we consider the same system of differential equations as in Exercise 1:

\[\begin{split} \left\{ \begin{array}{rcl} f_1'(t) & = & 2f_1(t)-5f_2(t)\\ f_2'(t) & = & f_1(t)-2f_2(t) \end{array}. \right. \end{split}\]

The general, complex solution to this system is:

\[\begin{split} \left[\begin{array}{c} f_1(t)\\ f_2(t)\end{array}\right] =c_1 \cdot \left[\begin{array}{c} 2+i\\ 1\end{array}\right]\cdot \mathrm e^{it}+c_2 \cdot \left[\begin{array}{c} 2-i\\ 1\end{array}\right] \cdot \mathrm e^{-it}=\left[\begin{array}{c} c_1\cdot (2+i)\cdot \mathrm e^{it}+c_2\cdot (2-i)\cdot \mathrm e^{-it}\\ c_1\cdot \mathrm e^{it}+c_2\cdot \mathrm e^{-it}\end{array}\right]\, , \quad \text{ where } c_1,c_2 \in \mathbb{C}. \end{split}\]

The goal with this exercise is to exemplify how one from complex solutions can achieve real solutions. The general approach is described in Corollary 12.2.6 from the textbook.

Question a#

In the given general solution we choose the constants \(c_1\) and \(c_2\) such that \(c_1=c_2=a\), where \(a\) is a real number. Show that the solution in this case can be rewritten to:

\[\begin{split} \left[\begin{array}{c} f_1(t)\\ f_2(t)\end{array}\right] =a \cdot \left[\begin{array}{c} 2(\mathrm e^{it}+\mathrm e^{-it})\\ \mathrm e^{it}+\mathrm e^{-it}\end{array}\right] +a \cdot \left[\begin{array}{c} i(\mathrm e^{it}-\mathrm e^{-it})\\ 0\end{array}\right]. \end{split}\]

Now use Euler’s formulas (equations (3.7) and (3.8) in the textbook) to express \(\mathrm e^{it}\) and \(\mathrm e^{-it}\) in terms of \(\cos(t)\) and \(\sin(t)\). What is the result?

Question b#

In the given general solution we now choose the constants \(c_1\) and \(c_2\) such that \(c_1=b\cdot i\) and \(c_2=-b \cdot i\), where \(b\) is a real number. Rewrite this solution in terms of \(\cos(t)\) and \(\sin(t)\).


Exercise 3: Initial Conditions in a Real System of Linear Differential Equations#

The system from Exercise 1 is considered once again, but this time as a real system of differential equations. From Exercise 2 (and Corollary 12.2.6) we conclude that the general, real solution to the system is:

\[\begin{split} \left[\begin{array}{c} f_1(t)\\ f_2(t)\end{array}\right] = a \cdot \left[\begin{array}{c} 4\cos(t)-2 \sin(t)\\ 2\cos(t)\end{array}\right]+b\cdot \left[\begin{array}{c} -2\cos(t)-4 \sin(t)\\ -2\sin(t)\end{array}\right]\, , \quad \text{ where } a,b \in \mathbb{R}. \end{split}\]

Determine the solution to the system that fulfills the initial conditions \(f_1(\pi)=1\) and \(f_2(\pi)=3\).


Exercise 4: An Inhomogeneous, Real System of Linear Differential Equations#

We are given the following real system of differential equations:

\[\begin{split} \left\{ \begin{array}{rcl} f_1'(t) & = & 2f_1(t)-5f_2(t)+\mathrm e^{2t}\\ f_2'(t) & = & f_1(t)-2f_2(t)-\mathrm e^{2t} \end{array}. \right. \end{split}\]

Notice that the corresponding homogeneous system of differential equations is the system considered in Exercise 3.

Question a#

We are informed that a paricular solution to the given system exists in the form:

\[\begin{split} \left[\begin{array}{c} f_1(t)\\ f_2(t)\end{array}\right] = \left[\begin{array}{c} d_1\cdot \mathrm e^{2t}\\ d_2\cdot \mathrm e^{2t}\end{array}\right]\, , \end{split}\]

where \(d_1\) and \(d_2\) are some non-given real numbers. Determine \(d_1\) and \(d_2\).

Question b#

Provide the general, real solution to the given inhomogeneous system of differential equations.


Exercise 5: A Coefficient Matrix that cannot be Diagonalized#

We consider the following homogeneous, real system of differential equations:

\[\begin{split} \left\{ \begin{array}{rcl} f_1'(t) & = & 2f_1(t)+f_2(t)\\ f_2'(t) & = & -4f_1(t)-2f_2(t). \end{array} \right. \end{split}\]

Question a#

Determine the coefficient matrix \(\mathbf A\) of the system and investigate its eigenvalues and eigenvectors using SymPy. Can the coefficient matrix be diagonalized?

Question b#

Now first determine the general solution to the following homogeneous system of differential equations:

\[\begin{split} \left[\begin{array}{c} g'_1(t)\\ g'_2(t)\end{array}\right] = {\mathbf J} \cdot \left[\begin{array}{c} g_1(t)\\ g_2(t)\end{array}\right],\end{split}\]

where

\[\begin{split} {\mathbf J}= \left[\begin{array}{cc} 0 & 1\\0 & 0\end{array}\right]. \end{split}\]

Question c#

We are informed that \({\mathbf A}={\mathbf Q} \cdot {\mathbf J} \cdot {\mathbf Q}^{-1}\), where \(\mathbf J\) is as before and where

\[\begin{split} {\mathbf Q}= \left[\begin{array}{cc} 1 & 0\\-2 & 1\end{array}\right]. \end{split}\]

You may check this equation using SymPy. It can be shown that this implies that

\[\begin{split}\left[\begin{array}{c} f_1(t)\\ f_2(t)\end{array}\right] \quad \text{ is a solution to the system } \left[\begin{array}{c} f'_1(t)\\ f'_2(t)\end{array}\right] = {\mathbf A} \cdot \left[\begin{array}{c} f_1(t)\\ f_2(t)\end{array}\right]\end{split}\]

if and only if

\[\begin{split}\left[\begin{array}{c} g_1(t)\\ g_2(t)\end{array}\right] = {\mathbf Q}^{-1} \cdot \left[\begin{array}{c} f_1(t)\\ f_2(t)\end{array}\right] \quad \text{ is a solution to the system } \left[\begin{array}{c} g'_1(t)\\ g'_2(t)\end{array}\right] = {\mathbf J} \cdot \left[\begin{array}{c} g_1(t)\\ g_2(t)\end{array}\right].\end{split}\]

Now find the general solution to the original homogeneous system of differential equations that had the coefficient matrix \(\mathbf A\).