Ejercicios sobre el estudio de la posición relativa de tres planos en el espacio usando el método de Gauss

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

  1. Estudia la posición relativa de los planos de ecuaciones. Resuelve y clasifica el sistema asociado.

    {π1x2y+2z1=0π2z+4=0π3x+yz+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.

    Solución:

    {x2y+2z=1z=4x+yz=2\left\{ \begin{aligned}x-2y+2z & = & 1\\ z & = & -4\\ -x+y-z & = & -2 \end{aligned} \right.
    Escribamos la matriz ampliada, si podemos la simplificamos:
    (122100141112){F1F1F2F2F3F1+F3}(122100140111){F1F1F2F3F3F2}(122101110014){F1F1F2F2F3F3}(122101110014){F1F1F2F2F3F3}(122101110014)\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)
    Posición relativa:

    Rango(Mc)=3 y Rango(Ma)=3 \Rightarrow Los planos se cortan en un punto

    image

    Resolviendo el sistema escalonado {x2y+2z=1yz=1z=4\left\{ \begin{aligned}x-2y+2z & = & 1\\ y-z & = & 1\\ z & = & -4 \end{aligned} \right. se obtienen de soluciones:

    x:3,y:3,z:4{x:3,y:-3,z:-4}

    Tipo de sistema:

    Sistema compatible y determinado

  2. Estudia la posición relativa de los planos de ecuaciones. Resuelve y clasifica el sistema asociado.

    {π1x4yz=0π24x+3y3z+1=0π32y+3z1=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.

    Solución:

    {x4yz=04x+3y3z=12y+3z=1\left\{ \begin{aligned}-x-4y-z & = & 0\\ -4x+3y-3z & = & -1\\ -2y+3z & = & 1 \end{aligned} \right.
    Escribamos la matriz ampliada, si podemos la simplificamos:
    (141043310231){F1F1F2F2F3F3}(141043310231){F1F1F24F1+F2F3F3}(1410019110231){F1F1F2F3F3F2}(1410023101911){F1F1F29F2+F3F3F3}(14100128801911){F1F1F2F2F319F2+F3}(14100128800531153){F1F1F2F2F3F39}(141001288005917)\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)
    Posición relativa:

    Rango(Mc)=3 y Rango(Ma)=3 \Rightarrow Los planos se cortan en un punto

    image

    Resolviendo el sistema escalonado {x+4y+z=0y+28z=859z=17\left\{ \begin{aligned}x+4y+z & = & 0\\ y+28z & = & 8\\ -59z & = & -17 \end{aligned} \right. se obtienen de soluciones:

    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

  3. Estudia la posición relativa de los planos de ecuaciones. Resuelve y clasifica el sistema asociado.

    {π13x3y+4=0π23x+2y2=0π3x+3y2=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.

    Solución:

    {3x3y=43x+2y=2x+3y=2\left\{ \begin{aligned}-3x-3y & = & -4\\ 3x+2y & = & 2\\ -x+3y & = & 2 \end{aligned} \right.
    Escribamos la matriz ampliada, si podemos la simplificamos:
    (330432021302){F1F3F2F2F3F1}(130232023304){F1F1F2F2F3F3}(130232023304){F1F1F23F1+F2F33F1+F3}(130201108012010){F1F1F2F2F3F32}(1302011080605){F1F1F2F3F3F2}(1302060501108){F1F1F22F2F3F3F3}(1302010201108){F1F1F2F2F311F2+F3}(1302010200014){F1F1F2F2F3F314}(130201020001)\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)
    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 {x3y=2y=20=1\left\{ \begin{aligned}x-3y & = & -2\\ y & = & 2\\ 0 & = & -1 \end{aligned} \right. se obtienen de soluciones:

    No tieneNo\ tiene

    Tipo de sistema:

    Sistema incompatible, no tiene solución

  4. Estudia la posición relativa de los planos de ecuaciones. Resuelve y clasifica el sistema asociado.

    {π1x4y+4z+3=0π24x+y+3z4=0π34x+y+3z+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.

    Solución:

    {x4y+4z=34x+y+3z=44x+y+3z=1\left\{ \begin{aligned}-x-4y+4z & = & -3\\ 4x+y+3z & = & 4\\ 4x+y+3z & = & -1 \end{aligned} \right.
    Escribamos la matriz ampliada, si podemos la simplificamos:
    (144341344131){F1F1F2F2F3F3}(144341344131){F1F1F24F1+F2F34F1+F3}(14430151980151913){F1F1F2F2F3F3}(14430151980151913){F1F1F2F2F3F2+F3}(14430151980005){F1F1F2F2F3F35}(14430151980001)\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)
    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+4y4z=315y19z=80=1\left\{ \begin{aligned}x+4y-4z & = & 3\\ 15y-19z & = & 8\\ 0 & = & -1 \end{aligned} \right. se obtienen de soluciones:

    No tieneNo\ tiene

    Tipo de sistema:

    Sistema incompatible, no tiene solución

  5. Estudia la posición relativa de los planos de ecuaciones. Resuelve y clasifica el sistema asociado.

    {π1x4y+4=0π22x+2y+2=0π3x+4y4=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.

    Solución:

    {x4y=42x+2y=2x+4y=4\left\{ \begin{aligned}-x-4y & = & -4\\ 2x+2y & = & -2\\ x+4y & = & 4 \end{aligned} \right.
    Escribamos la matriz ampliada, si podemos la simplificamos:
    (140422021404){F1F1F2F22F3F3}(140411011404){F1F1F2F2F3F3}(140411011404){F1F1F2F1+F2F3F1+F3}(140403050000){F1F1F2F2F3F3}(140403050000){F1F1F2F2F3F3}(140403050000)\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)
    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+4y=43y=50=0\left\{ \begin{aligned}x+4y & = & 4\\ 3y & = & 5\\ 0 & = & 0 \end{aligned} \right. se obtienen de soluciones:

    [xyz]=[8353τ0]\left[\begin{matrix}x\\ y\\ z \end{matrix}\right]=\left[\begin{matrix}-\frac{8}{3}\\ \frac{5}{3}\\ \tau_{0} \end{matrix}\right]

    Tipo de sistema:

    Sistema compatible indeterminado

  6. Estudia la posición relativa de los planos de ecuaciones. Resuelve y clasifica el sistema asociado.

    {π1x2y4z+1=0π22x4y4z+2=0π32x+4y+z2=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.

    Solución:

    {x2y4z=12x4y4z=22x+4y+z=2\left\{ \begin{aligned}x-2y-4z & = & -1\\ 2x-4y-4z & = & -2\\ -2x+4y+z & = & 2 \end{aligned} \right.
    Escribamos la matriz ampliada, si podemos la simplificamos:
    (124124422412){F1F1F2F22F3F3}(124112212412){F1F1F2F1+F2F32F1+F3}(124100200070){F1F1F2F22F3F37}(124100100010)\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)
    Posición relativa:

    Rango(Mc)=2 y Rango(Ma)=2 \Rightarrow Los tres planos se cortan en una recta

    image

    Resolviendo el sistema escalonado {x2y4z=1z=0z=0\left\{ \begin{aligned}x-2y-4z & = & -1\\ z & = & 0\\ -z & = & 0 \end{aligned} \right. se obtienen de soluciones:

    [xyz]=[2τ01τ00]\left[\begin{matrix}x\\ y\\ z \end{matrix}\right]=\left[\begin{matrix}2\tau_{0}-1\\ \tau_{0}\\ 0 \end{matrix}\right]

    Tipo de sistema:

    Sistema compatible indeterminado

  7. Estudia la posición relativa de los planos de ecuaciones. Resuelve y clasifica el sistema asociado.

    {π13xy+2z+4=0π215x+5y10z+2=0π312x4y+8z+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.

    Solución:

    {3xy+2z=415x+5y10z=212x4y+8z=3\left\{ \begin{aligned}-3x-y+2z & = & -4\\ 15x+5y-10z & = & -2\\ -12x-4y+8z & = & -3 \end{aligned} \right.
    Escribamos la matriz ampliada, si podemos la simplificamos:
    (312415510212483){F1F1F2F2F3F3}(312415510212483){F1F1F25F1+F2F34F1+F3}(31240002200013){F1F1F2F222F3F313}(312400010001)\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)
    Posición relativa:

    Rango(Mc)=1 y Rango(Ma)=2 \Rightarrow Los tres planos son paralelos

    image

    Resolviendo el sistema escalonado {3x+y2z=40=10=1\left\{ \begin{aligned}3x+y-2z & = & 4\\ 0 & = & -1\\ 0 & = & 1 \end{aligned} \right. se obtienen de soluciones:

    No tieneNo\ tiene

    Tipo de sistema:

    Sistema incompatible, no tiene solución

  8. Estudia la posición relativa de los planos de ecuaciones. Resuelve y clasifica el sistema asociado.

    {π14x+2yz+4=0π216x+8y4z+8=0π38x4y+2z4=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.

    Solución:

    {4x+2yz=416x+8y4z=88x4y+2z=4\left\{ \begin{aligned}-4x+2y-z & = & -4\\ -16x+8y-4z & = & -8\\ 8x-4y+2z & = & 4 \end{aligned} \right.
    Escribamos la matriz ampliada, si podemos la simplificamos:
    (4214168488424){F1F1F2F24F3F32}(421442124212){F1F1F2F2F3F3}(421442124212){F1F1F2F1+F2F3F1+F3}(421400020002){F1F1F2F22F3F32}(421400010001)\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)
    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 {4x2y+z=40=10=1\left\{ \begin{aligned}4x-2y+z & = & 4\\ 0 & = & 1\\ 0 & = & -1 \end{aligned} \right. se obtienen de soluciones:

    No tieneNo\ tiene

    Tipo de sistema:

    Sistema incompatible, no tiene solución

  9. Estudia la posición relativa de los planos de ecuaciones. Resuelve y clasifica el sistema asociado.

    {π1x+2z+3=0π23x+6z+9=0π32x+4z+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.

    Solución:

    {x+2z=33x+6z=92x+4z=6\left\{ \begin{aligned}-x+2z & = & -3\\ -3x+6z & = & -9\\ -2x+4z & = & -6 \end{aligned} \right.
    Escribamos la matriz ampliada, si podemos la simplificamos:
    (102330692046){F1F1F2F23F3F32}(102310231023){F1F1F2F2F3F3}(102310231023){F1F1F2F1+F2F3F1+F3}(102300000000)\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)
    Posición relativa:

    Rango(Mc)=1 y Rango(Ma)=1 \Rightarrow Los tres planos son el mismo

    image

    Resolviendo el sistema escalonado {x2z=30=00=0\left\{ \begin{aligned}x-2z & = & 3\\ 0 & = & 0\\ 0 & = & 0 \end{aligned} \right. se obtienen de soluciones:

    [xyz]=[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]

    Tipo de sistema:

    Sistema compatible indeterminado

Enlaces al fichero fuente y al pdf final de una posible compilación.