There are a couple of things you can do that do not involve finding the actual inverse:
1) Do Gaussian elimination. Then if you are left with a matrix with all zeros in a row, your matrix is not invertible.
You do this by adding multiples of the first row as the "pivot row" to other rows, so that you get rid of the leading entries; in your matrix, start by adding (-1)(first row) to the second row (note that this is one of the three basic operations that does not change the solutions of your system)
2) Compute the determinant of your matrix and use the fact that a matrix is invertible iff its determinant is nonzero.
Given$$A = \left[\begin{array}{ccc}
a_{11} & a_{12} & a_{13} \\
a_{21} & a_{22} & a_{23} \\
a_{31}& a_{32} & a_{33} \end{array} \right]$$
You can find the determinant by "cofactor expansion": start with the term $a_{11}$. Now, delete the first column and first row and multiply $a_{11}$ by the determinant of the remaining matrix. Then take $a_{12}$, delete the first row and the second column and multiply $-a_{12}$ by the remaining matrix. Do the same with $a_{13}$, by first deleting the first row of $A$ and the third column and multiplying $a_{13}$ by the determinant of the remaining matrix. Add these three terms and you have found the determinant of A. If this determinant is $0$, your matrix is not invertible; otherwise, it is invertible.