Solving System of Equations using Matrices: Fresh Take

  • Write the augmented matrix for a system of equations
  • Write the system of equations from an augmented matrix
  • Perform row operations on a matrix
  • Use matrix operations and row reductions to find solutions to systems of linear equations

Augmented Matrix of a System of Equations

The Main Idea

  • Definition: An augmented matrix is a way to represent a system of linear equations in matrix form.
  • Structure:
    • Coefficients of variables form the main part of the matrix
    • Constants are separated by a vertical line
    • Each row represents one equation
    • Each column (before the line) represents coefficients of one variable
  • Coefficient Matrix: The matrix containing only the coefficients of variables (without the constants)
  • Importance of Standard Form: Equations should be in the form [latex]ax + by + cz = d[/latex] for proper alignment in the matrix
  • Zero Coefficients: When a variable is missing from an equation, its coefficient is represented as [latex]0[/latex] in the matrix
Write the augmented matrix of the given system of equations.

[latex]\begin{array}{l}4x - 3y=11\\ 3x+2y=4\end{array}[/latex]

Write the system of equations from the augmented matrix.

[latex]\left[\begin{array}{ccc|c}\hfill 1& \hfill -1& \hfill 1& \hfill 5\\ \hfill 2& \hfill -1& \hfill 3& \hfill 1\\ \hfill 0& \hfill 1& \hfill 1& \hfill -9\\ \end{array}\right][/latex]

Performing Row Operations on a Matrix

The Main Idea

  • Row Operations: Transformations applied to matrices that preserve the solution set of the corresponding system of equations.
  • Types of Row Operations:
    • Interchanging any two rows
    • Multiplying a row by a non-zero constant
    • Adding a multiple of one row to another row
  • Row-Echelon Form: A matrix form where:
    • The first non-zero element in each row (leading entry) is 1
    • Each leading 1 is to the right of the leading 1 in the row above
    • Rows with all zero elements are at the bottom
  • Gaussian Elimination: A method to transform a matrix into row-echelon form using row operations.

Process of Gaussian Elimination

  1. Start with the leftmost column
  2. Find a non-zero entry in this column (if all zero, move to next column)
  3. Move the row with this non-zero entry to the top (if not already there)
  4. Make this entry a 1 by dividing the row by the entry’s value
  5. Use this 1 to eliminate all other entries in this column
  6. Repeat steps 1-5 for the next column, working only on rows below the current row
Write the system of equations in row-echelon form.[latex]\begin{array}{l}\text{ }x - 2y+3z=9\hfill \\ \text{ }-x+3y=-4\hfill \\ 2x - 5y+5z=17\hfill \end{array}[/latex]

Solve the given system by Gaussian elimination.

[latex]\begin{array}{l}4x+3y=11\hfill \\ \text{ }\text{}\text{}x - 3y=-1\hfill \end{array}[/latex]

Solve the system using Gaussian Elimination.

[latex]\begin{array}{c}x+4y-z=4\\ 2x+5y+8z=15\\ x+3y - 3z=1\end{array}[/latex]

You can view the transcript for “Ex 2: Solve a System of Two Equations with Using an Augmented Matrix (Row Echelon Form)” here (opens in new window).

You can view the transcript for “Ex 2: Solve a System of Three Equations with Using an Augmented Matrix (REF – no solution))” here (opens in new window).