A is a 2x2 matrix. Let it satisfy $A^2 = A - I$, where $I = \begin{bmatrix} 1 & 0\\ 0 & 1\end{bmatrix}$. I want to find $A^{15}$:
My Approach:
I isolated $A$:
$A^2-A=-I$
$A(A-I)=-I$
From that, I just tried to solve the system that would generate:
$\begin{bmatrix}a & b \\ c & d\end{bmatrix}\begin{bmatrix}a-1 & b \\ c & d-1\end{bmatrix} = \begin{bmatrix}-1 & 0 \\ 0 & -1\end{bmatrix}$
Turns out this doesn't help me get closer to the answer as it leads to:
$\begin{bmatrix}a(a-1)+bc & b(d-1)+ab\\c\left(a-1\right)+dc &d(d-1)+bc\end{bmatrix} = \begin{bmatrix}-1 & 0 \\ 0 & -1\end{bmatrix}$
Is that the correct approach, or else, which property am I missing in order to solve this problem?
If $A^2 = A - I$ then
$$A^3 = A A^2 = A(A - I) = A^2 - A = (A - I) - A = -I.$$
Therefore, $A^{15} = (-I)^5 = -I$.