En este artículo facilito un fichero que permite generar cualquier
número de ejercicios sobre el estudio de la posición relativa de tres
planos en el espacio usando el método de Gauss. Además, si procede, se
encuentran las coordenadas o ecuaciones paramétricas de la intersección.
Los datos para resolver los problemas se obtienen de forma aleatoria y
tenemos varios ejemplos en el código de fichero que nos pueden servir de
ayuda para tener ideas de qué relación de ejercicios deseamos generar.
Casi todo el código esté en formato python/LaTeX y el uso de LyX es
mínimo. Pero por mantener el mismo sistema de los ficheros de las
entradas anteriores lo subo en formato LyX. Se usa la librería Sympy Plotting
Backends’s
para hacer una representación gráfica de los planos.
Lo único que tendremos que adecuar en el fichero es:
Valores mínimo y máximo entre los que obtener los valores de los coeficientes
# Los coeficientes de los ejercicios se obtienen de forma aleatoria
# valores entre los que obtenerlos
minimo = -4
maximo = 4
Tipos de ejercicios que podemos obtener y número de ejercicios:
# OPCIONES PERMITIDAS EN EL PROGRAMA
# Insertar gráficos. Si no se pone "si" (sin tilde) no se insertan ni se generan
# Insertar los gráficos puede relentizar bastante la compilación
graficos = 'si'
# Tipos de ejercicios
# tipo -> Cadena con los tipos permitidos siguientes
# SCD -> Los planos se cortan en un punto Rango(Mc) = Rango(Ma) = 3
# 11 -> Punto de corte con soluciones enteras (el determinante se obliga a que sea +-1).
# 12 -> Punto de corte con soluciones racionales
# SI Rango(Mc) = 2 y Rango(Ma) = 3
# 21 -> Los tres planos se cortan dos a dos en tres rectas formando un prisma
# 22 -> Dos planos son paralelos y el otro no
# SCI -> Los planos se cortan en una recta Rango(Mc) = Rango(Ma) = 2
# 31 -> Dos planos son iguales y el otro secante
# 32 -> Los tres planos se cortan en una recta
# SI Rango(Mc) = 1 y Rango(Ma) = 2
# 41 -> Los tres planos son paralelos
# 42 -> Dos planos son el mismo y otro paralelo a ellos
# SCI -> Los tres planos son el mismo Rango(Mc) = Rango(Ma) = 1
# 5 -> Tres planos coplanares
tipos = ['11', '12', '21', '22', '31', '32', '41', '42', '5']
# Forma de definir los ejercicios que queremos obtener a partir de los tipos anteriores
# listaejercicios=[tipo1, tipo2, ... ]
# Por ejemplo, con la lista siguiente se obtienen 8 ejercicios de tipos especificados
# listaejercicios = ["11", '12', '21', '22', '11', '5', '41', '31']
# Si queremos una lista de ejercicios con uno de cada tipo
listaejercicios = [j for j in tipos]
# Dos de cada tipo. Hay que mantener descomentada la anterior
# listaejercicios = 2 * listaejercicios
# Si lo que queremos es 10 ejercicios de un tipo aleatorio
# listaejercicios = [j for j in random.choices(tipos, k=10)]
# O si lo que queremos es 10 ejercicios aleatorios pero más del tipo SCD
# Estos pesos suponen que la probabilidad de seleccionar el valor "11" es el triple
# a la probabilidad de seleccionar cualquier otro
# pesos = [3, 1, 1, 1, 1, 1, 1, 1, 1]
# listaejercicios = [j for j in random.choices(tipos, pesos, k=10)]
tal cuál está por defecto, obtenemos 9 ejercicios del tipo
especificado en la variable listaejercicios . En este caso, uno de
cada tipo.
Con esos valores, un posible resultado de la compilación es:
Posición relativa de tres planos en el espacio usando el método de Gauss
Estudia la posición relativa de los planos de ecuaciones. Resuelve y
clasifica el sistema asociado.
{ π 1 ≡ x − 2 y + 2 z − 1 = 0 π 2 ≡ z + 4 = 0 π 3 ≡ − x + y − z + 2 = 0 \left\{ \begin{aligned}\pi_{1} & \equiv & x-2y+2z-1=0\\
\pi_{2} & \equiv & z+4=0\\
\pi_{3} & \equiv & -x+y-z+2=0
\end{aligned}
\right. ⎩ ⎨ ⎧ π 1 π 2 π 3 ≡ ≡ ≡ x − 2 y + 2 z − 1 = 0 z + 4 = 0 − x + y − z + 2 = 0
Solución:
{ x − 2 y + 2 z = 1 z = − 4 − x + y − z = − 2 \left\{ \begin{aligned}x-2y+2z & = & 1\\
z & = & -4\\
-x+y-z & = & -2
\end{aligned}
\right. ⎩ ⎨ ⎧ x − 2 y + 2 z z − x + y − z = = = 1 − 4 − 2
Escribamos la matriz ampliada, si podemos la simplificamos:
( 1 − 2 2 1 0 0 1 − 4 − 1 1 − 1 − 2 ) { F 1 ⇆ F 1 F 2 ⇆ F 2 F 3 ⇆ F 1 + F 3 } ⟼ ( 1 − 2 2 1 0 0 1 − 4 0 − 1 1 − 1 ) { F 1 ⇆ F 1 F 2 ⇆ F 3 F 3 ⇆ F 2 } ⟼ ( 1 − 2 2 1 0 − 1 1 − 1 0 0 1 − 4 ) { F 1 ⇆ F 1 F 2 ⇆ − F 2 F 3 ⇆ F 3 } ⟼ ( 1 − 2 2 1 0 1 − 1 1 0 0 1 − 4 ) { F 1 ⇆ F 1 F 2 ⇆ F 2 F 3 ⇆ F 3 } ⟼ ( 1 − 2 2 1 0 1 − 1 1 0 0 1 − 4 ) \left(\begin{matrix}1 & -2 & 2 & 1\\
0 & 0 & 1 & -4\\
-1 & 1 & -1 & -2
\end{matrix}\right)\begin{Bmatrix}F_{1} & \leftrightarrows & F_{1}\\
F_{2} & \leftrightarrows & F_{2}\\
F_{3} & \leftrightarrows & F_{1}+F_{3}
\end{Bmatrix}\longmapsto\left(\begin{matrix}1 & -2 & 2 & 1\\
0 & 0 & 1 & -4\\
0 & -1 & 1 & -1
\end{matrix}\right)\begin{Bmatrix}F_{1} & \leftrightarrows & F_{1}\\
F_{2} & \leftrightarrows & F_{3}\\
F_{3} & \leftrightarrows & F_{2}
\end{Bmatrix}\longmapsto\left(\begin{matrix}1 & -2 & 2 & 1\\
0 & -1 & 1 & -1\\
0 & 0 & 1 & -4
\end{matrix}\right)\begin{Bmatrix}F_{1} & \leftrightarrows & F_{1}\\
F_{2} & \leftrightarrows & -F_{2}\\
F_{3} & \leftrightarrows & F_{3}
\end{Bmatrix}\longmapsto\left(\begin{matrix}1 & -2 & 2 & 1\\
0 & 1 & -1 & 1\\
0 & 0 & 1 & -4
\end{matrix}\right)\begin{Bmatrix}F_{1} & \leftrightarrows & F_{1}\\
F_{2} & \leftrightarrows & F_{2}\\
F_{3} & \leftrightarrows & F_{3}
\end{Bmatrix}\longmapsto\left(\begin{matrix}1 & -2 & 2 & 1\\
0 & 1 & -1 & 1\\
0 & 0 & 1 & -4
\end{matrix}\right) 1 0 − 1 − 2 0 1 2 1 − 1 1 − 4 − 2 ⎩ ⎨ ⎧ F 1 F 2 F 3 ⇆ ⇆ ⇆ F 1 F 2 F 1 + F 3 ⎭ ⎬ ⎫ ⟼ 1 0 0 − 2 0 − 1 2 1 1 1 − 4 − 1 ⎩ ⎨ ⎧ F 1 F 2 F 3 ⇆ ⇆ ⇆ F 1 F 3 F 2 ⎭ ⎬ ⎫ ⟼ 1 0 0 − 2 − 1 0 2 1 1 1 − 1 − 4 ⎩ ⎨ ⎧ F 1 F 2 F 3 ⇆ ⇆ ⇆ F 1 − F 2 F 3 ⎭ ⎬ ⎫ ⟼ 1 0 0 − 2 1 0 2 − 1 1 1 1 − 4 ⎩ ⎨ ⎧ F 1 F 2 F 3 ⇆ ⇆ ⇆ F 1 F 2 F 3 ⎭ ⎬ ⎫ ⟼ 1 0 0 − 2 1 0 2 − 1 1 1 1 − 4
Posición relativa:
Rango(Mc)=3 y Rango(Ma)=3 ⇒ \Rightarrow ⇒ Los planos se cortan
en un punto
image
Resolviendo el sistema escalonado
{ x − 2 y + 2 z = 1 y − z = 1 z = − 4 \left\{ \begin{aligned}x-2y+2z & = & 1\\
y-z & = & 1\\
z & = & -4
\end{aligned}
\right. ⎩ ⎨ ⎧ x − 2 y + 2 z y − z z = = = 1 1 − 4 se obtienen de soluciones:
x : 3 , y : − 3 , z : − 4 {x:3,y:-3,z:-4} x : 3 , y : − 3 , z : − 4
Tipo de sistema:
Sistema compatible y determinado
Estudia la posición relativa de los planos de ecuaciones. Resuelve y
clasifica el sistema asociado.
{ π 1 ≡ − x − 4 y − z = 0 π 2 ≡ − 4 x + 3 y − 3 z + 1 = 0 π 3 ≡ − 2 y + 3 z − 1 = 0 \left\{ \begin{aligned}\pi_{1} & \equiv & -x-4y-z=0\\
\pi_{2} & \equiv & -4x+3y-3z+1=0\\
\pi_{3} & \equiv & -2y+3z-1=0
\end{aligned}
\right. ⎩ ⎨ ⎧ π 1 π 2 π 3 ≡ ≡ ≡ − x − 4 y − z = 0 − 4 x + 3 y − 3 z + 1 = 0 − 2 y + 3 z − 1 = 0
Solución:
{ − x − 4 y − z = 0 − 4 x + 3 y − 3 z = − 1 − 2 y + 3 z = 1 \left\{ \begin{aligned}-x-4y-z & = & 0\\
-4x+3y-3z & = & -1\\
-2y+3z & = & 1
\end{aligned}
\right. ⎩ ⎨ ⎧ − x − 4 y − z − 4 x + 3 y − 3 z − 2 y + 3 z = = = 0 − 1 1
Escribamos la matriz ampliada, si podemos la simplificamos:
( − 1 − 4 − 1 0 − 4 3 − 3 − 1 0 − 2 3 1 ) { F 1 ⇆ − F 1 F 2 ⇆ F 2 F 3 ⇆ F 3 } ⟼ ( 1 4 1 0 − 4 3 − 3 − 1 0 − 2 3 1 ) { F 1 ⇆ F 1 F 2 ⇆ 4 F 1 + F 2 F 3 ⇆ F 3 } ⟼ ( 1 4 1 0 0 19 1 − 1 0 − 2 3 1 ) { F 1 ⇆ F 1 F 2 ⇆ F 3 F 3 ⇆ F 2 } ⟼ ( 1 4 1 0 0 − 2 3 1 0 19 1 − 1 ) { F 1 ⇆ F 1 F 2 ⇆ 9 F 2 + F 3 F 3 ⇆ F 3 } ⟼ ( 1 4 1 0 0 1 28 8 0 19 1 − 1 ) { F 1 ⇆ F 1 F 2 ⇆ F 2 F 3 ⇆ − 19 F 2 + F 3 } ⟼ ( 1 4 1 0 0 1 28 8 0 0 − 531 − 153 ) { F 1 ⇆ F 1 F 2 ⇆ F 2 F 3 ⇆ F 3 9 } ⟼ ( 1 4 1 0 0 1 28 8 0 0 − 59 − 17 ) \left(\begin{matrix}-1 & -4 & -1 & 0\\
-4 & 3 & -3 & -1\\
0 & -2 & 3 & 1
\end{matrix}\right)\begin{Bmatrix}F_{1} & \leftrightarrows & -F_{1}\\
F_{2} & \leftrightarrows & F_{2}\\
F_{3} & \leftrightarrows & F_{3}
\end{Bmatrix}\longmapsto\left(\begin{matrix}1 & 4 & 1 & 0\\
-4 & 3 & -3 & -1\\
0 & -2 & 3 & 1
\end{matrix}\right)\begin{Bmatrix}F_{1} & \leftrightarrows & F_{1}\\
F_{2} & \leftrightarrows & 4F_{1}+F_{2}\\
F_{3} & \leftrightarrows & F_{3}
\end{Bmatrix}\longmapsto\left(\begin{matrix}1 & 4 & 1 & 0\\
0 & 19 & 1 & -1\\
0 & -2 & 3 & 1
\end{matrix}\right)\begin{Bmatrix}F_{1} & \leftrightarrows & F_{1}\\
F_{2} & \leftrightarrows & F_{3}\\
F_{3} & \leftrightarrows & F_{2}
\end{Bmatrix}\longmapsto\left(\begin{matrix}1 & 4 & 1 & 0\\
0 & -2 & 3 & 1\\
0 & 19 & 1 & -1
\end{matrix}\right)\begin{Bmatrix}F_{1} & \leftrightarrows & F_{1}\\
F_{2} & \leftrightarrows & 9F_{2}+F_{3}\\
F_{3} & \leftrightarrows & F_{3}
\end{Bmatrix}\longmapsto\left(\begin{matrix}1 & 4 & 1 & 0\\
0 & 1 & 28 & 8\\
0 & 19 & 1 & -1
\end{matrix}\right)\begin{Bmatrix}F_{1} & \leftrightarrows & F_{1}\\
F_{2} & \leftrightarrows & F_{2}\\
F_{3} & \leftrightarrows & -19F_{2}+F_{3}
\end{Bmatrix}\longmapsto\left(\begin{matrix}1 & 4 & 1 & 0\\
0 & 1 & 28 & 8\\
0 & 0 & -531 & -153
\end{matrix}\right)\begin{Bmatrix}F_{1} & \leftrightarrows & F_{1}\\
F_{2} & \leftrightarrows & F_{2}\\
F_{3} & \leftrightarrows & \frac{F_{3}}{9}
\end{Bmatrix}\longmapsto\left(\begin{matrix}1 & 4 & 1 & 0\\
0 & 1 & 28 & 8\\
0 & 0 & -59 & -17
\end{matrix}\right) − 1 − 4 0 − 4 3 − 2 − 1 − 3 3 0 − 1 1 ⎩ ⎨ ⎧ F 1 F 2 F 3 ⇆ ⇆ ⇆ − F 1 F 2 F 3 ⎭ ⎬ ⎫ ⟼ 1 − 4 0 4 3 − 2 1 − 3 3 0 − 1 1 ⎩ ⎨ ⎧ F 1 F 2 F 3 ⇆ ⇆ ⇆ F 1 4 F 1 + F 2 F 3 ⎭ ⎬ ⎫ ⟼ 1 0 0 4 19 − 2 1 1 3 0 − 1 1 ⎩ ⎨ ⎧ F 1 F 2 F 3 ⇆ ⇆ ⇆ F 1 F 3 F 2 ⎭ ⎬ ⎫ ⟼ 1 0 0 4 − 2 19 1 3 1 0 1 − 1 ⎩ ⎨ ⎧ F 1 F 2 F 3 ⇆ ⇆ ⇆ F 1 9 F 2 + F 3 F 3 ⎭ ⎬ ⎫ ⟼ 1 0 0 4 1 19 1 28 1 0 8 − 1 ⎩ ⎨ ⎧ F 1 F 2 F 3 ⇆ ⇆ ⇆ F 1 F 2 − 19 F 2 + F 3 ⎭ ⎬ ⎫ ⟼ 1 0 0 4 1 0 1 28 − 531 0 8 − 153 ⎩ ⎨ ⎧ F 1 F 2 F 3 ⇆ ⇆ ⇆ F 1 F 2 9 F 3 ⎭ ⎬ ⎫ ⟼ 1 0 0 4 1 0 1 28 − 59 0 8 − 17
Posición relativa:
Rango(Mc)=3 y Rango(Ma)=3 ⇒ \Rightarrow ⇒ Los planos se cortan
en un punto
image
Resolviendo el sistema escalonado
{ x + 4 y + z = 0 y + 28 z = 8 − 59 z = − 17 \left\{ \begin{aligned}x+4y+z & = & 0\\
y+28z & = & 8\\
-59z & = & -17
\end{aligned}
\right. ⎩ ⎨ ⎧ x + 4 y + z y + 28 z − 59 z = = = 0 8 − 17 se obtienen de soluciones:
x : − 1 / 59 , y : − 4 / 59 , z : 17 / 59 {x:-1/59,y:-4/59,z:17/59} x : − 1/59 , y : − 4/59 , z : 17/59
Tipo de sistema:
Sistema compatible y determinado
Estudia la posición relativa de los planos de ecuaciones. Resuelve y
clasifica el sistema asociado.
{ π 1 ≡ − 3 x − 3 y + 4 = 0 π 2 ≡ 3 x + 2 y − 2 = 0 π 3 ≡ − x + 3 y − 2 = 0 \left\{ \begin{aligned}\pi_{1} & \equiv & -3x-3y+4=0\\
\pi_{2} & \equiv & 3x+2y-2=0\\
\pi_{3} & \equiv & -x+3y-2=0
\end{aligned}
\right. ⎩ ⎨ ⎧ π 1 π 2 π 3 ≡ ≡ ≡ − 3 x − 3 y + 4 = 0 3 x + 2 y − 2 = 0 − x + 3 y − 2 = 0
Solución:
{ − 3 x − 3 y = − 4 3 x + 2 y = 2 − x + 3 y = 2 \left\{ \begin{aligned}-3x-3y & = & -4\\
3x+2y & = & 2\\
-x+3y & = & 2
\end{aligned}
\right. ⎩ ⎨ ⎧ − 3 x − 3 y 3 x + 2 y − x + 3 y = = = − 4 2 2
Escribamos la matriz ampliada, si podemos la simplificamos:
( − 3 − 3 0 − 4 3 2 0 2 − 1 3 0 2 ) { F 1 ⇆ F 3 F 2 ⇆ F 2 F 3 ⇆ F 1 } ⟼ ( − 1 3 0 2 3 2 0 2 − 3 − 3 0 − 4 ) { F 1 ⇆ − F 1 F 2 ⇆ F 2 F 3 ⇆ F 3 } ⟼ ( 1 − 3 0 − 2 3 2 0 2 − 3 − 3 0 − 4 ) { F 1 ⇆ F 1 F 2 ⇆ − 3 F 1 + F 2 F 3 ⇆ 3 F 1 + F 3 } ⟼ ( 1 − 3 0 − 2 0 11 0 8 0 − 12 0 − 10 ) { F 1 ⇆ F 1 F 2 ⇆ F 2 F 3 ⇆ F 3 2 } ⟼ ( 1 − 3 0 − 2 0 11 0 8 0 − 6 0 − 5 ) { F 1 ⇆ F 1 F 2 ⇆ F 3 F 3 ⇆ F 2 } ⟼ ( 1 − 3 0 − 2 0 − 6 0 − 5 0 11 0 8 ) { F 1 ⇆ F 1 F 2 ⇆ − 2 F 2 − F 3 F 3 ⇆ F 3 } ⟼ ( 1 − 3 0 − 2 0 1 0 2 0 11 0 8 ) { F 1 ⇆ F 1 F 2 ⇆ F 2 F 3 ⇆ − 11 F 2 + F 3 } ⟼ ( 1 − 3 0 − 2 0 1 0 2 0 0 0 − 14 ) { F 1 ⇆ F 1 F 2 ⇆ F 2 F 3 ⇆ F 3 14 } ⟼ ( 1 − 3 0 − 2 0 1 0 2 0 0 0 − 1 ) \left(\begin{matrix}-3 & -3 & 0 & -4\\
3 & 2 & 0 & 2\\
-1 & 3 & 0 & 2
\end{matrix}\right)\begin{Bmatrix}F_{1} & \leftrightarrows & F_{3}\\
F_{2} & \leftrightarrows & F_{2}\\
F_{3} & \leftrightarrows & F_{1}
\end{Bmatrix}\longmapsto\left(\begin{matrix}-1 & 3 & 0 & 2\\
3 & 2 & 0 & 2\\
-3 & -3 & 0 & -4
\end{matrix}\right)\begin{Bmatrix}F_{1} & \leftrightarrows & -F_{1}\\
F_{2} & \leftrightarrows & F_{2}\\
F_{3} & \leftrightarrows & F_{3}
\end{Bmatrix}\longmapsto\left(\begin{matrix}1 & -3 & 0 & -2\\
3 & 2 & 0 & 2\\
-3 & -3 & 0 & -4
\end{matrix}\right)\begin{Bmatrix}F_{1} & \leftrightarrows & F_{1}\\
F_{2} & \leftrightarrows & -3F_{1}+F_{2}\\
F_{3} & \leftrightarrows & 3F_{1}+F_{3}
\end{Bmatrix}\longmapsto\left(\begin{matrix}1 & -3 & 0 & -2\\
0 & 11 & 0 & 8\\
0 & -12 & 0 & -10
\end{matrix}\right)\begin{Bmatrix}F_{1} & \leftrightarrows & F_{1}\\
F_{2} & \leftrightarrows & F_{2}\\
F_{3} & \leftrightarrows & \frac{F_{3}}{2}
\end{Bmatrix}\longmapsto\left(\begin{matrix}1 & -3 & 0 & -2\\
0 & 11 & 0 & 8\\
0 & -6 & 0 & -5
\end{matrix}\right)\begin{Bmatrix}F_{1} & \leftrightarrows & F_{1}\\
F_{2} & \leftrightarrows & F_{3}\\
F_{3} & \leftrightarrows & F_{2}
\end{Bmatrix}\longmapsto\left(\begin{matrix}1 & -3 & 0 & -2\\
0 & -6 & 0 & -5\\
0 & 11 & 0 & 8
\end{matrix}\right)\begin{Bmatrix}F_{1} & \leftrightarrows & F_{1}\\
F_{2} & \leftrightarrows & -2F_{2}-F_{3}\\
F_{3} & \leftrightarrows & F_{3}
\end{Bmatrix}\longmapsto\left(\begin{matrix}1 & -3 & 0 & -2\\
0 & 1 & 0 & 2\\
0 & 11 & 0 & 8
\end{matrix}\right)\begin{Bmatrix}F_{1} & \leftrightarrows & F_{1}\\
F_{2} & \leftrightarrows & F_{2}\\
F_{3} & \leftrightarrows & -11F_{2}+F_{3}
\end{Bmatrix}\longmapsto\left(\begin{matrix}1 & -3 & 0 & -2\\
0 & 1 & 0 & 2\\
0 & 0 & 0 & -14
\end{matrix}\right)\begin{Bmatrix}F_{1} & \leftrightarrows & F_{1}\\
F_{2} & \leftrightarrows & F_{2}\\
F_{3} & \leftrightarrows & \frac{F_{3}}{14}
\end{Bmatrix}\longmapsto\left(\begin{matrix}1 & -3 & 0 & -2\\
0 & 1 & 0 & 2\\
0 & 0 & 0 & -1
\end{matrix}\right) − 3 3 − 1 − 3 2 3 0 0 0 − 4 2 2 ⎩ ⎨ ⎧ F 1 F 2 F 3 ⇆ ⇆ ⇆ F 3 F 2 F 1 ⎭ ⎬ ⎫ ⟼ − 1 3 − 3 3 2 − 3 0 0 0 2 2 − 4 ⎩ ⎨ ⎧ F 1 F 2 F 3 ⇆ ⇆ ⇆ − F 1 F 2 F 3 ⎭ ⎬ ⎫ ⟼ 1 3 − 3 − 3 2 − 3 0 0 0 − 2 2 − 4 ⎩ ⎨ ⎧ F 1 F 2 F 3 ⇆ ⇆ ⇆ F 1 − 3 F 1 + F 2 3 F 1 + F 3 ⎭ ⎬ ⎫ ⟼ 1 0 0 − 3 11 − 12 0 0 0 − 2 8 − 10 ⎩ ⎨ ⎧ F 1 F 2 F 3 ⇆ ⇆ ⇆ F 1 F 2 2 F 3 ⎭ ⎬ ⎫ ⟼ 1 0 0 − 3 11 − 6 0 0 0 − 2 8 − 5 ⎩ ⎨ ⎧ F 1 F 2 F 3 ⇆ ⇆ ⇆ F 1 F 3 F 2 ⎭ ⎬ ⎫ ⟼ 1 0 0 − 3 − 6 11 0 0 0 − 2 − 5 8 ⎩ ⎨ ⎧ F 1 F 2 F 3 ⇆ ⇆ ⇆ F 1 − 2 F 2 − F 3 F 3 ⎭ ⎬ ⎫ ⟼ 1 0 0 − 3 1 11 0 0 0 − 2 2 8 ⎩ ⎨ ⎧ F 1 F 2 F 3 ⇆ ⇆ ⇆ F 1 F 2 − 11 F 2 + F 3 ⎭ ⎬ ⎫ ⟼ 1 0 0 − 3 1 0 0 0 0 − 2 2 − 14 ⎩ ⎨ ⎧ F 1 F 2 F 3 ⇆ ⇆ ⇆ F 1 F 2 14 F 3 ⎭ ⎬ ⎫ ⟼ 1 0 0 − 3 1 0 0 0 0 − 2 2 − 1
Posición relativa:
Rango(Mc)=2 y Rango(Ma)=3 ⇒ \Rightarrow ⇒ Los tres planos se
cortan dos a dos en tres rectas formando un prisma
image
Resolviendo el sistema escalonado
{ x − 3 y = − 2 y = 2 0 = − 1 \left\{ \begin{aligned}x-3y & = & -2\\
y & = & 2\\
0 & = & -1
\end{aligned}
\right. ⎩ ⎨ ⎧ x − 3 y y 0 = = = − 2 2 − 1 se obtienen de soluciones:
N o t i e n e No\ tiene N o t i e n e
Tipo de sistema:
Sistema incompatible, no tiene solución
Estudia la posición relativa de los planos de ecuaciones. Resuelve y
clasifica el sistema asociado.
{ π 1 ≡ − x − 4 y + 4 z + 3 = 0 π 2 ≡ 4 x + y + 3 z − 4 = 0 π 3 ≡ 4 x + y + 3 z + 1 = 0 \left\{ \begin{aligned}\pi_{1} & \equiv & -x-4y+4z+3=0\\
\pi_{2} & \equiv & 4x+y+3z-4=0\\
\pi_{3} & \equiv & 4x+y+3z+1=0
\end{aligned}
\right. ⎩ ⎨ ⎧ π 1 π 2 π 3 ≡ ≡ ≡ − x − 4 y + 4 z + 3 = 0 4 x + y + 3 z − 4 = 0 4 x + y + 3 z + 1 = 0
Solución:
{ − x − 4 y + 4 z = − 3 4 x + y + 3 z = 4 4 x + y + 3 z = − 1 \left\{ \begin{aligned}-x-4y+4z & = & -3\\
4x+y+3z & = & 4\\
4x+y+3z & = & -1
\end{aligned}
\right. ⎩ ⎨ ⎧ − x − 4 y + 4 z 4 x + y + 3 z 4 x + y + 3 z = = = − 3 4 − 1
Escribamos la matriz ampliada, si podemos la simplificamos:
( − 1 − 4 4 − 3 4 1 3 4 4 1 3 − 1 ) { F 1 ⇆ − F 1 F 2 ⇆ F 2 F 3 ⇆ F 3 } ⟼ ( 1 4 − 4 3 4 1 3 4 4 1 3 − 1 ) { F 1 ⇆ F 1 F 2 ⇆ − 4 F 1 + F 2 F 3 ⇆ − 4 F 1 + F 3 } ⟼ ( 1 4 − 4 3 0 − 15 19 − 8 0 − 15 19 − 13 ) { F 1 ⇆ F 1 F 2 ⇆ − F 2 F 3 ⇆ F 3 } ⟼ ( 1 4 − 4 3 0 15 − 19 8 0 − 15 19 − 13 ) { F 1 ⇆ F 1 F 2 ⇆ F 2 F 3 ⇆ F 2 + F 3 } ⟼ ( 1 4 − 4 3 0 15 − 19 8 0 0 0 − 5 ) { F 1 ⇆ F 1 F 2 ⇆ F 2 F 3 ⇆ F 3 5 } ⟼ ( 1 4 − 4 3 0 15 − 19 8 0 0 0 − 1 ) \left(\begin{matrix}-1 & -4 & 4 & -3\\
4 & 1 & 3 & 4\\
4 & 1 & 3 & -1
\end{matrix}\right)\begin{Bmatrix}F_{1} & \leftrightarrows & -F_{1}\\
F_{2} & \leftrightarrows & F_{2}\\
F_{3} & \leftrightarrows & F_{3}
\end{Bmatrix}\longmapsto\left(\begin{matrix}1 & 4 & -4 & 3\\
4 & 1 & 3 & 4\\
4 & 1 & 3 & -1
\end{matrix}\right)\begin{Bmatrix}F_{1} & \leftrightarrows & F_{1}\\
F_{2} & \leftrightarrows & -4F_{1}+F_{2}\\
F_{3} & \leftrightarrows & -4F_{1}+F_{3}
\end{Bmatrix}\longmapsto\left(\begin{matrix}1 & 4 & -4 & 3\\
0 & -15 & 19 & -8\\
0 & -15 & 19 & -13
\end{matrix}\right)\begin{Bmatrix}F_{1} & \leftrightarrows & F_{1}\\
F_{2} & \leftrightarrows & -F_{2}\\
F_{3} & \leftrightarrows & F_{3}
\end{Bmatrix}\longmapsto\left(\begin{matrix}1 & 4 & -4 & 3\\
0 & 15 & -19 & 8\\
0 & -15 & 19 & -13
\end{matrix}\right)\begin{Bmatrix}F_{1} & \leftrightarrows & F_{1}\\
F_{2} & \leftrightarrows & F_{2}\\
F_{3} & \leftrightarrows & F_{2}+F_{3}
\end{Bmatrix}\longmapsto\left(\begin{matrix}1 & 4 & -4 & 3\\
0 & 15 & -19 & 8\\
0 & 0 & 0 & -5
\end{matrix}\right)\begin{Bmatrix}F_{1} & \leftrightarrows & F_{1}\\
F_{2} & \leftrightarrows & F_{2}\\
F_{3} & \leftrightarrows & \frac{F_{3}}{5}
\end{Bmatrix}\longmapsto\left(\begin{matrix}1 & 4 & -4 & 3\\
0 & 15 & -19 & 8\\
0 & 0 & 0 & -1
\end{matrix}\right) − 1 4 4 − 4 1 1 4 3 3 − 3 4 − 1 ⎩ ⎨ ⎧ F 1 F 2 F 3 ⇆ ⇆ ⇆ − F 1 F 2 F 3 ⎭ ⎬ ⎫ ⟼ 1 4 4 4 1 1 − 4 3 3 3 4 − 1 ⎩ ⎨ ⎧ F 1 F 2 F 3 ⇆ ⇆ ⇆ F 1 − 4 F 1 + F 2 − 4 F 1 + F 3 ⎭ ⎬ ⎫ ⟼ 1 0 0 4 − 15 − 15 − 4 19 19 3 − 8 − 13 ⎩ ⎨ ⎧ F 1 F 2 F 3 ⇆ ⇆ ⇆ F 1 − F 2 F 3 ⎭ ⎬ ⎫ ⟼ 1 0 0 4 15 − 15 − 4 − 19 19 3 8 − 13 ⎩ ⎨ ⎧ F 1 F 2 F 3 ⇆ ⇆ ⇆ F 1 F 2 F 2 + F 3 ⎭ ⎬ ⎫ ⟼ 1 0 0 4 15 0 − 4 − 19 0 3 8 − 5 ⎩ ⎨ ⎧ F 1 F 2 F 3 ⇆ ⇆ ⇆ F 1 F 2 5 F 3 ⎭ ⎬ ⎫ ⟼ 1 0 0 4 15 0 − 4 − 19 0 3 8 − 1
Posición relativa:
Rango(Mc)=2 y Rango(Ma)=3 ⇒ \Rightarrow ⇒ Dos planos son
paralelos y el otro no
image
Resolviendo el sistema escalonado
{ x + 4 y − 4 z = 3 15 y − 19 z = 8 0 = − 1 \left\{ \begin{aligned}x+4y-4z & = & 3\\
15y-19z & = & 8\\
0 & = & -1
\end{aligned}
\right. ⎩ ⎨ ⎧ x + 4 y − 4 z 15 y − 19 z 0 = = = 3 8 − 1 se obtienen de soluciones:
N o t i e n e No\ tiene N o t i e n e
Tipo de sistema:
Sistema incompatible, no tiene solución
Estudia la posición relativa de los planos de ecuaciones. Resuelve y
clasifica el sistema asociado.
{ π 1 ≡ − x − 4 y + 4 = 0 π 2 ≡ 2 x + 2 y + 2 = 0 π 3 ≡ x + 4 y − 4 = 0 \left\{ \begin{aligned}\pi_{1} & \equiv & -x-4y+4=0\\
\pi_{2} & \equiv & 2x+2y+2=0\\
\pi_{3} & \equiv & x+4y-4=0
\end{aligned}
\right. ⎩ ⎨ ⎧ π 1 π 2 π 3 ≡ ≡ ≡ − x − 4 y + 4 = 0 2 x + 2 y + 2 = 0 x + 4 y − 4 = 0
Solución:
{ − x − 4 y = − 4 2 x + 2 y = − 2 x + 4 y = 4 \left\{ \begin{aligned}-x-4y & = & -4\\
2x+2y & = & -2\\
x+4y & = & 4
\end{aligned}
\right. ⎩ ⎨ ⎧ − x − 4 y 2 x + 2 y x + 4 y = = = − 4 − 2 4
Escribamos la matriz ampliada, si podemos la simplificamos:
( − 1 − 4 0 − 4 2 2 0 − 2 1 4 0 4 ) { F 1 ⇆ F 1 F 2 ⇆ F 2 2 F 3 ⇆ F 3 } ⟼ ( − 1 − 4 0 − 4 1 1 0 − 1 1 4 0 4 ) { F 1 ⇆ − F 1 F 2 ⇆ F 2 F 3 ⇆ F 3 } ⟼ ( 1 4 0 4 1 1 0 − 1 1 4 0 4 ) { F 1 ⇆ F 1 F 2 ⇆ − F 1 + F 2 F 3 ⇆ − F 1 + F 3 } ⟼ ( 1 4 0 4 0 − 3 0 − 5 0 0 0 0 ) { F 1 ⇆ F 1 F 2 ⇆ − F 2 F 3 ⇆ F 3 } ⟼ ( 1 4 0 4 0 3 0 5 0 0 0 0 ) { F 1 ⇆ F 1 F 2 ⇆ F 2 F 3 ⇆ F 3 } ⟼ ( 1 4 0 4 0 3 0 5 0 0 0 0 ) \left(\begin{matrix}-1 & -4 & 0 & -4\\
2 & 2 & 0 & -2\\
1 & 4 & 0 & 4
\end{matrix}\right)\begin{Bmatrix}F_{1} & \leftrightarrows & F_{1}\\
F_{2} & \leftrightarrows & \frac{F_{2}}{2}\\
F_{3} & \leftrightarrows & F_{3}
\end{Bmatrix}\longmapsto\left(\begin{matrix}-1 & -4 & 0 & -4\\
1 & 1 & 0 & -1\\
1 & 4 & 0 & 4
\end{matrix}\right)\begin{Bmatrix}F_{1} & \leftrightarrows & -F_{1}\\
F_{2} & \leftrightarrows & F_{2}\\
F_{3} & \leftrightarrows & F_{3}
\end{Bmatrix}\longmapsto\left(\begin{matrix}1 & 4 & 0 & 4\\
1 & 1 & 0 & -1\\
1 & 4 & 0 & 4
\end{matrix}\right)\begin{Bmatrix}F_{1} & \leftrightarrows & F_{1}\\
F_{2} & \leftrightarrows & -F_{1}+F_{2}\\
F_{3} & \leftrightarrows & -F_{1}+F_{3}
\end{Bmatrix}\longmapsto\left(\begin{matrix}1 & 4 & 0 & 4\\
0 & -3 & 0 & -5\\
0 & 0 & 0 & 0
\end{matrix}\right)\begin{Bmatrix}F_{1} & \leftrightarrows & F_{1}\\
F_{2} & \leftrightarrows & -F_{2}\\
F_{3} & \leftrightarrows & F_{3}
\end{Bmatrix}\longmapsto\left(\begin{matrix}1 & 4 & 0 & 4\\
0 & 3 & 0 & 5\\
0 & 0 & 0 & 0
\end{matrix}\right)\begin{Bmatrix}F_{1} & \leftrightarrows & F_{1}\\
F_{2} & \leftrightarrows & F_{2}\\
F_{3} & \leftrightarrows & F_{3}
\end{Bmatrix}\longmapsto\left(\begin{matrix}1 & 4 & 0 & 4\\
0 & 3 & 0 & 5\\
0 & 0 & 0 & 0
\end{matrix}\right) − 1 2 1 − 4 2 4 0 0 0 − 4 − 2 4 ⎩ ⎨ ⎧ F 1 F 2 F 3 ⇆ ⇆ ⇆ F 1 2 F 2 F 3 ⎭ ⎬ ⎫ ⟼ − 1 1 1 − 4 1 4 0 0 0 − 4 − 1 4 ⎩ ⎨ ⎧ F 1 F 2 F 3 ⇆ ⇆ ⇆ − F 1 F 2 F 3 ⎭ ⎬ ⎫ ⟼ 1 1 1 4 1 4 0 0 0 4 − 1 4 ⎩ ⎨ ⎧ F 1 F 2 F 3 ⇆ ⇆ ⇆ F 1 − F 1 + F 2 − F 1 + F 3 ⎭ ⎬ ⎫ ⟼ 1 0 0 4 − 3 0 0 0 0 4 − 5 0 ⎩ ⎨ ⎧ F 1 F 2 F 3 ⇆ ⇆ ⇆ F 1 − F 2 F 3 ⎭ ⎬ ⎫ ⟼ 1 0 0 4 3 0 0 0 0 4 5 0 ⎩ ⎨ ⎧ F 1 F 2 F 3 ⇆ ⇆ ⇆ F 1 F 2 F 3 ⎭ ⎬ ⎫ ⟼ 1 0 0 4 3 0 0 0 0 4 5 0
Posición relativa:
Rango(Mc)=2 y Rango(Ma)=2 ⇒ \Rightarrow ⇒ Dos planos son
iguales y el otro secante. Se cortan en una recta
image
Resolviendo el sistema escalonado
{ x + 4 y = 4 3 y = 5 0 = 0 \left\{ \begin{aligned}x+4y & = & 4\\
3y & = & 5\\
0 & = & 0
\end{aligned}
\right. ⎩ ⎨ ⎧ x + 4 y 3 y 0 = = = 4 5 0 se obtienen de soluciones:
[ x y z ] = [ − 8 3 5 3 τ 0 ] \left[\begin{matrix}x\\
y\\
z
\end{matrix}\right]=\left[\begin{matrix}-\frac{8}{3}\\
\frac{5}{3}\\
\tau_{0}
\end{matrix}\right] x y z = − 3 8 3 5 τ 0
Tipo de sistema:
Sistema compatible indeterminado
Estudia la posición relativa de los planos de ecuaciones. Resuelve y
clasifica el sistema asociado.
{ π 1 ≡ x − 2 y − 4 z + 1 = 0 π 2 ≡ 2 x − 4 y − 4 z + 2 = 0 π 3 ≡ − 2 x + 4 y + z − 2 = 0 \left\{ \begin{aligned}\pi_{1} & \equiv & x-2y-4z+1=0\\
\pi_{2} & \equiv & 2x-4y-4z+2=0\\
\pi_{3} & \equiv & -2x+4y+z-2=0
\end{aligned}
\right. ⎩ ⎨ ⎧ π 1 π 2 π 3 ≡ ≡ ≡ x − 2 y − 4 z + 1 = 0 2 x − 4 y − 4 z + 2 = 0 − 2 x + 4 y + z − 2 = 0
Solución:
{ x − 2 y − 4 z = − 1 2 x − 4 y − 4 z = − 2 − 2 x + 4 y + z = 2 \left\{ \begin{aligned}x-2y-4z & = & -1\\
2x-4y-4z & = & -2\\
-2x+4y+z & = & 2
\end{aligned}
\right. ⎩ ⎨ ⎧ x − 2 y − 4 z 2 x − 4 y − 4 z − 2 x + 4 y + z = = = − 1 − 2 2
Escribamos la matriz ampliada, si podemos la simplificamos:
( 1 − 2 − 4 − 1 2 − 4 − 4 − 2 − 2 4 1 2 ) { F 1 ⇆ F 1 F 2 ⇆ F 2 2 F 3 ⇆ F 3 } ⟼ ( 1 − 2 − 4 − 1 1 − 2 − 2 − 1 − 2 4 1 2 ) { F 1 ⇆ F 1 F 2 ⇆ − F 1 + F 2 F 3 ⇆ 2 F 1 + F 3 } ⟼ ( 1 − 2 − 4 − 1 0 0 2 0 0 0 − 7 0 ) { F 1 ⇆ F 1 F 2 ⇆ F 2 2 F 3 ⇆ F 3 7 } ⟼ ( 1 − 2 − 4 − 1 0 0 1 0 0 0 − 1 0 ) \left(\begin{matrix}1 & -2 & -4 & -1\\
2 & -4 & -4 & -2\\
-2 & 4 & 1 & 2
\end{matrix}\right)\begin{Bmatrix}F_{1} & \leftrightarrows & F_{1}\\
F_{2} & \leftrightarrows & \frac{F_{2}}{2}\\
F_{3} & \leftrightarrows & F_{3}
\end{Bmatrix}\longmapsto\left(\begin{matrix}1 & -2 & -4 & -1\\
1 & -2 & -2 & -1\\
-2 & 4 & 1 & 2
\end{matrix}\right)\begin{Bmatrix}F_{1} & \leftrightarrows & F_{1}\\
F_{2} & \leftrightarrows & -F_{1}+F_{2}\\
F_{3} & \leftrightarrows & 2F_{1}+F_{3}
\end{Bmatrix}\longmapsto\left(\begin{matrix}1 & -2 & -4 & -1\\
0 & 0 & 2 & 0\\
0 & 0 & -7 & 0
\end{matrix}\right)\begin{Bmatrix}F_{1} & \leftrightarrows & F_{1}\\
F_{2} & \leftrightarrows & \frac{F_{2}}{2}\\
F_{3} & \leftrightarrows & \frac{F_{3}}{7}
\end{Bmatrix}\longmapsto\left(\begin{matrix}1 & -2 & -4 & -1\\
0 & 0 & 1 & 0\\
0 & 0 & -1 & 0
\end{matrix}\right) 1 2 − 2 − 2 − 4 4 − 4 − 4 1 − 1 − 2 2 ⎩ ⎨ ⎧ F 1 F 2 F 3 ⇆ ⇆ ⇆ F 1 2 F 2 F 3 ⎭ ⎬ ⎫ ⟼ 1 1 − 2 − 2 − 2 4 − 4 − 2 1 − 1 − 1 2 ⎩ ⎨ ⎧ F 1 F 2 F 3 ⇆ ⇆ ⇆ F 1 − F 1 + F 2 2 F 1 + F 3 ⎭ ⎬ ⎫ ⟼ 1 0 0 − 2 0 0 − 4 2 − 7 − 1 0 0 ⎩ ⎨ ⎧ F 1 F 2 F 3 ⇆ ⇆ ⇆ F 1 2 F 2 7 F 3 ⎭ ⎬ ⎫ ⟼ 1 0 0 − 2 0 0 − 4 1 − 1 − 1 0 0
Posición relativa:
Rango(Mc)=2 y Rango(Ma)=2 ⇒ \Rightarrow ⇒ Los tres planos se
cortan en una recta
image
Resolviendo el sistema escalonado
{ x − 2 y − 4 z = − 1 z = 0 − z = 0 \left\{ \begin{aligned}x-2y-4z & = & -1\\
z & = & 0\\
-z & = & 0
\end{aligned}
\right. ⎩ ⎨ ⎧ x − 2 y − 4 z z − z = = = − 1 0 0 se obtienen de soluciones:
[ x y z ] = [ 2 τ 0 − 1 τ 0 0 ] \left[\begin{matrix}x\\
y\\
z
\end{matrix}\right]=\left[\begin{matrix}2\tau_{0}-1\\
\tau_{0}\\
0
\end{matrix}\right] x y z = 2 τ 0 − 1 τ 0 0
Tipo de sistema:
Sistema compatible indeterminado
Estudia la posición relativa de los planos de ecuaciones. Resuelve y
clasifica el sistema asociado.
{ π 1 ≡ − 3 x − y + 2 z + 4 = 0 π 2 ≡ 15 x + 5 y − 10 z + 2 = 0 π 3 ≡ − 12 x − 4 y + 8 z + 3 = 0 \left\{ \begin{aligned}\pi_{1} & \equiv & -3x-y+2z+4=0\\
\pi_{2} & \equiv & 15x+5y-10z+2=0\\
\pi_{3} & \equiv & -12x-4y+8z+3=0
\end{aligned}
\right. ⎩ ⎨ ⎧ π 1 π 2 π 3 ≡ ≡ ≡ − 3 x − y + 2 z + 4 = 0 15 x + 5 y − 10 z + 2 = 0 − 12 x − 4 y + 8 z + 3 = 0
Solución:
{ − 3 x − y + 2 z = − 4 15 x + 5 y − 10 z = − 2 − 12 x − 4 y + 8 z = − 3 \left\{ \begin{aligned}-3x-y+2z & = & -4\\
15x+5y-10z & = & -2\\
-12x-4y+8z & = & -3
\end{aligned}
\right. ⎩ ⎨ ⎧ − 3 x − y + 2 z 15 x + 5 y − 10 z − 12 x − 4 y + 8 z = = = − 4 − 2 − 3
Escribamos la matriz ampliada, si podemos la simplificamos:
( − 3 − 1 2 − 4 15 5 − 10 − 2 − 12 − 4 8 − 3 ) { F 1 ⇆ − F 1 F 2 ⇆ F 2 F 3 ⇆ F 3 } ⟼ ( 3 1 − 2 4 15 5 − 10 − 2 − 12 − 4 8 − 3 ) { F 1 ⇆ F 1 F 2 ⇆ − 5 F 1 + F 2 F 3 ⇆ 4 F 1 + F 3 } ⟼ ( 3 1 − 2 4 0 0 0 − 22 0 0 0 13 ) { F 1 ⇆ F 1 F 2 ⇆ F 2 22 F 3 ⇆ F 3 13 } ⟼ ( 3 1 − 2 4 0 0 0 − 1 0 0 0 1 ) \left(\begin{matrix}-3 & -1 & 2 & -4\\
15 & 5 & -10 & -2\\
-12 & -4 & 8 & -3
\end{matrix}\right)\begin{Bmatrix}F_{1} & \leftrightarrows & -F_{1}\\
F_{2} & \leftrightarrows & F_{2}\\
F_{3} & \leftrightarrows & F_{3}
\end{Bmatrix}\longmapsto\left(\begin{matrix}3 & 1 & -2 & 4\\
15 & 5 & -10 & -2\\
-12 & -4 & 8 & -3
\end{matrix}\right)\begin{Bmatrix}F_{1} & \leftrightarrows & F_{1}\\
F_{2} & \leftrightarrows & -5F_{1}+F_{2}\\
F_{3} & \leftrightarrows & 4F_{1}+F_{3}
\end{Bmatrix}\longmapsto\left(\begin{matrix}3 & 1 & -2 & 4\\
0 & 0 & 0 & -22\\
0 & 0 & 0 & 13
\end{matrix}\right)\begin{Bmatrix}F_{1} & \leftrightarrows & F_{1}\\
F_{2} & \leftrightarrows & \frac{F_{2}}{22}\\
F_{3} & \leftrightarrows & \frac{F_{3}}{13}
\end{Bmatrix}\longmapsto\left(\begin{matrix}3 & 1 & -2 & 4\\
0 & 0 & 0 & -1\\
0 & 0 & 0 & 1
\end{matrix}\right) − 3 15 − 12 − 1 5 − 4 2 − 10 8 − 4 − 2 − 3 ⎩ ⎨ ⎧ F 1 F 2 F 3 ⇆ ⇆ ⇆ − F 1 F 2 F 3 ⎭ ⎬ ⎫ ⟼ 3 15 − 12 1 5 − 4 − 2 − 10 8 4 − 2 − 3 ⎩ ⎨ ⎧ F 1 F 2 F 3 ⇆ ⇆ ⇆ F 1 − 5 F 1 + F 2 4 F 1 + F 3 ⎭ ⎬ ⎫ ⟼ 3 0 0 1 0 0 − 2 0 0 4 − 22 13 ⎩ ⎨ ⎧ F 1 F 2 F 3 ⇆ ⇆ ⇆ F 1 22 F 2 13 F 3 ⎭ ⎬ ⎫ ⟼ 3 0 0 1 0 0 − 2 0 0 4 − 1 1
Posición relativa:
Rango(Mc)=1 y Rango(Ma)=2 ⇒ \Rightarrow ⇒ Los tres planos son paralelos
image
Resolviendo el sistema escalonado
{ 3 x + y − 2 z = 4 0 = − 1 0 = 1 \left\{ \begin{aligned}3x+y-2z & = & 4\\
0 & = & -1\\
0 & = & 1
\end{aligned}
\right. ⎩ ⎨ ⎧ 3 x + y − 2 z 0 0 = = = 4 − 1 1 se obtienen de soluciones:
N o t i e n e No\ tiene N o t i e n e
Tipo de sistema:
Sistema incompatible, no tiene solución
Estudia la posición relativa de los planos de ecuaciones. Resuelve y
clasifica el sistema asociado.
{ π 1 ≡ − 4 x + 2 y − z + 4 = 0 π 2 ≡ − 16 x + 8 y − 4 z + 8 = 0 π 3 ≡ 8 x − 4 y + 2 z − 4 = 0 \left\{ \begin{aligned}\pi_{1} & \equiv & -4x+2y-z+4=0\\
\pi_{2} & \equiv & -16x+8y-4z+8=0\\
\pi_{3} & \equiv & 8x-4y+2z-4=0
\end{aligned}
\right. ⎩ ⎨ ⎧ π 1 π 2 π 3 ≡ ≡ ≡ − 4 x + 2 y − z + 4 = 0 − 16 x + 8 y − 4 z + 8 = 0 8 x − 4 y + 2 z − 4 = 0
Solución:
{ − 4 x + 2 y − z = − 4 − 16 x + 8 y − 4 z = − 8 8 x − 4 y + 2 z = 4 \left\{ \begin{aligned}-4x+2y-z & = & -4\\
-16x+8y-4z & = & -8\\
8x-4y+2z & = & 4
\end{aligned}
\right. ⎩ ⎨ ⎧ − 4 x + 2 y − z − 16 x + 8 y − 4 z 8 x − 4 y + 2 z = = = − 4 − 8 4
Escribamos la matriz ampliada, si podemos la simplificamos:
( − 4 2 − 1 − 4 − 16 8 − 4 − 8 8 − 4 2 4 ) { F 1 ⇆ F 1 F 2 ⇆ F 2 4 F 3 ⇆ F 3 2 } ⟼ ( − 4 2 − 1 − 4 − 4 2 − 1 − 2 4 − 2 1 2 ) { F 1 ⇆ − F 1 F 2 ⇆ F 2 F 3 ⇆ F 3 } ⟼ ( 4 − 2 1 4 − 4 2 − 1 − 2 4 − 2 1 2 ) { F 1 ⇆ F 1 F 2 ⇆ F 1 + F 2 F 3 ⇆ − F 1 + F 3 } ⟼ ( 4 − 2 1 4 0 0 0 2 0 0 0 − 2 ) { F 1 ⇆ F 1 F 2 ⇆ F 2 2 F 3 ⇆ F 3 2 } ⟼ ( 4 − 2 1 4 0 0 0 1 0 0 0 − 1 ) \left(\begin{matrix}-4 & 2 & -1 & -4\\
-16 & 8 & -4 & -8\\
8 & -4 & 2 & 4
\end{matrix}\right)\begin{Bmatrix}F_{1} & \leftrightarrows & F_{1}\\
F_{2} & \leftrightarrows & \frac{F_{2}}{4}\\
F_{3} & \leftrightarrows & \frac{F_{3}}{2}
\end{Bmatrix}\longmapsto\left(\begin{matrix}-4 & 2 & -1 & -4\\
-4 & 2 & -1 & -2\\
4 & -2 & 1 & 2
\end{matrix}\right)\begin{Bmatrix}F_{1} & \leftrightarrows & -F_{1}\\
F_{2} & \leftrightarrows & F_{2}\\
F_{3} & \leftrightarrows & F_{3}
\end{Bmatrix}\longmapsto\left(\begin{matrix}4 & -2 & 1 & 4\\
-4 & 2 & -1 & -2\\
4 & -2 & 1 & 2
\end{matrix}\right)\begin{Bmatrix}F_{1} & \leftrightarrows & F_{1}\\
F_{2} & \leftrightarrows & F_{1}+F_{2}\\
F_{3} & \leftrightarrows & -F_{1}+F_{3}
\end{Bmatrix}\longmapsto\left(\begin{matrix}4 & -2 & 1 & 4\\
0 & 0 & 0 & 2\\
0 & 0 & 0 & -2
\end{matrix}\right)\begin{Bmatrix}F_{1} & \leftrightarrows & F_{1}\\
F_{2} & \leftrightarrows & \frac{F_{2}}{2}\\
F_{3} & \leftrightarrows & \frac{F_{3}}{2}
\end{Bmatrix}\longmapsto\left(\begin{matrix}4 & -2 & 1 & 4\\
0 & 0 & 0 & 1\\
0 & 0 & 0 & -1
\end{matrix}\right) − 4 − 16 8 2 8 − 4 − 1 − 4 2 − 4 − 8 4 ⎩ ⎨ ⎧ F 1 F 2 F 3 ⇆ ⇆ ⇆ F 1 4 F 2 2 F 3 ⎭ ⎬ ⎫ ⟼ − 4 − 4 4 2 2 − 2 − 1 − 1 1 − 4 − 2 2 ⎩ ⎨ ⎧ F 1 F 2 F 3 ⇆ ⇆ ⇆ − F 1 F 2 F 3 ⎭ ⎬ ⎫ ⟼ 4 − 4 4 − 2 2 − 2 1 − 1 1 4 − 2 2 ⎩ ⎨ ⎧ F 1 F 2 F 3 ⇆ ⇆ ⇆ F 1 F 1 + F 2 − F 1 + F 3 ⎭ ⎬ ⎫ ⟼ 4 0 0 − 2 0 0 1 0 0 4 2 − 2 ⎩ ⎨ ⎧ F 1 F 2 F 3 ⇆ ⇆ ⇆ F 1 2 F 2 2 F 3 ⎭ ⎬ ⎫ ⟼ 4 0 0 − 2 0 0 1 0 0 4 1 − 1
Posición relativa:
Rango(Mc)=1 y Rango(Ma)=2 ⇒ \Rightarrow ⇒ Dos planos son el
mismo y otro paralelo a ellos
image
Resolviendo el sistema escalonado
{ 4 x − 2 y + z = 4 0 = 1 0 = − 1 \left\{ \begin{aligned}4x-2y+z & = & 4\\
0 & = & 1\\
0 & = & -1
\end{aligned}
\right. ⎩ ⎨ ⎧ 4 x − 2 y + z 0 0 = = = 4 1 − 1 se obtienen de soluciones:
N o t i e n e No\ tiene N o t i e n e
Tipo de sistema:
Sistema incompatible, no tiene solución
Estudia la posición relativa de los planos de ecuaciones. Resuelve y
clasifica el sistema asociado.
{ π 1 ≡ − x + 2 z + 3 = 0 π 2 ≡ − 3 x + 6 z + 9 = 0 π 3 ≡ − 2 x + 4 z + 6 = 0 \left\{ \begin{aligned}\pi_{1} & \equiv & -x+2z+3=0\\
\pi_{2} & \equiv & -3x+6z+9=0\\
\pi_{3} & \equiv & -2x+4z+6=0
\end{aligned}
\right. ⎩ ⎨ ⎧ π 1 π 2 π 3 ≡ ≡ ≡ − x + 2 z + 3 = 0 − 3 x + 6 z + 9 = 0 − 2 x + 4 z + 6 = 0
Solución:
{ − x + 2 z = − 3 − 3 x + 6 z = − 9 − 2 x + 4 z = − 6 \left\{ \begin{aligned}-x+2z & = & -3\\
-3x+6z & = & -9\\
-2x+4z & = & -6
\end{aligned}
\right. ⎩ ⎨ ⎧ − x + 2 z − 3 x + 6 z − 2 x + 4 z = = = − 3 − 9 − 6
Escribamos la matriz ampliada, si podemos la simplificamos:
( − 1 0 2 − 3 − 3 0 6 − 9 − 2 0 4 − 6 ) { F 1 ⇆ F 1 F 2 ⇆ F 2 3 F 3 ⇆ F 3 2 } ⟼ ( − 1 0 2 − 3 − 1 0 2 − 3 − 1 0 2 − 3 ) { F 1 ⇆ − F 1 F 2 ⇆ F 2 F 3 ⇆ F 3 } ⟼ ( 1 0 − 2 3 − 1 0 2 − 3 − 1 0 2 − 3 ) { F 1 ⇆ F 1 F 2 ⇆ F 1 + F 2 F 3 ⇆ F 1 + F 3 } ⟼ ( 1 0 − 2 3 0 0 0 0 0 0 0 0 ) \left(\begin{matrix}-1 & 0 & 2 & -3\\
-3 & 0 & 6 & -9\\
-2 & 0 & 4 & -6
\end{matrix}\right)\begin{Bmatrix}F_{1} & \leftrightarrows & F_{1}\\
F_{2} & \leftrightarrows & \frac{F_{2}}{3}\\
F_{3} & \leftrightarrows & \frac{F_{3}}{2}
\end{Bmatrix}\longmapsto\left(\begin{matrix}-1 & 0 & 2 & -3\\
-1 & 0 & 2 & -3\\
-1 & 0 & 2 & -3
\end{matrix}\right)\begin{Bmatrix}F_{1} & \leftrightarrows & -F_{1}\\
F_{2} & \leftrightarrows & F_{2}\\
F_{3} & \leftrightarrows & F_{3}
\end{Bmatrix}\longmapsto\left(\begin{matrix}1 & 0 & -2 & 3\\
-1 & 0 & 2 & -3\\
-1 & 0 & 2 & -3
\end{matrix}\right)\begin{Bmatrix}F_{1} & \leftrightarrows & F_{1}\\
F_{2} & \leftrightarrows & F_{1}+F_{2}\\
F_{3} & \leftrightarrows & F_{1}+F_{3}
\end{Bmatrix}\longmapsto\left(\begin{matrix}1 & 0 & -2 & 3\\
0 & 0 & 0 & 0\\
0 & 0 & 0 & 0
\end{matrix}\right) − 1 − 3 − 2 0 0 0 2 6 4 − 3 − 9 − 6 ⎩ ⎨ ⎧ F 1 F 2 F 3 ⇆ ⇆ ⇆ F 1 3 F 2 2 F 3 ⎭ ⎬ ⎫ ⟼ − 1 − 1 − 1 0 0 0 2 2 2 − 3 − 3 − 3 ⎩ ⎨ ⎧ F 1 F 2 F 3 ⇆ ⇆ ⇆ − F 1 F 2 F 3 ⎭ ⎬ ⎫ ⟼ 1 − 1 − 1 0 0 0 − 2 2 2 3 − 3 − 3 ⎩ ⎨ ⎧ F 1 F 2 F 3 ⇆ ⇆ ⇆ F 1 F 1 + F 2 F 1 + F 3 ⎭ ⎬ ⎫ ⟼ 1 0 0 0 0 0 − 2 0 0 3 0 0
Posición relativa:
Rango(Mc)=1 y Rango(Ma)=1 ⇒ \Rightarrow ⇒ Los tres planos son
el mismo
image
Resolviendo el sistema escalonado
{ x − 2 z = 3 0 = 0 0 = 0 \left\{ \begin{aligned}x-2z & = & 3\\
0 & = & 0\\
0 & = & 0
\end{aligned}
\right. ⎩ ⎨ ⎧ x − 2 z 0 0 = = = 3 0 0 se obtienen de soluciones:
[ x y z ] = [ 2 τ 1 + 3 τ 0 τ 1 ] \left[\begin{matrix}x\\
y\\
z
\end{matrix}\right]=\left[\begin{matrix}2\tau_{1}+3\\
\tau_{0}\\
\tau_{1}
\end{matrix}\right] x y z = 2 τ 1 + 3 τ 0 τ 1
Tipo de sistema:
Sistema compatible indeterminado
Enlaces al fichero fuente y al pdf final de una posible compilación.