[Math] Find the third eigen vector.

matrices

If two eigen vectors of a symmetric matrix are $\left ( \begin{array}{c}
1 \\
-1 \\
1 \end{array} \right)$ and $\left ( \begin{array}{c}
1 \\
0 \\
-1 \end{array} \right)$ then the third eigen vector is ?

I am aware that the eigen vectors of symmetric matrices are mutually orthogonal. How do I use this fact to find the third eigen vector?

Best Answer

As mentioned above, the cross product gives a formula and an immediate answer. However, if you're not familiar with the cross product, and as you've already hinted for the answer in your question, you can do it directly from the orthogonality condition.

Let $(a,b,c)$ be the vector, then the orthogonality reads

$$(a,b,c)\cdot (1,-1,1)=0\Leftrightarrow a-b+c=0,$$ $$(a,b,c)\cdot (1,0,-1)=0\Leftrightarrow a-c=0.$$

So $c=a$, and $b =2a$. We are free to choose any nonzero $a$, and letting $a=1$, we obtain $(1,2,1)$.

Related Question