De Wikillerato
(Diferencias entre revisiones)
|
|
Línea 31: |
Línea 31: |
| | | |
| <br/> | | <br/> |
- |
| |
- | ==Calculo de la matriz inversa==
| |
- |
| |
- | <br/>
| |
- |
| |
- | Para calcular la matriz inversa de una matriz regular podemos utilizar dos
| |
- | procedimientos:
| |
- |
| |
- | <br/>
| |
- |
| |
- | ===Mediante la definicion===
| |
- |
| |
- | <br/>
| |
- |
| |
- | Por ejemplo para hallar la matriz inversa de la matriz
| |
- |
| |
- | <br/>
| |
- |
| |
- | <center>
| |
- | <math>
| |
- | A =
| |
- | \left(
| |
- | \begin{array}[c]{cc}
| |
- | 1 & 2
| |
- | \\
| |
- | 3 & 7
| |
- | \end{array}
| |
- | \right)
| |
- | </math>
| |
- | </center>
| |
- |
| |
- | <br/>
| |
- |
| |
- | hacemos
| |
- |
| |
- | <br/>
| |
- |
| |
- | <center>
| |
- | <math>
| |
- | A^{-1} =
| |
- | \left(
| |
- | \begin{array}[c]{cc}
| |
- | a & b
| |
- | \\
| |
- | c & d
| |
- | \end{array}
| |
- | \right)
| |
- | </math>
| |
- | </center>
| |
- |
| |
- | <br/>
| |
- |
| |
- | como
| |
- |
| |
- | <br/>
| |
- |
| |
- | <center>
| |
- | <math>
| |
- | I = A \cdot A^{-1} \Rightarrow
| |
- | \left(
| |
- | \begin{array}[c]{cc}
| |
- | 1 & 2
| |
- | \\
| |
- | 3 & 7
| |
- | \end{array}
| |
- | \right)
| |
- | \cdot
| |
- | \left(
| |
- | \begin{array}[c]{cc}
| |
- | a & b
| |
- | \\
| |
- | c & d
| |
- | \end{array}
| |
- | \right)
| |
- | =
| |
- | \left(
| |
- | \begin{array}[c]{cc}
| |
- | 1 & 0
| |
- | \\
| |
- | 0 & 1
| |
- | \end{array}
| |
- | \right)
| |
- | </math>
| |
- | </center>
| |
- |
| |
- | <br/>
| |
- |
| |
- | Operando:
| |
- |
| |
- | <br/>
| |
- |
| |
- | <center>
| |
- | <math>
| |
- | \left(
| |
- | \begin{array}[c]{cc}
| |
- | a + 2c & b + 2d
| |
- | \\
| |
- | 3a + 7c & 3b + 7d
| |
- | \end{array}
| |
- | \right)
| |
- | =
| |
- | \left(
| |
- | \begin{array}[c]{cc}
| |
- | 1 & 0
| |
- | \\
| |
- | 0 & 1
| |
- | \end{array}
| |
- | \right)
| |
- | \Leftrightarrow
| |
- | \left\{
| |
- | \begin{array}[c]{ccc}
| |
- | a + 2c & = & 1
| |
- | \\
| |
- | 3a + 7c & = & 0
| |
- | \\
| |
- | b + 2d & = & 0
| |
- | \\
| |
- | 3b + 7d & = & 1
| |
- | \\
| |
- | \end{array}
| |
- | \right.
| |
- | </math>
| |
- | </center>
| |
- |
| |
- | <br/>
| |
- |
| |
- | <center>
| |
- | <math>
| |
- | \Rightarrow \left\{
| |
- | \begin{array}[c]{ccc}
| |
- | a & = & 7
| |
- | \\
| |
- | b & = & -2
| |
- | \\
| |
- | c & = & -3
| |
- | \\
| |
- | d & = & 1
| |
- | \\
| |
- | \end{array}
| |
- | \right.
| |
- | </math>
| |
- | </center>
| |
- |
| |
- | <br/>
| |
- |
| |
- | ===Método de Gauss-Jordan===
| |
- |
| |
- | <br/>
| |
- |
| |
- | La inversa de una matriz regular
| |
- | <math>
| |
- | A
| |
- | </math>
| |
- | se calcular transformando la matriz
| |
- | <math>
| |
- | \left(
| |
- | \, A \, \left| \, I \, \right.
| |
- | \right)
| |
- | </math>
| |
- | mediante operaciones elementales por filas en la matriz
| |
- | <math>
| |
- | \left(
| |
- | \, I \, \left| \, A^{-1} \, \right.
| |
- | \right)
| |
- | </math>
| |
- |
| |
- | Las operaciones elementales por filas en una matriz son las siguientes:
| |
- |
| |
- | # Intercambiar las filas
| |
- | <math>
| |
- | i
| |
- | </math>
| |
- | y
| |
- | <math>
| |
- | j,
| |
- | </math>
| |
- | que designaremos por
| |
- | <math>
| |
- | F_i \longrightarrow F_j
| |
- | </math>
| |
- |
| |
- |
| |
- | # Multiplicar la fila
| |
- | <math>
| |
- | i
| |
- | </math>
| |
- | por el numero
| |
- | <math>
| |
- | k \neq 0
| |
- | </math>
| |
- | y sustituirla por el resultado; lo designamos por
| |
- | <math>
| |
- | F_i \tau k \cdot F_i
| |
- | </math>
| |
- |
| |
- | # Multiplicar la fila
| |
- | <math>
| |
- | i
| |
- | </math>
| |
- | por el numero
| |
- | <math>
| |
- | k \neq 0
| |
- | </math>
| |
- | y sustituirla por el resultado; lo designamos por
| |
- | <math>
| |
- | F_i \tau k \cdot F_i
| |
- | </math>
| |
- |
| |
- | # Sumar las filas
| |
- | <math>
| |
- | i
| |
- | </math>
| |
- | y
| |
- | <math>
| |
- | j,
| |
- | </math>
| |
- | , multiplicadas por sendos números, y llevar el resultado a la fila
| |
- | <math>
| |
- | i
| |
- | </math>
| |
- | o
| |
- | <math>
| |
- | j
| |
- | </math>
| |
- | . Lo designamos por
| |
- | <math>
| |
- | F_i
| |
- | </math>
| |
- | o
| |
- | <math>
| |
- | F_j \to k \cdot F_i + t \cdot F_j
| |
- | </math>
| |
Revisión de 12:06 29 nov 2006
La matriz inversa de una matriz cuadrada
de orden
es la matriz
de orden
que verifica:
Las matrices que tienen inversas se llaman regulares y las que no tienen inversa matrices
singulares.