Answer:
Here we have the matrix:
[tex]M = \left[\begin{array}{ccc}1&0\\0&3\end{array}\right][/tex]
And we want to find its inverse.
The inverse of a 2x2 matrix A is:
(1/det(A))*adj(A)
where det(A) is the determinant of the matrix.
Such that for a matrix:
[tex]A = \left[\begin{array}{ccc}a_{11}&a_{12}\\a_{21}&a_{22}\end{array}\right][/tex]
The determinant is:
det(A) = a₁₁*a₂₂ - a₁₂*a₂₁
in the case of our matrix M, the determinant is:
det(M) = 1*3 - 0*0 = 3
and adj(A) is a transposition along the diagonal, and for the other elements, we just change its sign.
Then for our matrix A we would have:
[tex]adj(A) = \left[\begin{array}{ccc}a_{22}&-a_{12}\\-a_{21}&a_{11}\end{array}\right][/tex]
Then for our matrix M, we have:
[tex]adj(M) = \left[\begin{array}{ccc}3&-0\\-0&1\end{array}\right][/tex]
Then the inverse of the matrix M is:
[tex]M^{-1} = \frac{1}{det(M)} *adj(M) = \frac{1}{3}\left[\begin{array}{ccc}3&0\\0&1\end{array}\right] = \left[\begin{array}{ccc}1&0\\0&1/3\end{array}\right][/tex]