Saltar al contenido principal
LibreTexts Español

11.5: Resolver muchos sistemas (al mismo tiempo)

  • Page ID
    115545
  • \( \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}}\)

    from urllib.request import urlretrieve
    urlretrieve('https://raw.githubusercontent.com/colbrydi/jupytercheck/master/answercheck.py', 
                'answercheck.py');
    from IPython.display import YouTubeVideo
    YouTubeVideo("k5fdGS5b4OU",width=640,height=360, cc_load_policy=True)

    Considera el ejemplo de Giselle desde arriba. Sus ganancias no cambian (es decir, gana 20 dólares por hora como carpintero y 25 dólares por hora como herrero). No obstante, ahora ha trabajado dos semanas más. En la segunda semana, trabajó por un total de 35 horas y ganó 750 dólares. En la tercera semana, trabajó por un total de 30 horas y ganó 650 dólares. ¿Cuánto trabajó como carpintera y herrero para cada una de esas semanas? En otras palabras:

    Semana 1:

    \( c + b = 30 \)

    \( 20c + 25b = 690 \)

    Semana 2:

    \( c + b = 35 \)

    \( 20c + 25b = 750 \)

    Semana 3:

    \( c + b = 30 \)

    \( 20c + 25b = 650 \)

    Hacer esto

    Escribe una matriz\(2 \times 5\) aumentada que represente las 6 ecuaciones anteriores. Nombra tu Matriz\(G\) para verificar tu respuesta usando la función checkanswer a continuación.

    #Put your answer to the above quation here
    from answercheck import checkanswer
    
    checkanswer.matrix(G,'a1e01de142199370be70131849fbf108');

    This page titled 11.5: Resolver muchos sistemas (al mismo tiempo) 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.