Homogeneous Linear SystemsExpected Educational ResultsHomogeneous Linear SystemsNormal Form of a System of Linear DEsNormal Form of a Homogenous System of Linear DEsNormal Form of a Homogenous System of Linear DEs with Constant CoefficientsSolutions to Systems of ODEsComplex EigenvaluesInvestigation 02Investigation 03CC BY-NC-SA 4.0
Author: John J Weber III, PhD Corresponding Textbook Sections:
where ,
, and
is the coefficient matrix.
NOTE: Lowercase variables in boldface are vectors; uppercase variables in boldface are matrices.
otherwise, the system is nonhomogenous.
This is the above equation where all elements, , of the coefficient matrix are all constants.
If is a coefficient matrix of a system of linear DEs, then is an degree polynomial in , called the characteristic polynomial.
Let be the complex conjugate eigenvalues for the characteristic polynomial corresponding to the complex eigenvector . Then the solution to the system of DEs, is
where is the real part of the solution and is the imaginary part of the solution.
NOTE: Only one eigenvalue and its corresponding eigenvector is needed.
Example 04:
Solve the following system of DEs.
Solution:
Rewrite system as:
Using technology, the eigenvalues of the coefficient matrix are
x1(* Store the matrix [2,1; -1,2] *)2A = {{2, 1}, {-1, 2}};34(* Display matrix *)5(* To check that we entered the matrix correctly *)6MatrixForm[A]78(* Method 1 *)9(* Compute eigenvalues of matrix A *)10Eigenvalues[A]1112(* Compute eigenvectors of matrix A *)13Eigenvectors[A]1415(* Method 2 *)16(* Compute eigenvalues and eigenvectors *)17Eigensystem[A]Using technology, the eigenvectors of the coefficient matrix are:
Find the fundamental solution set, expand using Euler's formula (See Question 1 in CPT_11_Complex_Solutions.pdf.):
The solution to the system: which is equivalent to
For the above example, use the other eigenvalue and corresponding eigenvector and verify the equivalence of the solutions.
Use matrix operations to solve the following systems of DEs:
This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License [http://creativecommons.org/licenses/by-nc-sa/4.0/].
Last Modified: Monday, 19 October 2020 8:23 EDT