Ecuaciones matriciales
Por Catalin David
AX = B, donde A es invertible
Como la multiplicación de matrices no siempre es conmutativa, multiplicamos a la izquierda ambos miembros de las ecuaciones por $ A^{-1}$.
$A^{-1}\cdot|A\cdot X = B$
$A^{-1}\cdot A\cdot X = A^{-1}\cdot B$
$I_{n}\cdot X = A^{-1}\cdot B$
La forma general de la solución de la ecuación es:
$\color{red}{X =A^{-1}\cdot B}$
Ejemplo 50
Resuelva la ecuación
$\begin{pmatrix}
1 & 3\\
2 & 5
\end{pmatrix}\cdot X
\begin{pmatrix}
3 & 5\\
2 & 1
\end{pmatrix}$
Verificamos si la primera matriz es invertible.
$\left|A\right|=5-6=-1\neq 0$, por lo que la matriz es invertible.
Multiplicamos a la izquierda por su inversa.
$\begin{pmatrix}
1 & 3\\
2 & 5\\
\end{pmatrix}^{-1}\cdot
\begin{pmatrix}
1 & 3\\
2 & 5
\end{pmatrix}\cdot
X=
\begin{pmatrix}
1 & 3\\
2 & 5
\end{pmatrix}^{-1}\cdot
\begin{pmatrix}
3 & 5\\
2 & 1
\end{pmatrix}$
$I_{2}\cdot X = \begin{pmatrix} 1 & 3\\ 2 & 5 \end{pmatrix}^{-1}\cdot \begin{pmatrix} 3 & 5\\ 2 & 1 \end{pmatrix}$
$X=\begin{pmatrix} 1 & 3\\ 2 & 5 \end{pmatrix}^{-1}\cdot \begin{pmatrix} 3 & 5\\ 2 & 1 \end{pmatrix}$
$\begin{pmatrix} 1 & 3\\ 2 & 5 \end{pmatrix}^{-1}= \begin{pmatrix} -5 & 3\\ 2 & -1 \end{pmatrix}\rightarrow X= \begin{pmatrix} -5 & 3\\ 2 & -1 \end{pmatrix}\cdot \begin{pmatrix} 3 & 5\\ 2 & 1 \end{pmatrix}= \begin{pmatrix} -9 & -22\\ 4 & 9 \end{pmatrix}$
XA = B, donde A es invertible
Como la multiplicación de matrices no siempre es conmutativa, multiplicamos a la derecha ambos miembros de la ecuación por $ A^{-1}.$
$X\cdot A = B |\cdot A^{-1}$
$X\cdot A\cdot A^{-1} = B\cdot A^{-1}$
$X \cdot I_{n} =B\cdot A^{-1}$
La forma general de la solución de la ecuación es:
$\color{red}{X =B\cdot A^{-1}}$
Ejemplo 51
Resuelva la ecuación
$X \begin{pmatrix}
1 & 3\\
2 & 5\\
\end{pmatrix}=
\begin{pmatrix}
3 & 5\\
2 & 1\\
\end{pmatrix}$
Verificamos si la primera matriz es invertible.
$\left|A\right|=5-6=-1\neq 0$, por lo que la matriz es invertible.
Multiplicamos a la derecha por su inversa.
$X
\begin{pmatrix}
1 & 3\\
2 & 5
\end{pmatrix}\cdot
\begin{pmatrix}
1 & 3\\
2 & 5
\end{pmatrix}^{-1}=
\begin{pmatrix}
3 & 5\\
2 & 1
\end{pmatrix}\cdot
\begin{pmatrix}
1 & 3\\
2 & 5
\end{pmatrix}^{-1}$
$X\cdot I_{2}= \begin{pmatrix} 3 & 5\\ 2 & 1 \end{pmatrix}\cdot \begin{pmatrix} 1 & 3\\ 2 & 5 \end{pmatrix}^{-1}$
$X=\begin{pmatrix} 3 & 5\\ 2 & 1 \end{pmatrix}\cdot \begin{pmatrix} 1 & 3\\ 2 & 5 \end{pmatrix}^{-1}$
$\begin{pmatrix} 1 & 3\\ 2 & 5 \end{pmatrix}^{-1}= \begin{pmatrix} -5 & 3\\ 2 & -1 \end{pmatrix}\rightarrow X= \begin{pmatrix} 3 & 5\\ 2 & 1 \end{pmatrix} \cdot \begin{pmatrix} -5 & 3\\ 2 & -1 \end{pmatrix}= \begin{pmatrix} -5 & 4\\ -8 & 5 \end{pmatrix}$

Menú