6

Given: $$ A \in M_{n\times n}(\mathbb R) \; , \; A - A^2 = I $$

Then we have to prove that $A$ does not have real eigenvalues. How do we prove such a thing?

Brian M. Scott
  • 616,228
TheNotMe
  • 4,841

6 Answers6

14

Hint: Apply your equation to an eigenvector.

7

$A-A^2=I\to A^2-A=-I\to A^2-A+I=0$

Since A satisfies its own characteristic equation (Cayley-Hamilton Theorem), replace A with $\lambda$ and see what you get....

  • Why did you replace $I$ with $1$? – TheNotMe May 01 '13 at 16:39
  • sorry...shouldn't have – Eleven-Eleven May 01 '13 at 16:41
  • 2
    When you have done linear algebra for long enough, many people get tired of $I$ and just write $1$ instead. It is not that much different from writing the zero vector, or operator, as $0$. – Harald Hanche-Olsen May 01 '13 at 16:41
  • 1
    You identify the I with 1 when doing these types of problems, especially Cayley Hamilton since you are replacing real or complex numbers with Matrices. – Eleven-Eleven May 01 '13 at 16:43
  • 1
    A satisfies its own characteristic equation, but not every polynomial equation which A satisfies is necessarily its characteristic equation. Therefore, I think you're missing a step in this solution. – Kallus May 01 '13 at 16:49
6

Hint: Is there a real number $\lambda$ with $\lambda-\lambda^2=1$?

  • Obviously not. But I don't know, I can't relate the hint. Why would $A-A^2 = I$ mean that there might be $\lambda - \lambda^2 = 1$ ? – TheNotMe May 01 '13 at 16:38
  • 4
    Combine my hint what that of @Julian. – Harald Hanche-Olsen May 01 '13 at 16:39
  • Apparently I am weak on the theorm side of diagonalization. I know that if $A$ is diagonalization then $Av = \lambda v$. So $\lambda v - \lambda^2v = Iv = v$ and we divide by $v$ But.. is this correct? Because the question did not tell us if $A$ is diagonalizational or not – TheNotMe May 01 '13 at 16:42
  • 1
    No diagonalization needed! You are on the wrong track. Start with @Julian's hint, then come back to mine. – Harald Hanche-Olsen May 01 '13 at 16:44
  • If $v$ is an eigenvector to the eigenvalue $\lambda$ then $Av=\lambda v$ regardless of whether $A$ is diagonalizable or not. – Julian Kuelshammer May 01 '13 at 16:44
  • Okay, i'm lost. I still do not understand why you are allowed to replace $A$ with $\lambda$ – TheNotMe May 01 '13 at 16:52
  • 1
    Under @JulianKuelshammer's assumption, $A^2v=A(Av)=A(\lambda v)=\lambda Av=\lambda\lambda v=\lambda^2v$. Do you get the point now? – Harald Hanche-Olsen May 01 '13 at 16:54
  • Well, that's what I said in my 2nd comment (I guess...) – TheNotMe May 01 '13 at 16:55
  • @TheNotMe $\lambda\bf{v}−\lambda^2\bf{v}=(\lambda-\lambda^2)\bf{v}=\bf{v}$ if and only if $\lambda-\lambda^2=1$ or $\bf{v}=\bf{0}$ (which is not the case here). – Librecoin May 01 '13 at 16:57
6

Assume $A-A^2=1$. Let $Q(X):=X^2-X+1$. Then $Q(A) = 0$.

We also denote the characteristic polynomial of $A$ by $\chi_A$. Furthermore, we denote the minimal polynomial of $A$ by $\mu_A$. This is the smallest polynomial, w.r.t. degree, that satisfies $\mu_A(A)=0$. This polynomial divides all other polynomials $P$ that fulfil $P(A)=0$.

Let $\lambda$ be an arbitrary root of $\chi_A$. Then $\lambda$ is an eigenvalue of $A$ to some eigenvector $v\neq 0$. For any polynomial $P$, $P(\lambda)$ is then an eigenvalue of $P(A)$. In particular, $\mu_A(\lambda)$ is an eigenvalue of $\mu_A(A)$, i.e. $\mu_A(A)\cdot v = \mu_A(\lambda)\cdot v$. However, $\mu_A(A)=0$ by definition of $\mu_A$, thus $\mu_A(\lambda)\cdot v = 0\cdot v = 0$. Since $v \neq 0$, we conclude $\mu_A(\lambda)=0$.

Therefore, any root of $\chi_A$ is also a root of $\mu_A$. Furthermore, since $Q(A)=0$, $\mu_A$ divides $Q$, therefore any root of $\mu_A$ must be a root of $Q$. However, $Q$ has no root in $\mathbb{R}$.

3

$A$ satisfies $x^2-x+1=0$ whose discriminant is negative.

Sugata Adhya
  • 3,979
0

By using index notation, $A-A^2=I$ can be written as $A_{ij}-A_{ik}A_{kj}=\delta_{ij}$. By definition: $A_{ij}n_i=\lambda n_j$. So that, $A_{ij}n_i-A_{ik}A_{kj}n_i=\delta_{ij}n_i$, hence $\lambda n_j -\lambda n_k A_{kj}=n_j$, whence $\lambda n_j -\lambda^2 n_j=n_j$, or $(\lambda^2-\lambda+1)n_j=0$, $n_j\neq 0$ an eigenvector. $\lambda^2-\lambda+1=0$ has not real roots.

pikunsia
  • 145