Possible Duplicate:
Solve $A^nx=b$ for an idempotent matrix
It is given that:
$$ A = \begin{bmatrix} 2 & 3 & -4 \\ 0 & 1 & 0 \\ 1/2 & 3/2 & -1 \end{bmatrix} $$
and
$$ b = \begin{bmatrix} 1 & 0 & 0 \\ \end{bmatrix} $$
Solve $A^n x = b$ for each positive integer n.
$A$ is idempotent so $A^n$ for positive integers of $n$ will still be equal to $A$. So the equation simply becomes $Ax = b$.
However, unless I am mistaken, $A$ is not invertible so I cannot solve for $x$ by multiplying both sides of the equation by $A^{-1}$.
What should I do instead?