Saltar al contenido principal
LibreTexts Español

44.5: Matemáticas LaTeX

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

    Enlace directo al video de Youtube.

    from IPython.display import YouTubeVideo
    YouTubeVideo("qgSa7n_zQ3A",width=640,height=320, cc_load_policy=True)

    Dado que este es un curso de “Álgebra Matrix”, necesitamos aprender a hacer 'matrices' en LaTeX. Haga doble clic en la siguiente celda para ver el código LaTeX para construir una matriz:

    Notación básica de matriz:

    \ [\ begin {split}
    \ left [
    \ begin {matrix}
    1 & 0 & 4\\
    0 & 2 & -2\\
    0 & 1 & 2
    \ end {matrix}
    \ right]
    \ end {split}\ nonumber\]

    Notación matricial aumentada:

    \ [\ begin {split}
    \ left [
    \ begin {matrix}
    1 & 0 & 4\\
    0 & 2 & -2\\
    0 & 1 & 2
    \ end {matrix}
    \,\ middle\ vert\,
    \ begin {matrix}
    -10\\ 3\ \ 1
    \ end {matriz}
    \ derecha]
    \ end {split}\ nonumber\]

    Hacer esto

    Usando LaTeX, cree una matriz aumentada para el siguiente sistema de ecuaciones:

    \[4x + 2y -7z = 3 \nonumber \]

    \[12x + z = 10 \nonumber \]

    \[-3x -y + 2z = 30 \nonumber \]

    Pregunta

    En LaTeX, ¿qué caracteres especiales se utilizan para separar elementos dentro de una fila?


    This page titled 44.5: Matemáticas LaTeX 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.