Skip to main content
Mathematics LibreTexts

7.2: Introduction to Gauss Jordan Elimination

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

    The following elementary row operations

    1. Interchange two rows of a matrix
    2. Multiply the elements of a row by a nonzero constant
    3. Add a multiple of the elements of one row to the corresponding elements of another
    from IPython.display import YouTubeVideo
    YouTubeVideo("iGmtmF_hm2g",width=640,height=360, cc_load_policy=True)

    Consider the element \( a_{2,1} \) in the following \( A \) Matrix.

    \[ A = \left[
    \begin{matrix}
    1 & 1 \\
    20 & 25
    \end{matrix}
    \, \middle\vert \,
    \begin{matrix}
    30 \\
    690
    \end{matrix}
    \right] \nonumber \]

    Question

    Describe an elementary row operation that could be used to make element \( a_{(2,1)} \) zero?

    Question

    What is the new matrix given the above row operation.

    Modify the contents of this cell and put your answer to the above question here.

    \[ A = \left[
    \begin{matrix}
    1 & 1 \\
    0 & ??
    \end{matrix}
    \, \middle\vert \,
    \begin{matrix}
    30 \\
    ??
    \end{matrix}
    \right] \nonumber \]

    The following function is a basic implementation of the Gauss-Jorden algorithm to an (m,m+1) augmented matrix:


    This page titled 7.2: Introduction to Gauss Jordan Elimination 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.