Why the inverse of a matrix involves division by the determinant

determinantlinear algebramatrices

I was studying inverse matrix. Suddenly I stumbled on the inverse of 3×3 K. And it involved a division by the determinant (Well, only with numbers it was). And it was also said, about involving a division by the determinant. Then I got the inverse of a 2×2 matrix,with variables as entries(That's the general form of the 2×2 real number matrix). And it also involved a division by ad-bc(the determinant). But why is that? Maybe it's the result of something in the matrix?

Best Answer

Question: "Why the inverse of a matrix involves division by the determinant?"

Answer: We use the adjugate matrix and the determinant to prove existence of an inverse of a matrix as follows:

The "adjugate matrix" $ad(A)$ has the property that $ad(A)A=Aad(A)=det(A)I$ where $det(-): Mat(n,k) \rightarrow k$ is a map with $det(AB)=det(A)det(B)$. Here $Mat(n,k)$ is the set of $n\times n$-matrices with coefficients in $k$. $det(A)$ is the "determinant" of the matrix $A$ as defined in your linear algebra course.

Lemma: A square matrix $A$ has an inverse iff $det(A)\neq 0$.

Proof: If $det(A)\neq 0$ it follows $A^{-1}:=\frac{1}{det(A)}ad(A)$ is an inverse. Conversely assume there is a matrix $B$ with $AB=BA=I$. It follows $det(AB)=det(A)det(B)=1$ and hence $det(A) \neq 0$.

Hence the adjugate matrix and the determinant map implies the existence of an inverse of $A$: The matrix $A$ has a unique inverse $A^{-1}$ iff $det(A)\neq 0$.

Example: Let \begin{align*} A= \begin{pmatrix} a & b \\ c & d \end{pmatrix} \end{align*}

and define the adjunct matrix $ad(A)$ by

\begin{align*} ad(A)= \begin{pmatrix} d & -b \\ -c & a \end{pmatrix} \end{align*}

It follows

\begin{align*} ad(A)A=Aad(A)= \begin{pmatrix} ad-bc & 0 \\ 0 & ad-bc \end{pmatrix} =\end{align*}

\begin{align*} det(A)\begin{pmatrix} 1 & 0 \\ 0 & 1 \end{pmatrix} \end{align*}

There is in general for any $n\times n$-matrix $A$ a unique matrix $ad(A)$ with $ad(A)A=Aad(A)=det(A)I$. This result is proved in any serious linear algebra course. Hence the above proves the Lemma explicitly for any $2\times 2$-matrix.

https://en.wikipedia.org/wiki/Adjugate_matrix