Matrices inversas

Por Catalin David

Una matriz es invertible si su determinante no es 0. Si A es una matriz invertible, entonces su inversa es $A^{-1}$ donde $A^{-1}=\frac{1}{\left|A\right|} \cdot adj(A)$. $adj(A)$ es la adjunta de la matriz.

Determinación de la inversa de una matriz

  1. Calculamos el determinante de la matriz.
  2. Escribimos la transpuesta de la matriz.
  3. Cada elemento de la transpuesta se sustituye por su cofactor. La matriz resultante es la adjunta.
  4. Calculamos la inversa.

Ejemplo 46
$A=\begin{pmatrix} 1 & 3\\ 2 & 5 \end{pmatrix}$

$\left|A\right|=1\cdot 5-6=-1$
La matriz es invertible, por lo que podemos calcular su inversa.

$ A^{T}= \begin{pmatrix} 1 & 2\\ 3 & 5 \end{pmatrix}$

Reemplazamos los elementos de la transpuesta por sus cofactores.

$1\longrightarrow (-1)^{1+1}\cdot \Delta_{1,1}=(-1)^{2}\cdot5 = 5$
$2\longrightarrow (-1)^{1+2}\cdot \Delta_{1,2}=(-1)^{3}\cdot3 = -3$
$3\longrightarrow (-1)^{2+1}\cdot \Delta_{2,1}=(-1)^{3}\cdot2 = -2$
$5\longrightarrow (-1)^{2+2}\cdot \Delta_{2,2}=(-1)^{4}\cdot1 = 1$

$adj(A)= \begin{pmatrix} 5 & -3\\ -2 & 1\\ \end{pmatrix}$

$A^{-1}=- \begin{pmatrix} 5 & -3\\ -2 & 1 \end{pmatrix} = \begin{pmatrix} -5 & 3\\ 2 & -1 \end{pmatrix}$

Ejemplo 47
$B=\begin{pmatrix} 2 & -7\\ -1 & 6 \end{pmatrix}$

$\left|B\right|=2\cdot 6-(-7)\cdot (-1) = 5$

La matriz es invertible, por lo que podemos calcular su inversa.
$A^{T}= \begin{pmatrix} 2 & -1\\ -7 & 6 \end{pmatrix}$

Reemplazamos los elementos de la transpuesta por sus cofactores.
$2\longrightarrow (-1)^{1+1}\cdot \Delta_{1,1}=(-1)^{2}\cdot6 = 6$
$-1\longrightarrow (-1)^{1+2}\cdot \Delta_{1,2}=(-1)^{3}\cdot(-7) = 7$
$-7\longrightarrow (-1)^{2+1}\cdot \Delta_{2,1}=(-1)^{3}\cdot(-1) = 1$
$6\longrightarrow (-1)^{2+2}\cdot \Delta_{2,2}=(-1)^{4}\cdot2 = 2$

$adj(A)= \begin{pmatrix} 6 & 7\\ 1 & 2 \end{pmatrix}$

$A^{-1}=\frac{1}{5} \begin{pmatrix} 6 & 7\\ 1 & 2 \end{pmatrix} = \begin{pmatrix} \frac{6}{5} & \frac{7}{5}\\ \frac{1}{5} & \frac{2}{5} \end{pmatrix}$

Ejemplo 48
$C=\begin{pmatrix} 1 & 3 & 2\\ 4 & 1 & 1\\ 1 & 2 & 3\\ \end{pmatrix}$

Aplicando la fórmula para calcular el determinante obtenemos $\left|B\right|=-18$.

La matriz es invertible, por lo que podemos calcular su inversa.
$C^{T}=\begin{pmatrix} 1 & 4 & 1\\ 3 & 1 & 2\\ 2 & 1 & 3 \end{pmatrix}$

Reemplazamos cada elemento de la transpuesta por su cofactor.
$ 1\longrightarrow (-1)^{1+1}\cdot \Delta_{1,1}=(-1)^{2}\cdot \begin{vmatrix} 1 & 2\\ 1 & 3 \end{vmatrix} = 3 - 2 = 1$

$4\longrightarrow (-1)^{1+2}\cdot \Delta_{1,2}=(-1)^{3}\cdot \begin{vmatrix} 3 & 2\\ 2 & 3 \end{vmatrix} = -(9-4)=-5$

$1\longrightarrow (-1)^{1+3}\cdot \Delta_{1,3}=(-1)^{4}\cdot \begin{vmatrix} 3 & 1\\ 2 & 1 \end{vmatrix} = 3-2=1$

$3\longrightarrow (-1)^{2+1}\cdot \Delta_{2,1}=(-1)^{3}\cdot \begin{vmatrix} 4 & 1\\ 1 & 3\\ \end{vmatrix} = -(12-1)=-11$

$1\longrightarrow (-1)^{2+2}\cdot \Delta_{2,2}=$ $(-1)^{4}\cdot\begin{vmatrix} 1 & 1\\ 2 & 3\\ \end{vmatrix}=3-2=1$

$2\longrightarrow (-1)^{1+3}\cdot \Delta_{2,3}=$ $(-1)^{5}\cdot\begin{vmatrix} 1 & 4\\ 2 & 1 \end{vmatrix}= -(1-8)=7$

$2\longrightarrow (-1)^{3+1}\cdot \Delta_{3,1}=$ $(-1)^{4}\cdot\begin{vmatrix} 4 & 1\\ 1 & 2 \end{vmatrix}=8-1=7$

$1\longrightarrow (-1)^{3+2}\cdot \Delta_{3,2}=$ $(-1)^{5}\cdot \begin{vmatrix} 1 & 1\\ 3 & 2 \end{vmatrix}=-(2-3)=1$

$3\longrightarrow (-1)^{3+3}\cdot \Delta_{3,3}=$ $(-1)^{6}\cdot\begin{vmatrix} 1 & 4\\ 3 & 1 \end{vmatrix}=1-12=-11$

$adj(A)= \begin{pmatrix} 1 & -5 & 1\\ -11 & 1 & 7\\ 7 & 1 & -11 \end{pmatrix}$

$A^{-1} = - \frac{1}{18}\cdot \begin{pmatrix} 1 & -5 & 1\\ -11 & 1 & 7\\ 7 & 1 & -11 \end{pmatrix} =$ $\begin{pmatrix} - \frac{1}{18} & \frac{5}{18} & -\frac{1}{18}\\ \frac{11}{18} & -\frac{1}{18} & -\frac{7}{18}\\ -\frac{7}{18} & -\frac{1}{18} & \frac{11}{18} \end{pmatrix}$

Propiedades de la inversa de una matriz

Si A es una matriz invertible, entonces:
$A\cdot A^{-1} = A^{-1}\cdot A=I_{n}$

Ejemplo 49
$A=\begin{pmatrix} 1 & 3\\ 2 & 5 \end{pmatrix}$

$A^{-1}= \begin{pmatrix} -5 & 3\\ 2 & -1 \end{pmatrix}$

$A\cdot A^{-1}= \begin{pmatrix} 1 & 3\\ 2 & 5 \end{pmatrix} \begin{pmatrix} -5 & 3\\ 2 & -1 \end{pmatrix}=$ $\begin{pmatrix} 1\cdot(-5)+3\cdot2 & 1\cdot3 + 3\cdot(-1)\\ 2\cdot(-5)+5\cdot2 & 2\cdot3 +5\cdot(-1) \end{pmatrix} = \begin{pmatrix} 1 & 0\\ 0 & 1 \end{pmatrix}= I_{2}$

$A^{-1}\cdot A= \begin{pmatrix} -5 & 3\\ 2 & -1 \end{pmatrix} \begin{pmatrix} 1 & 3\\ 2 & 5 \end{pmatrix}=$ $\begin{pmatrix} -5\cdot1 + 3\cdot2 & -5\cdot3 + 3\cdot 5\\ 2\cdot1 +(-1)\cdot2 & 2\cdot3 +(-1)\cdot5 \end{pmatrix}= \begin{pmatrix} 1 & 0\\ 0 & 1 \end{pmatrix}=I_{2}$


Email de contacto:
Copyright © 2005 - 2024