Saltar al contenido principal
LibreTexts Español

40.2: Sistemas Bajo Definidos

  • Page ID
    115428
  • \( \newcommand{\vecs}[1]{\overset { \scriptstyle \rightharpoonup} {\mathbf{#1}} } \) \( \newcommand{\vecd}[1]{\overset{-\!-\!\rightharpoonup}{\vphantom{a}\smash {#1}}} \)\(\newcommand{\id}{\mathrm{id}}\) \( \newcommand{\Span}{\mathrm{span}}\) \( \newcommand{\kernel}{\mathrm{null}\,}\) \( \newcommand{\range}{\mathrm{range}\,}\) \( \newcommand{\RealPart}{\mathrm{Re}}\) \( \newcommand{\ImaginaryPart}{\mathrm{Im}}\) \( \newcommand{\Argument}{\mathrm{Arg}}\) \( \newcommand{\norm}[1]{\| #1 \|}\) \( \newcommand{\inner}[2]{\langle #1, #2 \rangle}\) \( \newcommand{\Span}{\mathrm{span}}\) \(\newcommand{\id}{\mathrm{id}}\) \( \newcommand{\Span}{\mathrm{span}}\) \( \newcommand{\kernel}{\mathrm{null}\,}\) \( \newcommand{\range}{\mathrm{range}\,}\) \( \newcommand{\RealPart}{\mathrm{Re}}\) \( \newcommand{\ImaginaryPart}{\mathrm{Im}}\) \( \newcommand{\Argument}{\mathrm{Arg}}\) \( \newcommand{\norm}[1]{\| #1 \|}\) \( \newcommand{\inner}[2]{\langle #1, #2 \rangle}\) \( \newcommand{\Span}{\mathrm{span}}\)\(\newcommand{\AA}{\unicode[.8,0]{x212B}}\)

    %matplotlib inline
    import numpy as np
    import matplotlib.pyplot as plt
    import sympy as sym
    sym.init_printing()

    Un sistema subdefinido es uno que no es invertible y el número de incógnitas es mayor que el número de conocidos. Estos sistemas suelen tener infinitos números de posibles soluciones y resolverlas implica encontrar un conjunto de ecuaciones simplificadas que representen todas las soluciones.

    A menudo, la forma más sencilla de resolver un sistema de ecuaciones subdefinido es extraer la solución directamente de la forma de escalón de fila reducida.

    Pregunta

    Cuál es la forma de escalón de fila reducida de la matriz\(A= \left[\begin{matrix} 1 & 3 \\ 2 & 6 \end{matrix}\right]\).

    ##ADD example of solving an underdefined system.
    Pregunta

    ¿Cuáles son las soluciones a los sistemas de ecuaciones anteriores si\(b= \left[\begin{matrix} 10\\ 3 \end{matrix}\right]\)?

    #put your answer to the above quesiton here.

    This page titled 40.2: Sistemas Bajo Definidos is shared under a CC BY-NC 4.0 license and was authored, remixed, and/or curated by Dirk Colbry via source content that was edited to the style and standards of the LibreTexts platform; a detailed edit history is available upon request.