Find eigenvectors for 2x2 system

40 Views Asked by At

While solving non linear system I got this matrix and don't know how to get the eigenvectors to draw the phase portrait. I got zero for both eigenvectors. \begin{bmatrix} 3 & 0 \\ 0& 2 \end{bmatrix} could you help explaining this?

1

There are 1 best solutions below

0
On

Ahaha, I see what happened.

Your first equation for, let's say $\lambda=3$, would be $0x+0y=0$ (meaningless) and $0x-1y=0$, Then obviously, you have $y=0$. However, since it's $0x$, really $x$ can be anything. Which means the eigenvector is $\begin{pmatrix}n\\0 \end{pmatrix}$. Or we just norm it as $\begin{pmatrix}1\\0 \end{pmatrix}$.

Similarly you get $\begin{pmatrix}0\\1 \end{pmatrix}$ for $\lambda=2$.