Exercises – Long Day#


Exercise 1: A Real, Non-Linear Differential Equation#

We are given the real differential equation \(f'(t)^2-4\mathrm e^{2t} \cdot f(t)=0\).

Question a#

Is the function \(f(t)=t\) a solution to the differential equation?

Question b#

Is the function \(f(t)=\mathrm e^{2t}\) a solution to the differential equation?


Exercise 2: A Real, Linear Differential Equation#

In this exercise we investigate the real differential equation

\[f'(t)-3f(t)=t.\]

Question a#

We are being informed that real numbers \(a\) and \(b\) exist such that the function \(at+b\) is a solution to the differential equation. Compute \(a\) and \(b\).

Question b#

Determine the general solution to the real differential equation \(f'(t)-3f(t)=0\).

Question c#

Use your answers to the previous questions to find the general solution to the real differential equation \(f'(t)-3f(t)=t\).


Exercise 3: Initial Conditions#

We are being informed that the general solution to the real differential equation \(f'(t)=\mathrm e^t \cdot f(t)\) is given by \(f(t)=c\cdot \mathrm e^{\mathrm e^t},\) where \(c \in \mathbb{R}.\)

Question a#

Check by insertion into the given differential equation that \(f(t)=3\cdot \mathrm e^{\mathrm e^t}\) indeed is a solution.

Question b#

Find the solution to the differential equation that fulfills the initial-value condition \(f(0)=1\).


Exercise 4: A Homogeneous, Real System of Linear Differential Equations (By Hand)#

This exercise is intended to be solved purely by handed. A linear, real system of differential equations with constant coefficients is given as follows:

\[\begin{split} \left[\begin{array}{c} f_1'(t)\\ f_2'(t)\end{array}\right] = \left[\begin{array}{rr} 1 & 8\\ 1 &-1\end{array}\right] \cdot \left[\begin{array}{c} f_1(t)\\ f_2(t)\end{array}\right]. \end{split}\]

Question a#

Compute the eigenvalues of the coefficient matrix as well as their associated eigenspaces, and state based on this the general solution to the given differential equation system.

Question b#

Determine the solution to the given system of differential equations that fulfills \(f_1(0)=0\) and \(f_2(0)=3\).


Exercise 5: A homogeneous, Real System of Linear Differential Equations (SymPy)#

We are given the following real system of differential equations:

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

Question a#

Find a matrix \(\mathbf A\) and functions \(q_1(t)\) and \(q_2(t)\) such that

\[\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]+\left[\begin{array}{c} q_1(t)\\ q_2(t)\end{array}\right]. \end{split}\]

Is the system homogeneous or inhomogeneous?

Question b#

Use SymPy to find the eigenvalues of \({\mathbf A}\) as well as bases for its corresponding eigenspaces. Use SymPy’s output to write out the general solution to the given real system of differential equations.


Exercise 6: 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) & = & 8f_1(t)+5f_2(t)+3\\ f_2'(t) & = & -10f_1(t)-7f_2(t)+1. \end{array} \right. \end{split}\]

Question a#

Check that the corresponding homogeneous system of differential equations is the system given in Exercise 5.

Question b#

We are informed that real numbers \(a\) and \(b\) exist such that the constant functions \(f_1(t)=a\) and \(f_2(t)=b\) constitute a particular solution to the given inhomogeneous system. Now compute \(a\) and \(b\). If you need inverse matrices you may compute them using SymPy.

Question c#

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


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

We consider the same inhomogeneous, real system of differential equations as in Exercise 6. Compute the solution to the system that fulfills the initial conditions

\[\begin{split}\left[ \begin{array}{c} f_1(0) \\ f_2(0) \end{array} \right]=\left[ \begin{array}{c} 4 \\ -5\end{array} \right].\end{split}\]

You may compute inverse matrices using SymPy.


Exercise 8: The Solution Formula for Inhomogeneous, 1st-Order Differential Equations#

We are given the real differential equation \(f'(t)+f(t)/t=3t.\) We will assume that \(t>0\).

Question a#

Compute the general solution to the differential equation.

Question b#

Compute the particular solution to the differential equation that fulfills the initial condition \(f(1)=5\).


Exercise 9: A Tricky Coefficient Matrix#

Let \(\lambda\) be a real number, and consider the following real differential equation system:

\[\begin{split} \left[\begin{array}{c} f_1'(t)\\ f_2'(t)\\ f_3'(t)\end{array}\right] = \left[\begin{array}{rrr} \lambda & 1 & 0\\ 0 & \lambda &1\\ 0 & 0 & \lambda\end{array}\right] \cdot \left[\begin{array}{c} f_1(t)\\ f_2(t)\\ f_3(t)\end{array}\right]. \end{split}\]

What is the general solution of the system?