Patrocinado por PHPDocX

Síguenos en Twitter

Buscar en WikilleratO
   

Matriz inversa

De Wikillerato

(Diferencias entre revisiones)
Línea 1: Línea 1:
-
 
-
 
__TOC__
__TOC__
Línea 7: Línea 5:
<br/>
<br/>
-
La matriz inversa de una [[Matrices#Matrices cuadradas|matriz cuadrada]] &nbsp;
+
La matriz inversa de una [[¿Qué es una matriz?#Tipos de matrices#Matrices cuadradas|matriz cuadrada]] &nbsp;
<math>
<math>
\mathbf{A}
\mathbf{A}
Línea 39: Línea 37:
\mathbf{I}
\mathbf{I}
</math>
</math>
-
&nbsp; es la [[Matrices#matriz identidasd|matriz identidad]] de orden &nbsp;
+
&nbsp; es la
 +
[[¿Qué es una matriz?#Tipos de matrices#Matrices unidad o identidad|matriz identidad]] de orden &nbsp;
<math>
<math>
n
n
Línea 51: Línea 50:
<br/>
<br/>
-
Las matrices que tienen inversa se llaman '''''regulares''''' y las que NO
+
Las matrices que tienen inversa se llaman '''''regulares''''' y las que NO
tienen inversa, '''''singulares'''''.
tienen inversa, '''''singulares'''''.
Línea 83: Línea 82:
<math>
<math>
\left(
\left(
-
\mathbf{A}^{-1}
+
\mathbf{A}^{-1}
\right)
\right)
^{-1} = \mathbf{A}
^{-1} = \mathbf{A}
Línea 93: Línea 92:
<math>
<math>
\left(
\left(
-
\mathbf{A} \cdot \mathbf{B}
+
\mathbf{A} \cdot \mathbf{B}
\right)
\right)
^{-1} = \mathbf{B}^{-1} \cdot \mathbf{A}^{-1}
^{-1} = \mathbf{B}^{-1} \cdot \mathbf{A}^{-1}
Línea 120: Línea 119:
\mathbf{A} =
\mathbf{A} =
\left(
\left(
-
\begin{array}[c]{cc}
+
\begin{array}[c]{cc}
-
1 & 2
+
1 & 2
-
\\
+
\\
-
3 & 7
+
3 & 7
-
\end{array}
+
\end{array}
\right)
\right)
</math>
</math>
Línea 139: Línea 138:
\mathbf{A}^{-1} =
\mathbf{A}^{-1} =
\left(
\left(
-
\begin{array}[c]{cc}
+
\begin{array}[c]{cc}
-
a & b
+
a & b
-
\\
+
\\
-
c & d
+
c & d
-
\end{array}
+
\end{array}
\right)
\right)
</math>
</math>
Línea 158: Línea 157:
I = \mathbf{A} \cdot \mathbf{A}^{-1} \Rightarrow
I = \mathbf{A} \cdot \mathbf{A}^{-1} \Rightarrow
\left(
\left(
-
\begin{array}[c]{cc}
+
\begin{array}[c]{cc}
-
1 & 2
+
1 & 2
-
\\
+
\\
-
3 & 7
+
3 & 7
-
\end{array}
+
\end{array}
\right)
\right)
\cdot
\cdot
\left(
\left(
-
\begin{array}[c]{cc}
+
\begin{array}[c]{cc}
-
a & b
+
a & b
-
\\
+
\\
-
c & d
+
c & d
-
\end{array}
+
\end{array}
\right)
\right)
=
=
\left(
\left(
-
\begin{array}[c]{cc}
+
\begin{array}[c]{cc}
-
1 & 0
+
1 & 0
-
\\
+
\\
-
0 & 1
+
0 & 1
-
\end{array}
+
\end{array}
\right)
\right)
</math>
</math>
Línea 192: Línea 191:
<math>
<math>
\left(
\left(
-
\begin{array}[c]{cc}
+
\begin{array}[c]{cc}
-
a + 2c & b + 2d
+
a + 2c & b + 2d
-
\\
+
\\
-
3a + 7c & 3b + 7d
+
3a + 7c & 3b + 7d
-
\end{array}
+
\end{array}
\right)
\right)
=
=
\left(
\left(
-
\begin{array}[c]{cc}
+
\begin{array}[c]{cc}
-
1 & 0
+
1 & 0
-
\\
+
\\
-
0 & 1
+
0 & 1
-
\end{array}
+
\end{array}
\right)
\right)
\Leftrightarrow
\Leftrightarrow
\left\{
\left\{
-
\begin{array}[c]{ccc}
+
\begin{array}[c]{ccc}
-
a + 2c & = & 1
+
a + 2c & = & 1
-
\\
+
\\
-
3a + 7c & = & 0
+
3a + 7c & = & 0
-
\\
+
\\
-
b + 2d & = & 0
+
b + 2d & = & 0
-
\\
+
\\
-
3b + 7d & = & 1
+
3b + 7d & = & 1
-
\\
+
\\
-
\end{array}
+
\end{array}
\right.
\right.
</math>
</math>
Línea 227: Línea 226:
<math>
<math>
\Rightarrow \left\{
\Rightarrow \left\{
-
\begin{array}[c]{ccc}
+
\begin{array}[c]{ccc}
-
a & = & 7
+
a & = & 7
-
\\
+
\\
-
b & = & -2
+
b & = & -2
-
\\
+
\\
-
c & = & -3
+
c & = & -3
-
\\
+
\\
-
d & = & 1
+
d & = & 1
-
\\
+
\\
-
\end{array}
+
\end{array}
\right.
\right.
</math>
</math>
Línea 243: Línea 242:
<br/>
<br/>
-
===Método de Gauss-Jordan===
+
===Por el método de Gauss-Jordan===
<br/>
<br/>
Línea 310: Línea 309:
s \cdot F_i
s \cdot F_i
</math>.
</math>.
-
&nbsp; Esta operación la representamos de la
+
&nbsp; Esta operación la representamos de la
siguiente forma:
siguiente forma:

Revisión de 08:26 3 oct 2010

Tabla de contenidos


Definición


La matriz inversa de una matriz cuadrada   
\mathbf{A}
  de orden   
n,
  es la matriz cuadrada   
\mathbf{A}^{-1}
  tambien de orden   
n
  que verifica:



\mathbf{A} \cdot \mathbf{A}^{-1} = \mathbf{A}^{-1} \cdot \mathbf{A} = I


donde   
\mathbf{I}
  es la matriz identidad de orden   
n
.


Exitencia 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,   
\mathbf{A}^{-1} 
  es única.


2.   
\left(
</p>
<pre>\mathbf{A}^{-1} 
</pre>
<p>\right)
^{-1} = \mathbf{A}


3.   
\left(
</p>
<pre>\mathbf{A} \cdot \mathbf{B}
</pre>
<p>\right)
^{-1} = \mathbf{B}^{-1} \cdot \mathbf{A}^{-1}


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



\mathbf{A} =
\left(
</p>
<pre>\begin{array}[c]{cc}
1 & 2
\\
3 & 7
\end{array}
</pre>
<p>\right)


hacemos



\mathbf{A}^{-1} =
\left(
</p>
<pre>\begin{array}[c]{cc}
a & b
\\
c & d
\end{array}
</pre>
<p>\right)


como



I = \mathbf{A} \cdot \mathbf{A}^{-1} \Rightarrow
\left(
</p>
<pre>\begin{array}[c]{cc}
1 & 2
\\
3 & 7
\end{array}
</pre>
<p>\right)
\cdot
\left(
</p>
<pre>\begin{array}[c]{cc}
a & b
\\
c & d
\end{array}
</pre>
<p>\right)
=
\left(
</p>
<pre>\begin{array}[c]{cc}
1 & 0
\\
0 & 1
\end{array}
</pre>
<p>\right)


Operando:



\left(
</p>
<pre>\begin{array}[c]{cc}
a + 2c & b + 2d
\\
3a + 7c & 3b + 7d
\end{array}
</pre>
<p>\right)
=
\left(
</p>
<pre>\begin{array}[c]{cc}
1 & 0
\\
0 & 1
\end{array}
</pre>
<p>\right)
\Leftrightarrow
\left\{
</p>
<pre>\begin{array}[c]{ccc}
a + 2c & = & 1
\\
3a + 7c & = & 0
\\
b + 2d & = & 0
\\
3b + 7d & = & 1
\\
\end{array}
</pre>
<p>\right.



\Rightarrow \left\{
</p>
<pre>\begin{array}[c]{ccc}
a & = & 7
\\
b & = & -2
\\
c & = & -3
\\
d & = & 1
\\
\end{array}
</pre>
<p>\right.


Por el método de Gauss-Jordan


La inversa de una matriz regular   
\mathbf{A}
  se calcular transformando la matriz   
\left(
</p>
<pre>\, \mathbf{A} \, \left| \, \mathbf{I} \, \right.
</pre>
<p>\right)
  mediante operaciones elementales por filas en la matriz   
\left(
</p>
<pre>\, \mathbf{I} \, \left| \, \mathbf{A}^{-1} \, \right.
</pre>
<p>\right)


Operaciones elementales por filas en una matriz


Las operaciones elementales por filas en una matriz son las siguientes:


1. Intercambiar las filas   
F_i
  y   
F_j
.   Esta operación la representaremos así



F_i \longleftrightarrow F_j


2. Multiplicar la fila   
F_i
  por el número   
s \neq 0
  y sustituir   
F_i
  por   
s \cdot F_i
.   Esta operación la representamos de la siguiente forma:



s \cdot F_i \longrightarrow F_i


3. Sumar las filas   
F_i
  y   
F_j
,   multiplicadas por sendos números, 
s
y 
t
, y sustituir   
F_i
  por el resultado de esta suma. Lo representamos así:



s \cdot F_i + t \cdot F_j \longrightarrow F_i


Notese que el segundo tipo de operación,   
s \cdot F_i \longrightarrow F_i
,   es un caso particular de esta última propiedad que se tiene cuando   
t = 0
.


Mediante la matriz adjunta




Ejercicios resueltos


Producto e invertibilidad de matrices

   
 
ASIGNATURAS
MatemáticasFísicaQuímicaBiologíaDibujoHistoriaLengua y LiteraturaHistoria del ArteFilosofía
Creative Commons License
Los contenidos de Wikillerato están disponibles bajo una licencia de Creative Commons.
Pueden utilizarse y redistribuirse libremente siempre que se reconozca su procedencia.