Pradeep PPT Maths
Pradeep PPT Maths
GAUSS-JORDAN METHOD
Presented by
Name:H.PRADEEP Roll No- 22J41A0589
Section:CSE-B Subject:LA&NM
INTRODUCTION ON GAUSS-JORDAN METHOD
Gauss-Jordan method is a numerical algorithm used for solving systems of linear equations. It involves
performing elementary row operations on an augmented matrix until it is transformed into a matrix in
reduced row echelon form (also called row reduced echelon form). This process allows us to determine
the solutions of the system of equations.
Write the system of equations in the form of an augmented matrix, where the coefficients of
the left-hand side and the constants are on the right-hand side.
Perform elementary row operations on the matrix to transform it into a matrix in reduced row echelon
form. The three elementary row operations are:
•3X + 2Y - Z = 1
•2X - 2Y + 4Z = -2
•-X + 0.5Y - Z = 0
•SOLUTION:
•[ 3 2 -1 | 1 ]
•[ 2 -2 4 | -2 ]
•[-1 0.5 -1 | 0 ]
•WE PERFORM ROW OPERATIONS TO TRANSFORM THE MATRIX INTO REDUCED ROW ECHELON FORM:
CONTINUATION OF PROBLEM
•STEP 1: SUBTRACT 2 TIMES THE FIRST ROW FROM THE SECOND ROW
•[ 3 2 -1 | 1 ]
•[ 0 -6 6 | -4 ]
•[-1 0.5 -1 | 0 ]
•[ 3 2 -1 | 1 ]
•[ 0 -6 6 | -4 ]
•[ 0 2.5 -2 | 1 ]
•[ 3 2 -1 | 1 ]
•[ 0 1 -1 | 2/3 ]
•[ 0 2.5 -2 | 1 ]
CONTINUATION OF PROBLEM
• STEP 4: SUBTRACT 2.5 TIMES THE SECOND ROW FROM THE THIRD ROW
• [ 3 2 -1 | 1 ]
• [ 0 1 -1 | 2/3 ]
• [ 0 0 0 | -1/3 ]
• NOTE THAT WE COULD ALSO HAVE STOPPED AFTER STEP 3 AND CONCLUDED THAT THE SYSTEM
HAS NO UNIQUE SOLUTION, SINCE THERE ARE INFINITELY MANY SOLUTIONS IN THIS CASE.
THANK YOU