I am studying linear algebra in school, and I came across this problem: Find A $\in$ $M_2$($\mathbb{R}$) which satisfies $A^4$ = I but $A^2\neq $I. I'm not really sure how to approach it. A programatic way to solve this would be much help.
-
7What about rotations? – Emanuele Paolini Nov 17 '15 at 08:57
3 Answers
Hint : Find some $A$ such that $A^2 = - I$. Since we are in $\mathbb{M}_2$ you can either guess it or try and calculate it!
- 2,891
-
but i guess there is no real matrix $A$ such that $A^2=-I$ – Ekaveera Gouribhatla Nov 17 '15 at 09:14
-
1Have a look at http://math.stackexchange.com/questions/471445/prove-properties-of-a2-i . – Kayle of the Creeks Nov 17 '15 at 09:19
-
Thanks! After some guessing a checking, finally came up with it. Makes sense – Luke LaFountaine Nov 17 '15 at 09:48
Rotation matrices of the form $$R_\theta=\begin{pmatrix}\cos\theta&-\sin\theta\\\sin\theta&\cos\theta\end{pmatrix}$$ can offer answers to the problem of finding $A$ such that $A^n=I$ but $A^k\neq I$ for any $k<n$ by taking $\theta=\frac{2\pi}n$ because of the fundamental property $$R_\theta R_\phi=R_{\theta+\phi}.$$
So in you case ($n=4$) simply take $R_{\pi/2}=\begin{pmatrix}0&-1\\1&0\end{pmatrix}$.
- 6,867
Given $$A^2=-I$$ and since $A$ is $2 \times 2$ matrix, its characteristic equation is of the form:
$$A^2-Tr(A)A+|A|I=O$$ $\implies$
$$-I-Tr(A)A+|A|I=O$$
since $A^2=-I$ ,$|A|=+1$ OR $|A|=-1$ . If $|A|=-1$ we get $A$ with complex entries which are $$ \pm\begin{bmatrix} i & 0\\0 & i\end{bmatrix}$$
If we choose $|A|=1$, Then
$$-Tr(A)A=O$$ which is possible only if $Tr(A)=0$
Hence $A$ will be of the form $$A=\begin{bmatrix} x & a \\ b & -x \end{bmatrix}$$ and since $|A|=1$ we have $$x^2+ab=-1$$ now we can randomly choose values of $x$,$a$ and $b$.
Say $x=2$, $a=1$ and $b=-5$ so
$$A=\begin{bmatrix} 2 & 1 \\ -5 & -2 \end{bmatrix}$$
- 13,026
- 3
- 34
- 70