JustToThePoint English Website Version
JustToThePoint en español
Colaborate with us

Complex Eigenvalues in Systems of Differential Equations

Recall

An expert is a person who has made all the mistakes that can be made in a very narrow field, Niels Bohr

Mistakes are a great educator when one is honest enough to admit them and willing to learn from them, Aleksandr Solzhenitsynv

Fourier Series

Definition. A differential equation is an equation that involves one or more dependent variables, their derivatives with respect to one or more independent variables, and the independent variables themselves, e.g., $\frac{dy}{dx} = 3x +5y, y’ + y = 4xcos(2x), \frac{dy}{dx} = x^2y+y, etc.$

It involves (e.g., $\frac{dy}{dx} = 3x +5y$):

First-Order Linear Ordinary Differential Equations (ODEs)

Definition. A first-order linear ordinary differential equation is an ordinary differential equation (ODE) involving an unknown function y(x), its first derivative y′, and functions of the independent variable x, which can be written in the general form:: a(x)y' + b(x)y = c(x) where:

These equations are termed “linear” because the unknown function y and its derivative y’ appear to the first power and are not multiplied together or composed in any nonlinear way.

If the function c(x)=0 for all x in the interval of interest, the equation simplifies to: a(x)y’ + b(x)y = 0. Such an equation is called a homogeneous linear differential equation.

The Existence and Uniqueness Theorem provides crucial insight into the behavior of solutions to first-order differential equations ODEs. It states that if:

Then, the differential equation y' = f(x, y) has a unique solution to the initial value problem through the point (x0, y0), meaning that it satisfies the initial condition y(x0) = y0.

This theorem ensures that under these conditions, the solution exists and is unique near x = x0.

Fourier Series

General Form of a Linear First-Order System

A linear first-order system has the form:

$\begin{cases} x’ = a(t)x + b(t)y + r_1(t) \\ y’ = c(t)x + d(t)y + r_2(t) \end{cases}$ where:

Fourier Series

Complex Eigenvalues in Systems of Differential Equations

In the study of linear systems of differential equations, we often encounter systems of the form: x′(t) = Ax(t) where:

Solving such systems involves finding the eigenvalues and eigenvectors of the matrix A. When A has distinct real eigenvalues, λ1 and λ2 with corresponding eigenvectors v1 and v2, the general solution is straightforward: $x = C_1e^{λ_1t}v_1 + C_2e^{λ_2t}v_2$.

However, when the eigenvalues are complex λ = a ± ib with a corresponding complex eigenvector v, additional steps are necessary to obtain real-valued solutions, which are essential for real-world applications.

Steps to Find the Real-Valued Solution

Suppose A has a pair of complex conjugate eigenvalues, λ = a ± ib with a corresponding complex eigenvector v. Since the system x′(t) = Ax(t) is real, we seek real-valued solutions. We can achieve this by utilizing Euler’s formula and separating the complex solution into its real and imaginary parts.

Theorem: Given a real n x n matrix A with a complex eigenvalue λ = a + ib and corresponding complex eigenvector $\vec{v}$, :the general real solution to the system of differential equations x′ = Ax is: $x(t) = e^{at}[C_1· \mathbb{R}(e^{ibt}\vec{v}) + C_2\mathbb{ℑ}(e^{ibt}\vec{v})]$ where:

  1. Finding Eigenvalues and Eigenvectors. Solve the characteristic equation det(A− λI) = 0 to find the eigenvalues λ. If λ = a +ib is a complex eigenvalue, its complex conjugate λ = a −ib is also an eigenvalue of A because A has real entries. Find a corresponding complex eigenvector v by solving (A −λI)v=0.
  2. Constructing the Complex Solution. The complex solution to the system is xcomplex(t) = eλtv = eat(eibtv).
  3. Separating into Real and Imaginary Parts. Use Euler’s Formula : eibt = cos(bt) + isin(bt). Express v in terms of its real and imaginary parts: v = vreal + ivimaginary. Multiply eibt and v to obtain the real and imaginary components.

    xcomplex(t) = eλtv = eat(eibtv) = eat(cos(bt) + isin(bt))(vreal + ivimaginary).

  4. Forming Real-Valued Solutions. The real part xreal(t) = $e^{at}[cos(bt)v_{real}-sin(bt)v_{imaginary}]$ is a real-valued solution. The imaginary part ximaginary(t) = $e^{at}[sin(bt)v_{real}+cos(bt)v_{imaginary}]$ is also a real-valued solution. Both xreal(t) and ximaginary(t) satisfy the differential equation.
  5. General Solution. The general real solution is a linear combination of the real and imaginary parts: x(t) = C1xreal(t) + C2ximaginary(t).

Give the general solution to the system:

$\begin{cases} x’ = 2x + -5y \\ y’ = x -2y \end{cases}$

Our goal is to solve this system and find expressions for x(t) and y(t).

We can express this system as a matrix equation: x’ = Ax where x = $\left( \begin{smallmatrix}x\\ y\end{smallmatrix} \right)$ and the matrix A is $\left( \begin{smallmatrix}2 & -5\\ 1 & -2\end{smallmatrix} \right)$

The first step in solving this system is to find the eigenvalues of matrix A. The characteristic equation is given by: |A - λI| = $\left| \begin{smallmatrix}2-λ & -5\\ 1 & -2-λ\end{smallmatrix} \right| = (2-λ)(-2-λ)+5 = -4-2λ +2λ +λ^2 + 5 = λ^2 + 1 = 0 ⇒[\text{Solving for λ}] λ = ± i$. The eigenvalues are complex conjugates.

Now we solve for the eigenvector to λ = i:

$(A−λI)v=0 ↭ \left( \begin{smallmatrix}2-i & -5\\ 1 & -2-i\end{smallmatrix} \right)(\begin{smallmatrix}a_1\\a_2\end{smallmatrix}) = 0$

This leads to the following system of equations:

$\begin{cases} (2-i)a_1 + -5a_2 = 0 \\ a_1 + (-2-i)a_2 = 0 \end{cases}$

From the second equation (ii), $a_1 = (2+i)a_2 ⇒[\text{Replace this in (i)}] (2-i)(2+i)a_2 -5a_2 = 0 ↭ (4 -i^2)a_2 -5a_2 = 0 ↭ 5a_2 -5a_2 = 0,$ so any a_2 is a solution. Therefore, for simplicity, let’s choose $a_2 = 1, a_1 = (2 +i)$. Eigenvector Corresponding to λ=i: $v = (\begin{smallmatrix}2+i\\1\end{smallmatrix})$

The complex solution to the system is given by: $x(t)= e^{λt}v = e^{it}(\begin{smallmatrix}2+i\\1\end{smallmatrix}) =[\text{Using Euler’s formula}] (cos(t)+isin(t))(\begin{smallmatrix}2+i\\1\end{smallmatrix}) = (\begin{smallmatrix}(cos(t)+isin(t))(2+i)\\cos(t)+isin(t)\end{smallmatrix}) = \text{Simplifying, we get} (\begin{smallmatrix}(2cos(t)-sin(t))+i(cos(t)+2sin(t))\\cos(t)+isin(t)\end{smallmatrix}) $

Combining the real and imaginary parts, we get two real-valued solutions:

xreal(t) = $(\begin{smallmatrix}2cos(t)-sin(t)\\cos(t)\end{smallmatrix})$

ximaginary(t) = $(\begin{smallmatrix}cos(t)+2sin(t)\\sin(t)\end{smallmatrix})$

Thus, the general solution to the system is a linear combination of the real and imaginary parts:

x(t) = c1xreal(t) + c2ximaginary(t) = $c_1(\begin{smallmatrix}2cos(t)-sin(t)\\cos(t)\end{smallmatrix})+c_2(\begin{smallmatrix}cos(t)+2sin(t)\\sin(t)\end{smallmatrix})$

Intuition:

Modelling a love affair

In this problem, we model the dynamics of a romantic relationship between Susan and George using a system of differential equations. Let x(t) represents Susan’s love for George, and y(t) represents George’s love for Susan. Their love dynamics (interaction of their feelings) are modeled by the following system of differential equations:

$\begin{cases} x’ = x + 2y \\ y’ = -x -y \end{cases}$

Our goal is to solve this system and find expressions for x(t) and y(t).

Step 1: Representing the System in Matrix Form

We can express this system as a matrix equation: x’ = Ax where x = $\left( \begin{smallmatrix}x\\ y\end{smallmatrix} \right)$ and the matrix A is $\left( \begin{smallmatrix}1 & +2\\ -1 & -1\end{smallmatrix} \right)$

Thus, the system becomes: $\left( \begin{smallmatrix}x’\\ y’\end{smallmatrix} \right) = \left( \begin{smallmatrix}1 & +2\\ -1 & -1\end{smallmatrix} \right)\left( \begin{smallmatrix}x\\ y\end{smallmatrix} \right)$

Step 2: Finding the Eigenvalues of Matrix A

The second step in solving this system is to find the eigenvalues of the coefficient matrix A. The characteristic equation is given by: |A - λI| = $\left| \begin{smallmatrix}1-λ & +2\\ -1 & -1-λ\end{smallmatrix} \right| = (1-λ)(-1-λ)+2 = -1+λ -λ +λ^2 + 2 = λ^2 + 1 = 0 ⇒[\text{Solving for λ}] λ = ± i$. The eigenvalues are complex conjugates.

We solve the system: $(A-λ_iI)(\begin{smallmatrix}a_1\\a_2\end{smallmatrix}) = 0$

which is equivalent to solving:

$\left( \begin{smallmatrix}1-i & +2\\ -1 & -1-i\end{smallmatrix} \right)(\begin{smallmatrix}a_1\\a_2\end{smallmatrix}) = 0$.

This leads to the following system of equations:

$\begin{cases} (1-i)a_1 + 2a_2 = 0 \\ -a_1 + (-1-i)a_2 = 0 \end{cases}$

From the first equation: $a_1 = \frac{-2a_2}{1-i}$. Substitute in the second equation $-\frac{-2a_2}{1-i} + (-1-i)a_2 = 0 ↭ \frac{2a_2(1+i)}{(1-i)(1+i)}+ (-1-i)a_2 = 0 ↭ \frac{2a_2(1+i)}{2}+ (-1-i)a_2 = 0 ↭ a_2(1+i)+ (-1-i)a_2 = 0 ↭ a_2(1+i-1-i) = 0↭ a_2·0 = 0$. Since this equation is always true, a2 can be any non-zero value. Let’s choose a2​ = 1 for simplicity. Then, (ii) $a_1 = (-1-i)a_2 = -1-i$

The solution is: $(\begin{smallmatrix}a_1\\a_2\end{smallmatrix}) = (\begin{smallmatrix}-1-i\\ 1 \end{smallmatrix})$

Step 4: Constructing the Complex Solution

The complex solution to the system is given by: $(\begin{smallmatrix}-1-i\\ 1 \end{smallmatrix})e^{it} = [(\begin{smallmatrix}-1\\ 1 \end{smallmatrix})+i(\begin{smallmatrix}-1\\ 0 \end{smallmatrix})](cos(t) + isin(t))$

Step 5: Separating into Real and Imaginary Parts

Combining the real and imaginary parts, we get two real-valued solutions:

xreal(t) = $(\begin{smallmatrix}x\\ y\end{smallmatrix}) = (\begin{smallmatrix}-1\\ 1 \end{smallmatrix})cos(t)-(\begin{smallmatrix}-1\\ 0 \end{smallmatrix})sin(t) = (\begin{smallmatrix}-cos(t)+sin(t)\\ cos(t) \end{smallmatrix})$

ximaginary(t) = $(\begin{smallmatrix}x\\ y\end{smallmatrix}) = (\begin{smallmatrix}-1\\ 1 \end{smallmatrix})sin(t)+(\begin{smallmatrix}-1\\\ 0 \end{smallmatrix})cos(t) = (\begin{smallmatrix}-cos(t)-sin(t)\\\ sin(t) \end{smallmatrix})$

Step 6: Forming the General Real-Valued Solution

Thus, the general solution to the system is a linear combination of these:

x(t) = c1xreal(t) + c2ximaginary(t) = $c_1(\begin{smallmatrix}-cos(t)+sin(t)\\ cos(t) \end{smallmatrix})+c_2(\begin{smallmatrix}-cos(t)-sin(t)\\\ sin(t) \end{smallmatrix})$

$x(t) = (\begin{smallmatrix}-c_1cos(t)+c_1sin(t)-c_2cos(t)-c_2sin(t)\\ c_1cos(t)+c_2sin(t)\end{smallmatrix}) = (\begin{smallmatrix}-(c_1+c_2)cos(t)+(c_1-c_2)sin(t)\\ c_1cos(t)+c_2sin(t)\end{smallmatrix})$

Step 7. Interpretation of the Solution

Bibliography

This content is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License and is based on MIT OpenCourseWare [18.01 Single Variable Calculus, Fall 2007].
  1. NPTEL-NOC IITM, Introduction to Galois Theory.
  2. Algebra, Second Edition, by Michael Artin.
  3. LibreTexts, Calculus and Calculus 3e (Apex). Abstract and Geometric Algebra, Abstract Algebra: Theory and Applications (Judson).
  4. Field and Galois Theory, by Patrick Morandi. Springer.
  5. Michael Penn, and MathMajor.
  6. Contemporary Abstract Algebra, Joseph, A. Gallian.
  7. YouTube’s Andrew Misseldine: Calculus. College Algebra and Abstract Algebra.
  8. MIT OpenCourseWare [18.03 Differential Equations, Spring 2006], YouTube by MIT OpenCourseWare.
  9. Calculus Early Transcendentals: Differential & Multi-Variable Calculus for Social Sciences.
Bitcoin donation

JustToThePoint Copyright © 2011 - 2025 Anawim. ALL RIGHTS RESERVED. Bilingual e-books, articles, and videos to help your child and your entire family succeed, develop a healthy lifestyle, and have a lot of fun. Social Issues, Join us.

This website uses cookies to improve your navigation experience.
By continuing, you are consenting to our use of cookies, in accordance with our Cookies Policy and Website Terms and Conditions of use.