I was asked to find the inverse of the following Matrix $A$:
$$\begin{bmatrix}8&-3\\-4&-7\end{bmatrix}$$
I created a new Matrix, $[A|I]$, where $I$ is the $2\times 2$ identity matrix and row reduced it. I ended up with:
$$\begin{bmatrix}7/68&31/68\\-1/17&-2/17\end{bmatrix}$$
But apparently I'm wrong. Any ideas on how to find the inverse?
Formula for the inverse of a $2$ by $2$ matrix is
$$\begin{bmatrix}a & b \\ c & d\end{bmatrix}=\frac{1}{ad-bc}\begin{bmatrix}d & -b \\ -c & a \end{bmatrix}$$