General solution to system of equations and initial value problem

paperweight11
Messages
5
Reaction score
0

Homework Statement



Find the general solution for the following systems of equations, a solution to the
initial value problem and plot the phase portrait.
--> this is in matrix formx' =

1 2
0 3

all multiplied by x.

also, x(0) =

2
-1

Homework Equations



Determinant, etc.

The Attempt at a Solution



I first use the eigen values and get it to:

eigenvalue1 = 1; eigenvalue2= 3

however, when I start with 1, my matrix is pretty screwed up:

0 2
0 2

So when I'm trying to figure out the values for the eigenvector I am confused. I don't know what to put it as.

Any help would be appreciated. Thanks.
 
Physics news on Phys.org
hi paperweight11! :smile:
paperweight11 said:
I first use the eigen values and get it to:

eigenvalue1 = 1; eigenvalue2= 3

how did you get those? :confused:

(those would be the eigenvalues for 1,0,,0,3)
 
They are also the eigenvalues for
\begin{bmatrix} 1 & 2 \\ 0 & 3\end{bmatrix}
since the characteristic equation is just
\left|\begin{array}{cc}1- \lambda & 2 \\ 0 & 3- \lambda\end{array}\right|= (1- \lambda)(3- \lambda)= 0
(The eigenvalues for any triangular matrix are just the values on the diagonal.)

The eigenvectors must satisfy
\begin{bmatrix}1 & 2 \\ 0 & 3\end{bmatrix}\begin{bmatrix}x \\ y \end{bmatrix}= \begin{bmatrix}x \\ y\end{bmatrix}
so x+ 2y= x and y= y. x+ 2y= x reduces to y= 0 which gives <1, 0> as an eigenvector, and
\begin{bmatrix}1 &amp; 2 \\ 0 &amp; 3\end{bmatrix}\begin{bmatrix}x \\ y \end{bmatrix}= \begin{bmatrix}3x \\ 3y\end{bmatrix}
so x+ 2y= 3x and 3y= 3y so that y= x which gives <1, 1> as an eigenvector.

( Your
0 2
0 2
is the same as 2y= 0 so the eigenvector is <1, 0>.)
 
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