I am relatively new to mathematics, especially matrices. I saw a similar question on here about my question but I could not follow what was being said.
I am trying to work out the inverse of a $2\times 2$ matrix $A$.
I know the inverse matrix $A^{-1}$ reads:
$$A^{-1} = \dfrac{1}{\text{det}(A)} \begin{pmatrix} d & -b \\ -c & a \end{pmatrix}$$
My question is: how is the inverse matrix obtained?
I have tried transposing the cofactor matrix
$$\begin{pmatrix}a & -b \\ c & -d\end{pmatrix} \longrightarrow \begin{pmatrix} a & c \\ -b & -d\end{pmatrix}$$
I am using the book Maths for Chemistry Paul Monk Lindsey J Munro as a starting point. Thank you.
Alternatively, I have tried using the determinant $(ad-bc)$ therefore, \begin{pmatrix}a & -b \\ -c & d\end{pmatrix}.
However, I am not sure how the $a$ and $d$ terms swap as I thought this was not allowed during a transpose, as the principal diagonal remains unchanged.
[![Solved the adjugate of a 2x2 matrix][1]][1]
Hi, i've managed to get my head around this equation. I have poseted my solution below. Thank you for all your help as I could not have viewed the problem differently without your comments! [1]: https://i.stack.imgur.com/TMPok.jpg
Step 1 - Determine every minor for the 2x2 matrix
Matrix A = a11 a12 a21 a22
Determine the minor for each element. This is done by selecting an element, amn, where m is the row and n the column. Eliminate from the matrix the rows m and columns n as in the selected element.
So, for example, a11 we would eliminate the row 1 and column 1, leaving us with the minor a22. a22 is our minor for the element a11. We will refer to minors as Mij, so a22 = M22
Proceeding forward, we get the following minors in order a22 a21 a12 a11 or M22 M21 M12 M11.
These minors M22 M21 M12 M11 correspond to the matrix elements a11, a12, a21, a22 respectively.
Now we have our minor terms in the correct place in the matrix, we can proceed to step 2.
Step 2 - Determining the cofactor matrix or getting the negative signs
The equation cofactor = (-1)^i-j x Minor ij is required.
So now, we have to multiply each minor by (-1)^ij, where i corresponds to the row and j corresponds to the column of the minor.
So for M22 we have: (-1)^2+2 2+2 = 4 --> (-1)^4 = 1
1 x M22 = M22
So for M21 we have: (-1)^2+1 2+1 = 3 --> (-1)^3 = -1
-1 x M21 = -M21
As we proceed forward, we get, in order M22, -M21, -M12, M11
Therefore, we have obtained the adjunct of a 2x2 matrix. In other words, we have obtained d -c -b a which is the second part of the equation required to determine the inverse of a 2x2 square matrix.
I would highly appreciate it if someone could edit and put the matrices in as I do not know how to do this.