Matriz inversa
De Wikillerato
(114 ediciones intermedias no se muestran.) | |||
Línea 5: | Línea 5: | ||
<br/> | <br/> | ||
- | La | + | La matriz inversa de una [[¿Qué es una matriz?#Matrices cuadradas|matriz cuadrada]] |
<math> | <math> | ||
- | A | + | \mathbf{A} |
</math> | </math> | ||
de orden | de orden | ||
Línea 13: | Línea 13: | ||
n, | n, | ||
</math> | </math> | ||
- | es la matriz | + | es la matriz cuadrada |
<math> | <math> | ||
- | A^{-1} | + | \mathbf{A}^{-1} |
</math> | </math> | ||
- | + | tambien de orden | |
<math> | <math> | ||
n | n | ||
Línea 27: | Línea 27: | ||
<center> | <center> | ||
<math> | <math> | ||
- | A \cdot A^{-1} = A^{-1} \cdot A = I | + | \mathbf{A} \cdot \mathbf{A}^{-1} = \mathbf{A}^{-1} \cdot \mathbf{A} = I |
</math> | </math> | ||
</center> | </center> | ||
Línea 35: | Línea 35: | ||
donde | donde | ||
<math> | <math> | ||
- | I | + | \mathbf{I} |
</math> | </math> | ||
- | es la matriz identidad de orden | + | es la |
+ | [[¿Qué es una matriz?#Matrices unidad o identidad|matriz identidad]] de orden | ||
<math> | <math> | ||
n | n | ||
Línea 45: | Línea 46: | ||
<br/> | <br/> | ||
- | + | ==Existencia de la matriz inversa== | |
- | + | ||
<br/> | <br/> | ||
- | Las propiedades más importantes relativas a la matriz inversa: | + | Las matrices que tienen inversa se llaman '''''regulares''''' y las que NO |
+ | tienen inversa, '''''singulares'''''. | ||
+ | |||
+ | <br/> | ||
+ | |||
+ | Una matriz cuadrada de orden n es regular si, y solo si, su [[Rango de una matriz|rango]] es n. | ||
+ | |||
+ | <br/> | ||
+ | |||
+ | Una matriz cuadrada de orden n es singular si, y solo si, su [[Definición de determinante|determinante]] es cero. | ||
+ | |||
+ | <br/> | ||
+ | |||
+ | ==Propiedades== | ||
+ | |||
+ | <br/> | ||
+ | |||
+ | Las propiedades más importantes relativas a la matriz inversa son las siguientes: | ||
<br/> | <br/> | ||
Línea 56: | Línea 73: | ||
1. Si existe, | 1. Si existe, | ||
<math> | <math> | ||
- | A^{-1} | + | \mathbf{A}^{-1} |
</math> | </math> | ||
es única. | es única. | ||
Línea 65: | Línea 82: | ||
<math> | <math> | ||
\left( | \left( | ||
- | + | \mathbf{A}^{-1} | |
\right) | \right) | ||
- | ^{-1} = A | + | ^{-1} = \mathbf{A} |
</math> | </math> | ||
Línea 75: | Línea 92: | ||
<math> | <math> | ||
\left( | \left( | ||
- | + | \mathbf{A} \cdot \mathbf{B} | |
\right) | \right) | ||
- | ^{-1} = B^{-1} \cdot A^{-1} | + | ^{-1} = \mathbf{B}^{-1} \cdot \mathbf{A}^{-1} |
</math> | </math> | ||
+ | |||
+ | <br/> | ||
+ | |||
+ | 4. El determinante de una matriz regular | ||
+ | <math> | ||
+ | \mathbf{A} | ||
+ | </math> | ||
+ | es el inverso del determinante de su matriz inversa: | ||
+ | |||
+ | <br/> | ||
+ | |||
+ | <center> | ||
+ | <math> | ||
+ | \left| \mathbf{A}^{-1} \right| = \frac{1}{\left| \mathbf{A} \right|} | ||
+ | </math> | ||
+ | </center> | ||
<br/> | <br/> | ||
Línea 84: | Línea 117: | ||
==Cálculo de la matriz inversa== | ==Cálculo de la matriz inversa== | ||
+ | <br/> | ||
- | + | La matriz inversa de una matriz regular se puede calcular de diferentes maneras: | |
<br/> | <br/> | ||
- | === | + | ===Resolviendo un sistema de ecuaciones lineales=== |
<br/> | <br/> | ||
Línea 99: | Línea 133: | ||
<center> | <center> | ||
<math> | <math> | ||
- | A = | + | \mathbf{A} = |
\left( | \left( | ||
- | + | \begin{array}[c]{cc} | |
- | + | 1 & 2 | |
- | + | \\ | |
- | + | 3 & 7 | |
- | + | \end{array} | |
\right) | \right) | ||
</math> | </math> | ||
Línea 118: | Línea 152: | ||
<center> | <center> | ||
<math> | <math> | ||
- | A^{-1} = | + | \mathbf{A}^{-1} = |
\left( | \left( | ||
- | + | \begin{array}[c]{cc} | |
- | + | a & b | |
+ | \\ | ||
+ | c & d | ||
+ | \end{array} | ||
+ | \right) | ||
+ | </math> | ||
</center> | </center> | ||
Línea 132: | Línea 171: | ||
<center> | <center> | ||
<math> | <math> | ||
- | I = A \cdot A^{-1} \Rightarrow | + | I = \mathbf{A} \cdot \mathbf{A}^{-1} \Rightarrow |
\left( | \left( | ||
- | + | \begin{array}[c]{cc} | |
- | + | 1 & 2 | |
- | + | \\ | |
- | + | 3 & 7 | |
- | + | \end{array} | |
\right) | \right) | ||
\cdot | \cdot | ||
\left( | \left( | ||
- | + | \begin{array}[c]{cc} | |
- | + | a & b | |
- | + | \\ | |
- | + | c & d | |
- | + | \end{array} | |
\right) | \right) | ||
= | = | ||
\left( | \left( | ||
- | + | \begin{array}[c]{cc} | |
- | + | 1 & 0 | |
- | + | \\ | |
- | + | 0 & 1 | |
- | + | \end{array} | |
\right) | \right) | ||
</math> | </math> | ||
Línea 168: | Línea 207: | ||
<math> | <math> | ||
\left( | \left( | ||
- | + | \begin{array}[c]{cc} | |
- | + | a + 2c & b + 2d | |
- | + | \\ | |
- | + | 3a + 7c & 3b + 7d | |
- | + | \end{array} | |
\right) | \right) | ||
= | = | ||
\left( | \left( | ||
- | + | \begin{array}[c]{cc} | |
- | + | 1 & 0 | |
- | + | \\ | |
- | + | 0 & 1 | |
- | + | \end{array} | |
\right) | \right) | ||
\Leftrightarrow | \Leftrightarrow | ||
\left\{ | \left\{ | ||
- | + | \begin{array}[c]{ccc} | |
- | + | a + 2c & = & 1 | |
- | + | \\ | |
- | + | 3a + 7c & = & 0 | |
- | + | \\ | |
- | + | b + 2d & = & 0 | |
- | + | \\ | |
- | + | 3b + 7d & = & 1 | |
- | + | \\ | |
- | + | \end{array} | |
\right. | \right. | ||
</math> | </math> | ||
Línea 203: | Línea 242: | ||
<math> | <math> | ||
\Rightarrow \left\{ | \Rightarrow \left\{ | ||
- | + | \begin{array}[c]{ccc} | |
- | + | a & = & 7 | |
- | + | \\ | |
- | + | b & = & -2 | |
- | + | \\ | |
- | + | c & = & -3 | |
- | + | \\ | |
- | + | d & = & 1 | |
- | + | \\ | |
- | + | \end{array} | |
\right. | \right. | ||
</math> | </math> | ||
Línea 219: | Línea 258: | ||
<br/> | <br/> | ||
- | === | + | ===Por el método de Gauss=== |
<br/> | <br/> | ||
Línea 225: | Línea 264: | ||
La inversa de una matriz regular | La inversa de una matriz regular | ||
<math> | <math> | ||
- | A | + | \mathbf{A} |
</math> | </math> | ||
- | se calcular transformando la matriz | + | se puede calcular transformando la matriz |
<math> | <math> | ||
\left( | \left( | ||
- | \, A \, \left| \, I \, \right. | + | \, \mathbf{A} \, \left| \, \mathbf{I} \, \right. |
\right) | \right) | ||
</math> | </math> | ||
- | mediante operaciones | + | mediante operaciones elementales con las filas de la matriz |
- | elementales | + | |
<math> | <math> | ||
\left( | \left( | ||
- | \, I \, \left| \, A^{-1} \, \right. | + | \, \mathbf{I} \, \left| \, \mathbf{A}^{-1} \, \right. |
\right) | \right) | ||
</math> | </math> | ||
Línea 243: | Línea 281: | ||
<br/> | <br/> | ||
- | ====Operaciones elementales | + | ====Operaciones elementales con las filas de una matriz==== |
<br/> | <br/> | ||
- | Las operaciones elementales | + | Las operaciones elementales con las filas de una matriz que podemos realizar en |
+ | el metodo de Gauss son las siguientes: | ||
<br/> | <br/> | ||
Línea 253: | Línea 292: | ||
1. Intercambiar las filas | 1. Intercambiar las filas | ||
<math> | <math> | ||
- | + | F_i | |
</math> | </math> | ||
y | y | ||
<math> | <math> | ||
- | + | F_j | |
- | </math> | + | </math>. |
- | | + | Esta operación la representaremos así |
+ | |||
+ | <br/> | ||
+ | |||
+ | <center> | ||
<math> | <math> | ||
- | F_i \ | + | F_i \longleftrightarrow F_j |
</math> | </math> | ||
+ | </center> | ||
<br/> | <br/> | ||
Línea 268: | Línea 312: | ||
2. Multiplicar la fila | 2. Multiplicar la fila | ||
<math> | <math> | ||
- | + | F_i | |
</math> | </math> | ||
- | por el | + | por el número |
<math> | <math> | ||
- | + | s \neq 0 | |
</math> | </math> | ||
- | y | + | y sustituir |
<math> | <math> | ||
- | + | F_i | |
</math> | </math> | ||
+ | por | ||
+ | <math> | ||
+ | s \cdot F_i | ||
+ | </math>. | ||
+ | Esta operación la representamos de la | ||
+ | siguiente forma: | ||
<br/> | <br/> | ||
- | + | <center> | |
<math> | <math> | ||
- | + | s \cdot F_i \longrightarrow F_i | |
</math> | </math> | ||
- | + | </center> | |
+ | |||
+ | <br/> | ||
+ | |||
+ | 3. Sumar las filas | ||
<math> | <math> | ||
- | + | F_i | |
</math> | </math> | ||
- | y | + | y |
<math> | <math> | ||
- | F_i | + | F_j |
+ | </math>, | ||
+ | multiplicadas por sendos números, | ||
+ | <math> | ||
+ | s | ||
+ | </math> | ||
+ | y | ||
+ | <math> | ||
+ | t | ||
+ | </math>, | ||
+ | y sustituir | ||
+ | <math> | ||
+ | F_i | ||
</math> | </math> | ||
+ | por el resultado de esta suma. Lo representamos así: | ||
<br/> | <br/> | ||
- | + | <center> | |
<math> | <math> | ||
- | + | s \cdot F_i + t \cdot F_j \longrightarrow F_i | |
</math> | </math> | ||
- | + | </center> | |
+ | |||
+ | <br/> | ||
+ | |||
+ | Notese que el segundo tipo de operación, | ||
<math> | <math> | ||
- | + | s \cdot F_i \longrightarrow F_i | |
+ | </math>, | ||
+ | | ||
+ | es un caso particular de esta última propiedad que se tiene cuando | ||
+ | <math> | ||
+ | t = 0 | ||
+ | </math>. | ||
+ | |||
+ | <br/> | ||
+ | |||
+ | ===Mediante la matriz adjunta=== | ||
+ | |||
+ | <br/> | ||
+ | |||
+ | La matriz inversa de una matriz regular | ||
+ | <math> | ||
+ | \mathbf{A} | ||
</math> | </math> | ||
- | , | + | se puede calcular mediante la expresión: |
+ | |||
+ | <br/> | ||
+ | |||
+ | <center> | ||
+ | <math> | ||
+ | \mathbf{A}^{-1} = \frac{1}{\left| \mathbf{A} \right|} \cdot | ||
+ | \left[ | ||
+ | \makebox{Adj} | ||
+ | \left( | ||
+ | \, \mathbf{A} \, | ||
+ | \right) | ||
+ | \right] | ||
+ | ^t | ||
+ | </math> | ||
+ | </center> | ||
+ | |||
+ | <br/> | ||
+ | |||
+ | donde | ||
<math> | <math> | ||
- | + | \makebox{Adj} | |
+ | \left( | ||
+ | \, \mathbf{A} \, | ||
+ | \right) | ||
</math> | </math> | ||
- | | + | es la [[Matriz inversa#Mediante la matriz adjunta| matriz adjunta]] de |
<math> | <math> | ||
- | + | \mathbf{A} | |
+ | </math>. | ||
+ | |||
+ | <br/> | ||
+ | |||
+ | ====Definición de matriz adjunta==== | ||
+ | |||
+ | <br/> | ||
+ | |||
+ | La matriz cuyos elementos son los correspondientes [[Desarrollo de un determinante#Menores complementarios y adjuntos|adjuntos]] de los elementos de una matriz cuadrada | ||
+ | | ||
+ | <math> | ||
+ | \mathbf{A} | ||
</math> | </math> | ||
- | | + | se llama '''''matriz adjunta''''' de |
<math> | <math> | ||
- | + | \mathbf{A} | |
</math> | </math> | ||
- | | + | y se denota por |
<math> | <math> | ||
- | + | \makebox{Adj} \left( \mathbf{A} \right) | |
+ | </math>. | ||
+ | El elemento en la i-esima fila y j-esima columna de la matriz adjunta de | ||
+ | <math> | ||
+ | \mathbf{A} | ||
</math> | </math> | ||
+ | es | ||
+ | <math> | ||
+ | A_{ij} | ||
+ | </math>, | ||
+ | el adjunto del elemento de | ||
+ | <math> | ||
+ | \mathbf{A} | ||
+ | </math> | ||
+ | en su fila i-esima y columna j-esima | ||
+ | <math> | ||
+ | \left( \, a_{ij} \, \right)} | ||
+ | </math>. | ||
+ | <br/> | ||
- | == | + | ====Ejemplo==== |
- | + | ||
- | + | <br/> | |
- | <br> | + | |
- | + | ||
+ | Los [[Desarrollo de un determinante#Menores complementarios y adjuntos|menores | ||
+ | complementarios]] de los elementos de la matriz | ||
+ | |||
+ | <br/> | ||
+ | |||
+ | <center> | ||
+ | <math> | ||
+ | \mathbf{A} = | ||
+ | \left( | ||
+ | \begin{array}{ccc} | ||
+ | 1 & 2 & 3 | ||
+ | \\ | ||
+ | 4 & 5 & 6 | ||
+ | \\ | ||
+ | 7 & 8 & 0 | ||
+ | \end{array} | ||
+ | \right) | ||
+ | </math> | ||
+ | </center> | ||
+ | |||
+ | <br/> | ||
+ | |||
+ | son | ||
+ | |||
+ | <br/> | ||
+ | |||
+ | <center> | ||
+ | <math> | ||
+ | \begin{array}{ccc} | ||
+ | \alpha_{11} = | ||
+ | \left| | ||
+ | \begin{array}[c]{cc} | ||
+ | 5 & 6 | ||
+ | \\ | ||
+ | 8 & 0 | ||
+ | \end{array} | ||
+ | \right| | ||
+ | & | ||
+ | \qquad \alpha_{12} = | ||
+ | \left| | ||
+ | \begin{array}[c]{cc} | ||
+ | 4 & 6 | ||
+ | \\ | ||
+ | 7 & 0 | ||
+ | \end{array} | ||
+ | \right| | ||
+ | & | ||
+ | \qquad \alpha_{13} = | ||
+ | \left| | ||
+ | \begin{array}[c]{cc} | ||
+ | 4 & 5 | ||
+ | \\ | ||
+ | 7 & 8 | ||
+ | \end{array} | ||
+ | \right| | ||
+ | \end{array} | ||
+ | </math> | ||
+ | </center> | ||
+ | <center> | ||
+ | <math> | ||
+ | \begin{array}{ccc} | ||
+ | \alpha_{21} = | ||
+ | \left| | ||
+ | \begin{array}[c]{cc} | ||
+ | 2 & 3 | ||
+ | \\ | ||
+ | 8 & 0 | ||
+ | \end{array} | ||
+ | \right| | ||
+ | & | ||
+ | \qquad \alpha_{22} = | ||
+ | \left| | ||
+ | \begin{array}[c]{cc} | ||
+ | 1 & 3 | ||
+ | \\ | ||
+ | 7 & 0 | ||
+ | \end{array} | ||
+ | \right| | ||
+ | & | ||
+ | \qquad \alpha_{23} = | ||
+ | \left| | ||
+ | \begin{array}[c]{cc} | ||
+ | 1 & 2 | ||
+ | \\ | ||
+ | 7 & 8 | ||
+ | \end{array} | ||
+ | \right| | ||
+ | \end{array} | ||
+ | </math> | ||
+ | </center> | ||
+ | <center> | ||
+ | <math> | ||
+ | \begin{array}{ccc} | ||
+ | \alpha_{31} = | ||
+ | \left| | ||
+ | \begin{array}[c]{cc} | ||
+ | 2 & 3 | ||
+ | \\ | ||
+ | 5 & 6 | ||
+ | \end{array} | ||
+ | \right| | ||
+ | & | ||
+ | \qquad \alpha_{32} = | ||
+ | \left| | ||
+ | \begin{array}[c]{cc} | ||
+ | 1 & 3 | ||
+ | \\ | ||
+ | 4 & 6 | ||
+ | \end{array} | ||
+ | \right| | ||
+ | & | ||
+ | \qquad \alpha_{33} = | ||
+ | \left| | ||
+ | \begin{array}[c]{cc} | ||
+ | 1 & 2 | ||
+ | \\ | ||
+ | 4 & 5 | ||
+ | \end{array} | ||
+ | \right| | ||
+ | \end{array} | ||
+ | </math> | ||
+ | </center> | ||
+ | |||
+ | <br/> | ||
+ | |||
+ | Los adjuntos de los elementos de | ||
+ | <math> | ||
+ | \mathbf{A} | ||
+ | </math> | ||
+ | son: | ||
+ | |||
+ | <br/> | ||
+ | |||
+ | <center> | ||
+ | <math> | ||
+ | \begin{array}{ccccccccccc} | ||
+ | A_{11} & = & -48 & \qquad & A_{12} & = & ~42 & \qquad & A_{13} & = & -3 | ||
+ | \\ | ||
+ | A_{21} & = & ~24 & \qquad & A_{22} & = & -21 & \qquad & A_{23} & = & ~6 | ||
+ | \\ | ||
+ | A_{31} & = & ~-3 & \qquad & A_{32} & = & ~~6 & \qquad & A_{33} & = & -3 | ||
+ | &\end{array} | ||
+ | </math> | ||
+ | </center> | ||
+ | |||
+ | <br/> | ||
+ | |||
+ | La matriz adjunta de | ||
+ | <math> | ||
+ | \mathbf{A} | ||
+ | </math> | ||
+ | es | ||
+ | |||
+ | <br/> | ||
+ | |||
+ | <center> | ||
+ | <math> | ||
+ | \makebox{Adj} \left( \mathbf{A} \right) = | ||
+ | \left( | ||
+ | \begin{array}{ccc} | ||
+ | -48 & ~42 & -3 | ||
+ | \\ | ||
+ | ~24 & -21 & ~6 | ||
+ | \\ | ||
+ | ~-3 & ~~6 & -3 | ||
+ | \end{array} | ||
+ | \right) | ||
+ | </math> | ||
+ | </center> | ||
+ | |||
+ | <br/> | ||
+ | |||
+ | El determinante de | ||
+ | <math> | ||
+ | \mathbf{A} | ||
+ | </math> | ||
+ | lo podemos calcular [[Desarrollo de un determinante#Desarrollo de un determinante|desarrollando]] por la primera fila: | ||
+ | |||
+ | <br/> | ||
+ | |||
+ | <center> | ||
+ | <math> | ||
+ | \left| \mathbf{A} \right| = a_{11} \cdot A_{11} + a_{12} \cdot A_{12} + a_{13} | ||
+ | \cdot A_{13} = 1 \cdot \left( \, -48 \, \right) + 2 \cdot 42 + 3 \cdot \left( \, | ||
+ | -3 \, \right) = 25 | ||
+ | </math> | ||
+ | </center> | ||
+ | |||
+ | <br/> | ||
+ | |||
+ | Por lo tanto, la matriz inversa de | ||
+ | <math> | ||
+ | \mathbf{A} | ||
+ | </math> | ||
+ | es | ||
+ | <center> | ||
+ | <math> | ||
+ | \mathbf{A}^{-1} = \frac{1}{\left| \mathbf{A} \right|} \cdot | ||
+ | \left[ | ||
+ | \makebox{Adj} | ||
+ | \left( | ||
+ | \, \mathbf{A} \, | ||
+ | \right) | ||
+ | \right] | ||
+ | ^t = | ||
+ | \frac{1}{25} \cdot | ||
+ | \left( | ||
+ | \begin{array}{ccc} | ||
+ | -48 & ~24 & -3 | ||
+ | \\ | ||
+ | ~42 & -21 & ~6 | ||
+ | \\ | ||
+ | ~-3 & ~~6 & -3 | ||
+ | \end{array} | ||
+ | \right) | ||
+ | </math> | ||
+ | </center> | ||
+ | |||
+ | ==Ejercicios resueltos== | ||
+ | {{problemas}}* [http://www.selectividad.tv/S_M_4_1_2_S_producto_e_invertibilidad_de_matrices.html Producto e invertibilidad de matrices] | ||
[[Category:Matemáticas]] | [[Category:Matemáticas]] |
Revisión actual
Tabla de contenidos |
Definición
La matriz inversa de una matriz cuadrada de orden es la matriz cuadrada tambien de orden que verifica:
donde es la matriz identidad de orden .
Existencia de la matriz inversa
Las matrices que tienen inversa se llaman regulares y las que NO tienen inversa, singulares.
Una matriz cuadrada de orden n es regular si, y solo si, su rango es n.
Una matriz cuadrada de orden n es singular si, y solo si, su determinante es cero.
Propiedades
Las propiedades más importantes relativas a la matriz inversa son las siguientes:
1. Si existe, es única.
2.
3.
4. El determinante de una matriz regular es el inverso del determinante de su matriz inversa:
Cálculo de la matriz inversa
La matriz inversa de una matriz regular se puede calcular de diferentes maneras:
Resolviendo un sistema de ecuaciones lineales
Ejemplo
hacemos
como
Operando:
Por el método de Gauss
La inversa de una matriz regular se puede calcular transformando la matriz mediante operaciones elementales con las filas de la matriz
Operaciones elementales con las filas de una matriz
Las operaciones elementales con las filas de una matriz que podemos realizar en el metodo de Gauss son las siguientes:
1. Intercambiar las filas y . Esta operación la representaremos así
2. Multiplicar la fila por el número y sustituir por . Esta operación la representamos de la siguiente forma:
3. Sumar las filas y , multiplicadas por sendos números, y , y sustituir por el resultado de esta suma. Lo representamos así:
Notese que el segundo tipo de operación, , es un caso particular de esta última propiedad que se tiene cuando .
Mediante la matriz adjunta
La matriz inversa de una matriz regular se puede calcular mediante la expresión:
donde es la matriz adjunta de .
Definición de matriz adjunta
La matriz cuyos elementos son los correspondientes adjuntos de los elementos de una matriz cuadrada se llama matriz adjunta de y se denota por . El elemento en la i-esima fila y j-esima columna de la matriz adjunta de es , el adjunto del elemento de en su fila i-esima y columna j-esima .
Ejemplo
Los menores complementarios de los elementos de la matriz
son
Los adjuntos de los elementos de son:
La matriz adjunta de es
El determinante de lo podemos calcular desarrollando por la primera fila:
Por lo tanto, la matriz inversa de es
Ejercicios resueltos
También te pueden interesar los siguientes ejercicios resueltos de selectividad