How Can I Solve a Linear System of Differential Equations Without Determinants?

mrxtothaz
Messages
14
Reaction score
0
I am solving for a linear system of differential equations. Since LaTeX never works out for me on this forum, I have written out my problem and my solution on LaTeX and made an image of it: http://i.imgur.com/ncra.jpg .

I basically have to solve the system of equations and express it as a diagonal matrix. For this, I use the concept of eigenvectors (this is done without determinants). I ran into some difficulties and I am not confident in my solution, so I would really appreciate any feedback on my solution.

Thanks in advance.
 
Last edited by a moderator:
Physics news on Phys.org
There's a bug in the forum software where incorrect images sometimes appear for the rendered LaTeX in previews. The work-around is to reload the page. The correct images will show up then.

Your problem is to solve the system

\begin{pmatrix}\dot{x}_1 \\ \dot{x}_2\end{pmatrix} = \begin{pmatrix}-2 & 1 \\ 1 & -2 \end{pmatrix}\begin{pmatrix}x_1 \\ x_2\end{pmatrix}

You found the eigenvalues are \lambda = -1 and \lambda=3. So far, so good.

Then you wrote the eigenvector for \lambda = -1 is

\vec{v}_1 = t\begin{pmatrix}1 \\ 1\end{pmatrix}

The factor of t shouldn't be there.

Next you said the eigenvectors for \lambda = 3 are

\vec{v}_2 = t\begin{pmatrix}-1 \\ 1\end{pmatrix} \hspace{0.5in} \vec{v}_3 = t\begin{pmatrix}1 \\ -1\end{pmatrix}

Again, the factor of t shouldn't be there. Also, note that the first vector is just a multiple of the second vector, so they're essentially the same eigenvector.
 
There are two things I don't understand about this problem. First, when finding the nth root of a number, there should in theory be n solutions. However, the formula produces n+1 roots. Here is how. The first root is simply ##\left(r\right)^{\left(\frac{1}{n}\right)}##. Then you multiply this first root by n additional expressions given by the formula, as you go through k=0,1,...n-1. So you end up with n+1 roots, which cannot be correct. Let me illustrate what I mean. For this...
Back
Top