Mathematics Stack Exchange is a question and answer site for people studying math at any level and professionals in related fields. Join them; it only takes a minute:

Sign up
Here's how it works:
  1. Anybody can ask a question
  2. Anybody can answer
  3. The best answers are voted up and rise to the top

$A = \left(\begin{array}{cc}1 & 0 \\1 & 3\end{array}\right)$.

I find the eigenvalues = 1,3.

The eigenvector corresponding to 1 = $t(1,-2)^t$. The eigenvector corresponding to 3 = $r(1,0)$.

Then I form $C=\left(\begin{array}{cc}1 & 1 \\-2 & 0\end{array}\right)$. But $C^{-1}AC$ is not a diagonal matrix. Rather it is:$\left(\begin{array}{cc}2.5 & -.5 \\-1.5 & 1.5\end{array}\right)$.

What am I doing wrong?

share|cite|improve this question
1  
It looks like you have the components of your eigenvectors reversed (they should be "flipped" upside-down). Try double-checking your calculations. – eigenchris Apr 10 '15 at 17:12
    
mmm...so I noticed this too, but it seems every time I repeat my calculations, I get the same matrix C. – larry Apr 10 '15 at 17:17
    
figured it out. – larry Apr 10 '15 at 17:24
up vote 2 down vote accepted

Your eigenvectors are wrong. They should be $(-2,1)$ and $(0,1)$. The $C$ formed by this works.

http://www.wolframalpha.com/input/?i=%28%7B%7B-2%2C0%7D%2C%7B1%2C1%7D%7D%5E%28-1%29%29%7B%7B1%2C0%7D%2C%7B1%2C3%7D%7D%7B%7B-2%2C0%7D%2C%7B1%2C1%7D%7D

share|cite|improve this answer
    
Why should the eigenvectors be (-2,1), (0,1)? – larry Apr 10 '15 at 17:18
    
Compute A(-2,1) – Zachary Selk Apr 10 '15 at 17:18

Your eigenvectors $\lambda_1=1$ and $\lambda_2=3$ are correct. To get the eigenvecors, we need to solve the equation

$$\left(\begin{array}{cc}1 & 0 \\1 & 3\end{array}\right) \left(\begin{array}{cc}a \\b \end{array}\right) = \lambda \left(\begin{array}{cc}a \\b \end{array}\right) $$

For $\lambda=1$, we get the following equations:

$$a = a$$ $$a + 3b = b$$

By the first equation, $a$ can be whatever we like, so let's set $a=1$. From the second equation we get $b=-\frac{1}{2}$. So our first eigenvector is $v_1 = \left(\begin{array}{cc}1 \\-\frac{1}{2} \end{array}\right) = \left(\begin{array}{cc}-2 \\1 \end{array}\right)$.

Try a similar procedure for the second eigenvector.

share|cite|improve this answer
1  
Your name says it all ;) +1 – Chinny84 Apr 10 '15 at 17:36

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.