Question 172008
<pre><font size = 4 color = "indigo"><b>
5-step rule for finding the inverse of a 2x2 matrix:

Step 1. Find the determinant by finding the difference
between the product of the elements on the
upper left to lower right diagonal, and the 
product of the elements on the upper left to 
lower right diagonal.  If this determinant is 0,
then the matrix has no inverse and is said to
be "singular".

Step 2. Swap the elements in the upper left to lower right
diagonal.

Step 3. Change the signs of the upper right to lower left
diagonal elements.

Step 4. Divide every element by the determinant value
fund in step 1.

Step 5. Reduce if possible.
 
Matrix 1. {{{(matrix(2,2,2, -1,10, 7))}}}
Step 1. Find the determinant by finding the difference
between the product of the elements on the
upper left to lower right diagonal, and the 
product of the elements on the upper left to 
lower right diagonal.   If this determinant is 0,
then the matrix has no inverse and is said to
be "singular".

{{{determinant = (2)(7)-(-1)(10) = (14)-(-10) = 14+10 = 24}}}     

Step 2. Swap the elements in the upper left to lower right
diagonal.

{{{(matrix(2,2,7, -1,10, 2))}}}


Step 3. Change the signs of the upper right to lower left
diagonal elements.

{{{(matrix(2,2,7, 1,-10, 2))}}}

Step 4. Divide every element by the determinant value
fund in step 1.

{{{(matrix(2,2,7/24, 1/24,-10/24, 2/24))}}}

Step 5.  Reduce if possible

{{{(matrix(2,2,7/24, 1/24,-5/12, 1/12))}}}

You do the other two following this same 
5-step rule:

Matrix 2. {{{(matrix(2,2,-4, 2,-5, 1))}}} 

answer: {{{(matrix(2,2,1/6,-1/3,5/6,-2/3))}}}

Matrix 3. {{{(matrix(2,2,9, -3,-6, 2))}}}

answer: Singular matrix, has no inverse.

Edwin</pre>