Processing math: 100%

Systems of Equations and Gaussian Elimination | Generated by AI

Home PDF

This tutorial provides a detailed guide on systems of equations, their representation, solutions, and the Gaussian elimination method used to solve them.


1. Systems of Equations: Definition and Representation

A system of linear equations consists of multiple linear equations that share variables. A general system with n variables and m equations can be written as:

a11x1+a12x2++a1nxn=b1a21x1+a22x2++a2nxn=b2am1x1+am2x2++amnxn=bm

where:

Matrix Representation

A system of equations can be represented using matrices:

Ax=b

where:

The augmented matrix is written as:

[A|b ]

Example:
2x+3y=85xy=3

Matrix representation:
[2351][xy]=[83]

Augmented matrix:
\left[ \begin{array}{cc|c} 2 & 3 & 8   5 & -1 & 3 \end{array} \right ]


2. Gaussian Elimination Method

Gaussian elimination is a systematic method for solving systems of equations by transforming the augmented matrix into row echelon form (REF) and then solving for the variables using back-substitution.

Steps of Gaussian Elimination

  1. Convert the augmented matrix into an upper triangular (row echelon) form by using row operations:
    • Swap rows if needed.
    • Multiply a row by a nonzero constant.
    • Add or subtract a multiple of one row from another.
  2. Back-substitution to find the solution.

Example 1: Solving a System using Gaussian Elimination

Solve the system:
2x+yz=34x6y=22x+7y+2z=5

Step 1: Convert to Augmented Matrix

\left[ \begin{array}{ccc|c} 2 & 1 & -1 & 3   4 & -6 & 0 & 2   -2 & 7 & 2 & 5 \end{array} \right ]

Step 2: Make the First Pivot 1

Divide row 1 by 2: \left[ \begin{array}{ccc|c} 1 & 0.5 & -0.5 & 1.5   4 & -6 & 0 & 2   -2 & 7 & 2 & 5 \end{array} \right ]

Step 3: Eliminate First Column Below Pivot

Replace row 2 by subtracting 4 times row 1:
Replace row 3 by adding 2 times row 1:

\left[ \begin{array}{ccc|c} 1 & 0.5 & -0.5 & 1.5   0 & -8 & 2 & -4   0 & 8 & 1 & 8 \end{array} \right ]

Step 4: Make Second Pivot 1

Divide row 2 by -8:

\left[ \begin{array}{ccc|c} 1 & 0.5 & -0.5 & 1.5   0 & 1 & -0.25 & 0.5   0 & 8 & 1 & 8 \end{array} \right ]

Step 5: Eliminate Second Column Below Pivot

Replace row 3 by subtracting 8 times row 2:

\left[ \begin{array}{ccc|c} 1 & 0.5 & -0.5 & 1.5   0 & 1 & -0.25 & 0.5   0 & 0 & 3 & 4 \end{array} \right ]

Step 6: Back Substitution

Solve from bottom to top:

Solution: x=116,y=76,z=43


3. Solution Types

  1. Unique Solution: A single solution for x1,x2,.
  2. Infinite Solutions: Many solutions (system is dependent).
  3. No Solution: Inconsistent system.

4. Homogeneous vs. Non-Homogeneous Systems


Conclusion

Let me know if you need more examples or explanations! 🚀


Back 2025.03.28 Donate