Skip to content

Instantly share code, notes, and snippets.

@SkamDart
Created November 28, 2017 18:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SkamDart/3d4e8e7992b4aa9c1fa6a549e29cbafe to your computer and use it in GitHub Desktop.
Save SkamDart/3d4e8e7992b4aa9c1fa6a549e29cbafe to your computer and use it in GitHub Desktop.
Given $\dot y = Ly$ with $y^{(0)} \neq \hat 0$, determine the behavior of the linear system of ODE's.
We can express $y(0)$ as the linear combination,
$$y(0) = \sum_{i = 1}^{n}\alpha_iv_i$$
where $\alpha_i$ is a scalar. Then we have a closed form for $y(t)$,
$$y(t) = \sum_{i = 1}^{n} \alpha_i v_i e^{\lambda_it}$$
Consider the following cases for $L$ with
First, let $L = -(A^TA)$. The matrix $A^TA$ is symmetric positive definite so it has all strictly positive real eigenvalues. Hence, $L$ has strictly negative real eigenvalues.
Second, let $L = -(A^T + A)$. As a result of $A^T$ and $A$ having the same characteristic polynomial. $A^T, A$ have the same eigenvalues. So the eigenvalues of $L$ are strictly negative but double in magnitude of $(A^T A).
Third, let $L = -(A^T - A)$. As stated above, eigenvalues are equal in each matrix so the eigenvalues of $L$ must be $0$.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment