SlideShare a Scribd company logo
Gauss-Jordan Elimination Method
The following row operations on the augmented matrix of a system produce the augmented matrix
of an equivalent system, i.e., a system with the same solution as the original one.
• Interchange any two rows.
• Multiply each element of a row by a nonzero constant.
• Replace a row by the sum of itself and a constant multiple of another row of the matrix.
For these row operations, we will use the following notations.
• Ri ↔ Rj means: Interchange row i and row j.
• αRi means: Replace row i with α times row i.
• Ri + αRj means: Replace row i with the sum of row i and α times row j.
The Gauss-Jordan elimination method to solve a system of linear equations is described in the
following steps.
1. Write the augmented matrix of the system.
2. Use row operations to transform the augmented matrix in the form described below, which is
called the reduced row echelon form (RREF).
(a) The rows (if any) consisting entirely of zeros are grouped together at the bottom of the
matrix.
(b) In each row that does not consist entirely of zeros, the leftmost nonzero element is a 1
(called a leading 1 or a pivot).
(c) Each column that contains a leading 1 has zeros in all other entries.
(d) The leading 1 in any row is to the left of any leading 1’s in the rows below it.
3. Stop process in step 2 if you obtain a row whose elements are all zeros except the last one on
the right. In that case, the system is inconsistent and has no solutions. Otherwise, finish step
2 and read the solutions of the system from the final matrix.
Note: When doing step 2, row operations can be performed in any order. Try to choose row opera-
tions so that as few fractions as possible are carried through the computation. This makes calculation
easier when working by hand.
1
Example 1. Solve the following system by using the Gauss-Jordan elimination method.



x + y + z = 5
2x + 3y + 5z = 8
4x + 5z = 2
Solution: The augmented matrix of the system is the following.


1 1 1 5
2 3 5 8
4 0 5 2


We will now perform row operations until we obtain a matrix in reduced row echelon form.


1 1 1 5
2 3 5 8
4 0 5 2

 R2−2R1
−−−−−→


1 1 1 5
0 1 3 −2
4 0 5 2


R3−4R1
−−−−−→


1 1 1 5
0 1 3 −2
0 −4 1 −18


R3+4R2
−−−−−→


1 1 1 5
0 1 3 −2
0 0 13 −26


1
13
R3
−−−→


1 1 1 5
0 1 3 −2
0 0 1 −2


R2−3R3
−−−−−→


1 1 1 5
0 1 0 4
0 0 1 −2


R1−R3
−−−−→


1 1 0 7
0 1 0 4
0 0 1 −2


R1−R2
−−−−→


1 0 0 3
0 1 0 4
0 0 1 −2


From this final matrix, we can read the solution of the system. It is
x = 3, y = 4, z = −2.
2
Example 2. Solve the following system by using the Gauss-Jordan elimination method.



x + 2y − 3z = 2
6x + 3y − 9z = 6
7x + 14y − 21z = 13
Solution: The augmented matrix of the system is the following.


1 2 −3 2
6 3 −9 6
7 14 −21 13


Let’s now perform row operations on this augmented matrix.


1 2 −3 2
6 3 −9 6
7 14 −21 13

 R2−6R1
−−−−−→


1 2 −3 2
0 −9 9 −6
7 14 −21 13


R3−7R1
−−−−−→


1 2 −3 2
0 −9 9 −6
0 0 0 −1


We obtain a row whose elements are all zeros except the last one on the right. Therefore, we conclude
that the system of equations is inconsistent, i.e., it has no solutions.
Example 3. Solve the following system by using the Gauss-Jordan elimination method.



4y + z = 2
2x + 6y − 2z = 3
4x + 8y − 5z = 4
Solution: The augmented matrix of the system is the following.


0 4 1 2
2 6 −2 3
4 8 −5 4


3
We will now perform row operations until we obtain a matrix in reduced row echelon form.


0 4 1 2
2 6 −2 3
4 8 −5 4

 R1↔R2
−−−−−→


2 6 −2 3
0 4 1 2
4 8 −5 4


R3−2R1
−−−−−→


2 6 −2 3
0 4 1 2
0 −4 −1 −2


R3+R2
−−−−→


2 6 −2 3
0 4 1 2
0 0 0 0


1
4
R2
−−−→


2 6 −2 3
0 1 1/4 1/2
0 0 0 0


R1−6R2
−−−−−→


2 0 −7/2 0
0 1 1/4 1/2
0 0 0 0


1
2
R1
−−−→


1 0 −7/4 0
0 1 1/4 1/2
0 0 0 0


This last matrix is in reduced row echelon form so we can stop. It corresponds to the augmented
matrix of the following system.
x − 7
4 z = 0
y + 1
4 z = 1
2
We can express the solutions of this system as
x = 7
4 z, y = 1
2 − 1
4 z.
Since there is no specific value for z, it can be chosen arbitrarily. This means that there are infinitely
many solutions for this system. We can represent all the solutions by using a parameter t as follows.
x = 7
4 t, y = 1
2 − 1
4 t, z = t
Any value of the parameter t gives us a solution of the system. For example,
t = 4 gives the solution (x, y, z) = (7, −1
2 , 4)
t = −2 gives the solution (x, y, z) = (−7
2 , 1, −2).
4
Example 4. Solve the following system by using the Gauss-Jordan elimination method.



A + B + 2C = 1
2A − B + D = −2
A − B − C − 2D = 4
2A − B + 2C − D = 0
Solution: We will perform row operations on the augmented matrix of the system until we obtain a
matrix in reduced row echelon form.




1 1 2 0 1
2 −1 0 1 −2
1 −1 −1 −2 4
2 −1 2 −1 0




R2−2R1
−−−−−→




1 1 2 0 1
0 −3 −4 1 −4
1 −1 −1 −2 4
2 −1 2 −1 0




R3−R1
−−−−→




1 1 2 0 1
0 −3 −4 1 −4
0 −2 −3 −2 3
2 −1 2 −1 0




R4−2R1
−−−−−→




1 1 2 0 1
0 −3 −4 1 −4
0 −2 −3 −2 3
0 −3 −2 −1 −2




R4−R2
−−−−→




1 1 2 0 1
0 −3 −4 1 −4
0 −2 −3 −2 3
0 0 2 −2 2




R2↔R3
−−−−−→




1 1 2 0 1
0 −2 −3 −2 3
0 −3 −4 1 −4
0 0 2 −2 2




− 1
2
R2
−−−−→




1 1 2 0 1
0 1 3/2 1 −3/2
0 −3 −4 1 −4
0 0 2 −2 2




R3+3R2
−−−−−→




1 1 2 0 1
0 1 3/2 1 −3/2
0 0 1/2 4 −17/2
0 0 2 −2 2




2R3
−−→




1 1 2 0 1
0 1 3/2 1 −3/2
0 0 1 8 −17
0 0 2 −2 2




R4−2R3
−−−−−→




1 1 2 0 1
0 1 3/2 1 −3/2
0 0 1 8 −17
0 0 0 −18 36




− 1
18
R4
−−−−→




1 1 2 0 1
0 1 3/2 1 −3/2
0 0 1 8 −17
0 0 0 1 −2




R3−8R4
−−−−−→




1 1 2 0 1
0 1 3/2 1 −3/2
0 0 1 0 −1
0 0 0 1 −2




R2−R4
−−−−→




1 1 2 0 1
0 1 3/2 0 1/2
0 0 1 0 −1
0 0 0 1 −2




R2− 3
2
R3
−−−−−→




1 1 2 0 1
0 1 0 0 2
0 0 1 0 −1
0 0 0 1 −2




R1−2R3, R1−R2
−−−−−−−−−−−→




1 0 0 0 1
0 1 0 0 2
0 0 1 0 −1
0 0 0 1 −2




From this final matrix, we can read the solution of the system. It is
A = 1, B = 2, C = −1, D = −2.
5

More Related Content

What's hot

Gauss elimination & Gauss Jordan method
Gauss elimination & Gauss Jordan methodGauss elimination & Gauss Jordan method
Gauss elimination & Gauss Jordan method
Naimesh Bhavsar
 
Systems of equations and matricies
Systems of equations and matriciesSystems of equations and matricies
Systems of equations and matricies
ST ZULAIHA NURHAJARURAHMAH
 
Solution of System of Linear Equations
Solution of System of Linear EquationsSolution of System of Linear Equations
Solution of System of Linear Equations
mofassair
 
Gauss jordan and Guass elimination method
Gauss jordan and Guass elimination methodGauss jordan and Guass elimination method
Gauss jordan and Guass elimination method
Meet Nayak
 
algebra
algebraalgebra
algebra
Asyraf Ghani
 
Linear algebra03fallleturenotes01
Linear algebra03fallleturenotes01Linear algebra03fallleturenotes01
Linear algebra03fallleturenotes01
ST ZULAIHA NURHAJARURAHMAH
 
Functions
FunctionsFunctions
Functions
Maurice Verreck
 
Gaussian Elimination
Gaussian EliminationGaussian Elimination
Gaussian Elimination
ZunAib Ali
 
linear equation and gaussian elimination
linear equation and gaussian eliminationlinear equation and gaussian elimination
linear equation and gaussian elimination
Aju Thadikulangara
 
Uniform Order Legendre Approach for Continuous Hybrid Block Methods for the S...
Uniform Order Legendre Approach for Continuous Hybrid Block Methods for the S...Uniform Order Legendre Approach for Continuous Hybrid Block Methods for the S...
Uniform Order Legendre Approach for Continuous Hybrid Block Methods for the S...
IOSR Journals
 
Lu decomposition
Lu decompositionLu decomposition
Lu decomposition
gilandio
 
Relaxation method
Relaxation methodRelaxation method
Relaxation method
Parinda Rajapaksha
 
Gauss Jordan Method
Gauss Jordan MethodGauss Jordan Method
Gauss Jordan Method
ZunAib Ali
 
Gaussian elimination method & homogeneous linear equation
Gaussian elimination method & homogeneous linear equationGaussian elimination method & homogeneous linear equation
Gaussian elimination method & homogeneous linear equation
Student
 
Gauss-Jordan Theory
Gauss-Jordan TheoryGauss-Jordan Theory
Gauss-Jordan Theory
HernanFula
 
Gauss elimination method
Gauss elimination methodGauss elimination method
Gauss elimination method
gilandio
 
Lecture 11 systems of nonlinear equations
Lecture 11 systems of nonlinear equationsLecture 11 systems of nonlinear equations
Lecture 11 systems of nonlinear equations
Hazel Joy Chong
 
Gauss elimination
Gauss eliminationGauss elimination
Gauss elimination
luiscarlosmolina
 
Jacobi method
Jacobi methodJacobi method
Jacobi method
Grishma Maravia
 
Es272 ch4a
Es272 ch4aEs272 ch4a

What's hot (20)

Gauss elimination & Gauss Jordan method
Gauss elimination & Gauss Jordan methodGauss elimination & Gauss Jordan method
Gauss elimination & Gauss Jordan method
 
Systems of equations and matricies
Systems of equations and matriciesSystems of equations and matricies
Systems of equations and matricies
 
Solution of System of Linear Equations
Solution of System of Linear EquationsSolution of System of Linear Equations
Solution of System of Linear Equations
 
Gauss jordan and Guass elimination method
Gauss jordan and Guass elimination methodGauss jordan and Guass elimination method
Gauss jordan and Guass elimination method
 
algebra
algebraalgebra
algebra
 
Linear algebra03fallleturenotes01
Linear algebra03fallleturenotes01Linear algebra03fallleturenotes01
Linear algebra03fallleturenotes01
 
Functions
FunctionsFunctions
Functions
 
Gaussian Elimination
Gaussian EliminationGaussian Elimination
Gaussian Elimination
 
linear equation and gaussian elimination
linear equation and gaussian eliminationlinear equation and gaussian elimination
linear equation and gaussian elimination
 
Uniform Order Legendre Approach for Continuous Hybrid Block Methods for the S...
Uniform Order Legendre Approach for Continuous Hybrid Block Methods for the S...Uniform Order Legendre Approach for Continuous Hybrid Block Methods for the S...
Uniform Order Legendre Approach for Continuous Hybrid Block Methods for the S...
 
Lu decomposition
Lu decompositionLu decomposition
Lu decomposition
 
Relaxation method
Relaxation methodRelaxation method
Relaxation method
 
Gauss Jordan Method
Gauss Jordan MethodGauss Jordan Method
Gauss Jordan Method
 
Gaussian elimination method & homogeneous linear equation
Gaussian elimination method & homogeneous linear equationGaussian elimination method & homogeneous linear equation
Gaussian elimination method & homogeneous linear equation
 
Gauss-Jordan Theory
Gauss-Jordan TheoryGauss-Jordan Theory
Gauss-Jordan Theory
 
Gauss elimination method
Gauss elimination methodGauss elimination method
Gauss elimination method
 
Lecture 11 systems of nonlinear equations
Lecture 11 systems of nonlinear equationsLecture 11 systems of nonlinear equations
Lecture 11 systems of nonlinear equations
 
Gauss elimination
Gauss eliminationGauss elimination
Gauss elimination
 
Jacobi method
Jacobi methodJacobi method
Jacobi method
 
Es272 ch4a
Es272 ch4aEs272 ch4a
Es272 ch4a
 

Viewers also liked

Gauss jordan elimination through pivoting
Gauss jordan elimination through pivotingGauss jordan elimination through pivoting
Gauss jordan elimination through pivoting
uis
 
Row Reducing
Row ReducingRow Reducing
Row Reducing
nicholsm
 
Math Geophysics-system of linear algebraic equations
Math Geophysics-system of linear algebraic equationsMath Geophysics-system of linear algebraic equations
Math Geophysics-system of linear algebraic equations
Amin khalil
 
Métodos directos para la solución de sistemas de ecuaciones lineales
Métodos directos para la solución de sistemas de ecuaciones linealesMétodos directos para la solución de sistemas de ecuaciones lineales
Métodos directos para la solución de sistemas de ecuaciones lineales
Mileacre
 
Echelon forms
Echelon formsEchelon forms
Echelon forms
kishor pokar
 
Math 1300: Section 4- 3 Gauss-Jordan Elimination
Math 1300: Section 4- 3 Gauss-Jordan EliminationMath 1300: Section 4- 3 Gauss-Jordan Elimination
Math 1300: Section 4- 3 Gauss-Jordan Elimination
Jason Aubrey
 
System of linear equations
System of linear equationsSystem of linear equations
System of linear equations
Diler4
 
Gaussian Elimination Method
Gaussian Elimination MethodGaussian Elimination Method
Gaussian Elimination Method
Andi Firdaus
 

Viewers also liked (8)

Gauss jordan elimination through pivoting
Gauss jordan elimination through pivotingGauss jordan elimination through pivoting
Gauss jordan elimination through pivoting
 
Row Reducing
Row ReducingRow Reducing
Row Reducing
 
Math Geophysics-system of linear algebraic equations
Math Geophysics-system of linear algebraic equationsMath Geophysics-system of linear algebraic equations
Math Geophysics-system of linear algebraic equations
 
Métodos directos para la solución de sistemas de ecuaciones lineales
Métodos directos para la solución de sistemas de ecuaciones linealesMétodos directos para la solución de sistemas de ecuaciones lineales
Métodos directos para la solución de sistemas de ecuaciones lineales
 
Echelon forms
Echelon formsEchelon forms
Echelon forms
 
Math 1300: Section 4- 3 Gauss-Jordan Elimination
Math 1300: Section 4- 3 Gauss-Jordan EliminationMath 1300: Section 4- 3 Gauss-Jordan Elimination
Math 1300: Section 4- 3 Gauss-Jordan Elimination
 
System of linear equations
System of linear equationsSystem of linear equations
System of linear equations
 
Gaussian Elimination Method
Gaussian Elimination MethodGaussian Elimination Method
Gaussian Elimination Method
 

Similar to demo attachment

Gauss Jorden and Gauss Elimination method.pptx
Gauss Jorden and Gauss Elimination method.pptxGauss Jorden and Gauss Elimination method.pptx
Gauss Jorden and Gauss Elimination method.pptx
AHSANMEHBOOB12
 
3Rd-Edition-Linear-Algebra-And-Its-Applications-Solutions-Manual.Pdf
3Rd-Edition-Linear-Algebra-And-Its-Applications-Solutions-Manual.Pdf3Rd-Edition-Linear-Algebra-And-Its-Applications-Solutions-Manual.Pdf
3Rd-Edition-Linear-Algebra-And-Its-Applications-Solutions-Manual.Pdf
Karin Faust
 
3rd-edition-linear-algebra-and-its-applications-solutions-manual.pdf
3rd-edition-linear-algebra-and-its-applications-solutions-manual.pdf3rd-edition-linear-algebra-and-its-applications-solutions-manual.pdf
3rd-edition-linear-algebra-and-its-applications-solutions-manual.pdf
Jennifer Strong
 
LINEAR EQUATION.pptx
LINEAR EQUATION.pptxLINEAR EQUATION.pptx
LINEAR EQUATION.pptx
SarabanTahora
 
Systems of linear equations; matrices
Systems of linear equations; matricesSystems of linear equations; matrices
Systems of linear equations; matrices
ST ZULAIHA NURHAJARURAHMAH
 
0908 ch 9 day 8
0908 ch 9 day 80908 ch 9 day 8
0908 ch 9 day 8
festivalelmo
 
chapter7_Sec1.ppt
chapter7_Sec1.pptchapter7_Sec1.ppt
chapter7_Sec1.ppt
vinnisart
 
BSC_COMPUTER _SCIENCE_UNIT-4_DISCRETE MATHEMATICS
BSC_COMPUTER _SCIENCE_UNIT-4_DISCRETE MATHEMATICSBSC_COMPUTER _SCIENCE_UNIT-4_DISCRETE MATHEMATICS
BSC_COMPUTER _SCIENCE_UNIT-4_DISCRETE MATHEMATICS
Rai University
 
Directs Methods
Directs MethodsDirects Methods
Directs Methods
UIS
 
9.3 Solving Systems With Gaussian Elimination
9.3 Solving Systems With Gaussian Elimination9.3 Solving Systems With Gaussian Elimination
9.3 Solving Systems With Gaussian Elimination
smiller5
 
matrices and algbra
matrices and algbramatrices and algbra
matrices and algbra
gandhinagar
 
MCA_UNIT-2_Computer Oriented Numerical Statistical Methods
MCA_UNIT-2_Computer Oriented Numerical Statistical MethodsMCA_UNIT-2_Computer Oriented Numerical Statistical Methods
MCA_UNIT-2_Computer Oriented Numerical Statistical Methods
Rai University
 
Systems of Linear Equations
Systems of Linear EquationsSystems of Linear Equations
Systems of Linear Equations
alrosiemae
 
Linear Algebra(1).pptx
Linear Algebra(1).pptxLinear Algebra(1).pptx
Linear Algebra(1).pptx
DenverGMagtibay
 
7.6 Solving Systems with Gaussian Elimination
7.6 Solving Systems with Gaussian Elimination7.6 Solving Systems with Gaussian Elimination
7.6 Solving Systems with Gaussian Elimination
smiller5
 
Chapter 3 solving systems of linear equations
Chapter 3 solving systems of linear equationsChapter 3 solving systems of linear equations
Chapter 3 solving systems of linear equations
ssuser53ee01
 
Solving Linear systems of Equations-Gauss elimination method
Solving Linear systems of Equations-Gauss elimination methodSolving Linear systems of Equations-Gauss elimination method
Solving Linear systems of Equations-Gauss elimination method
DrHinaMunirDutt
 
Math lecture 6 (System of Linear Equations)
Math lecture 6 (System of Linear Equations)Math lecture 6 (System of Linear Equations)
Math lecture 6 (System of Linear Equations)
Osama Zahid
 
BSC_COMPUTER _SCIENCE_UNIT-5_DISCRETE MATHEMATICS
BSC_COMPUTER _SCIENCE_UNIT-5_DISCRETE MATHEMATICSBSC_COMPUTER _SCIENCE_UNIT-5_DISCRETE MATHEMATICS
BSC_COMPUTER _SCIENCE_UNIT-5_DISCRETE MATHEMATICS
Rai University
 
BSC_COMPUTER _SCIENCE_UNIT-5_DISCRETE MATHEMATICS
BSC_COMPUTER _SCIENCE_UNIT-5_DISCRETE MATHEMATICSBSC_COMPUTER _SCIENCE_UNIT-5_DISCRETE MATHEMATICS
BSC_COMPUTER _SCIENCE_UNIT-5_DISCRETE MATHEMATICS
Rai University
 

Similar to demo attachment (20)

Gauss Jorden and Gauss Elimination method.pptx
Gauss Jorden and Gauss Elimination method.pptxGauss Jorden and Gauss Elimination method.pptx
Gauss Jorden and Gauss Elimination method.pptx
 
3Rd-Edition-Linear-Algebra-And-Its-Applications-Solutions-Manual.Pdf
3Rd-Edition-Linear-Algebra-And-Its-Applications-Solutions-Manual.Pdf3Rd-Edition-Linear-Algebra-And-Its-Applications-Solutions-Manual.Pdf
3Rd-Edition-Linear-Algebra-And-Its-Applications-Solutions-Manual.Pdf
 
3rd-edition-linear-algebra-and-its-applications-solutions-manual.pdf
3rd-edition-linear-algebra-and-its-applications-solutions-manual.pdf3rd-edition-linear-algebra-and-its-applications-solutions-manual.pdf
3rd-edition-linear-algebra-and-its-applications-solutions-manual.pdf
 
LINEAR EQUATION.pptx
LINEAR EQUATION.pptxLINEAR EQUATION.pptx
LINEAR EQUATION.pptx
 
Systems of linear equations; matrices
Systems of linear equations; matricesSystems of linear equations; matrices
Systems of linear equations; matrices
 
0908 ch 9 day 8
0908 ch 9 day 80908 ch 9 day 8
0908 ch 9 day 8
 
chapter7_Sec1.ppt
chapter7_Sec1.pptchapter7_Sec1.ppt
chapter7_Sec1.ppt
 
BSC_COMPUTER _SCIENCE_UNIT-4_DISCRETE MATHEMATICS
BSC_COMPUTER _SCIENCE_UNIT-4_DISCRETE MATHEMATICSBSC_COMPUTER _SCIENCE_UNIT-4_DISCRETE MATHEMATICS
BSC_COMPUTER _SCIENCE_UNIT-4_DISCRETE MATHEMATICS
 
Directs Methods
Directs MethodsDirects Methods
Directs Methods
 
9.3 Solving Systems With Gaussian Elimination
9.3 Solving Systems With Gaussian Elimination9.3 Solving Systems With Gaussian Elimination
9.3 Solving Systems With Gaussian Elimination
 
matrices and algbra
matrices and algbramatrices and algbra
matrices and algbra
 
MCA_UNIT-2_Computer Oriented Numerical Statistical Methods
MCA_UNIT-2_Computer Oriented Numerical Statistical MethodsMCA_UNIT-2_Computer Oriented Numerical Statistical Methods
MCA_UNIT-2_Computer Oriented Numerical Statistical Methods
 
Systems of Linear Equations
Systems of Linear EquationsSystems of Linear Equations
Systems of Linear Equations
 
Linear Algebra(1).pptx
Linear Algebra(1).pptxLinear Algebra(1).pptx
Linear Algebra(1).pptx
 
7.6 Solving Systems with Gaussian Elimination
7.6 Solving Systems with Gaussian Elimination7.6 Solving Systems with Gaussian Elimination
7.6 Solving Systems with Gaussian Elimination
 
Chapter 3 solving systems of linear equations
Chapter 3 solving systems of linear equationsChapter 3 solving systems of linear equations
Chapter 3 solving systems of linear equations
 
Solving Linear systems of Equations-Gauss elimination method
Solving Linear systems of Equations-Gauss elimination methodSolving Linear systems of Equations-Gauss elimination method
Solving Linear systems of Equations-Gauss elimination method
 
Math lecture 6 (System of Linear Equations)
Math lecture 6 (System of Linear Equations)Math lecture 6 (System of Linear Equations)
Math lecture 6 (System of Linear Equations)
 
BSC_COMPUTER _SCIENCE_UNIT-5_DISCRETE MATHEMATICS
BSC_COMPUTER _SCIENCE_UNIT-5_DISCRETE MATHEMATICSBSC_COMPUTER _SCIENCE_UNIT-5_DISCRETE MATHEMATICS
BSC_COMPUTER _SCIENCE_UNIT-5_DISCRETE MATHEMATICS
 
BSC_COMPUTER _SCIENCE_UNIT-5_DISCRETE MATHEMATICS
BSC_COMPUTER _SCIENCE_UNIT-5_DISCRETE MATHEMATICSBSC_COMPUTER _SCIENCE_UNIT-5_DISCRETE MATHEMATICS
BSC_COMPUTER _SCIENCE_UNIT-5_DISCRETE MATHEMATICS
 

Recently uploaded

Unlimited Short Call Girls Delhi ✅ 9711199012 FULL CASH PAYMENT
Unlimited Short Call Girls Delhi ✅ 9711199012 FULL CASH PAYMENTUnlimited Short Call Girls Delhi ✅ 9711199012 FULL CASH PAYMENT
Unlimited Short Call Girls Delhi ✅ 9711199012 FULL CASH PAYMENT
siqbal9337
 
Top-Quality AC Service for Mini Cooper Optimal Cooling Performance
Top-Quality AC Service for Mini Cooper Optimal Cooling PerformanceTop-Quality AC Service for Mini Cooper Optimal Cooling Performance
Top-Quality AC Service for Mini Cooper Optimal Cooling Performance
Motor Haus
 
Call Girls in Chennai (Tamil Nadu ) call me [🔝7737669865🔝] Escort In Chennai ...
Call Girls in Chennai (Tamil Nadu ) call me [🔝7737669865🔝] Escort In Chennai ...Call Girls in Chennai (Tamil Nadu ) call me [🔝7737669865🔝] Escort In Chennai ...
Call Girls in Chennai (Tamil Nadu ) call me [🔝7737669865🔝] Escort In Chennai ...
deepakrana121234
 
Call Girls In Visakhapatnam 7339748667 At Your Nearest Place In Private Apart...
Call Girls In Visakhapatnam 7339748667 At Your Nearest Place In Private Apart...Call Girls In Visakhapatnam 7339748667 At Your Nearest Place In Private Apart...
Call Girls In Visakhapatnam 7339748667 At Your Nearest Place In Private Apart...
sunha sharma
 
Mahindra-Mahindra-Annual-report-2018-19.pdf
Mahindra-Mahindra-Annual-report-2018-19.pdfMahindra-Mahindra-Annual-report-2018-19.pdf
Mahindra-Mahindra-Annual-report-2018-19.pdf
ssuser470fe9
 
一比一原版悉尼大学毕业证(USYD毕业证书)学历如何办理
一比一原版悉尼大学毕业证(USYD毕业证书)学历如何办理一比一原版悉尼大学毕业证(USYD毕业证书)学历如何办理
一比一原版悉尼大学毕业证(USYD毕业证书)学历如何办理
cenaws
 
Call Girls Pune ☎️ +91-7426014248 😍 Pune Call Girl Beauty Girls Pune Escorts
Call Girls Pune ☎️ +91-7426014248 😍 Pune Call Girl Beauty Girls Pune EscortsCall Girls Pune ☎️ +91-7426014248 😍 Pune Call Girl Beauty Girls Pune Escorts
Call Girls Pune ☎️ +91-7426014248 😍 Pune Call Girl Beauty Girls Pune Escorts
anilsa9823
 
hays salary report for 2024: check out your salaries here
hays salary report for 2024: check out your salaries herehays salary report for 2024: check out your salaries here
hays salary report for 2024: check out your salaries here
johnconnor370852
 
Khushmeet Khushi Resume of manufacturing industry
Khushmeet Khushi Resume of manufacturing industry Khushmeet Khushi Resume of manufacturing industry
Khushmeet Khushi Resume of manufacturing industry
Khushmeet Khushi
 
Unlimited Short Call Girls Mumbai ✅ 9930496246 FULL CASH PAYMENT
Unlimited Short Call Girls Mumbai ✅ 9930496246 FULL CASH PAYMENTUnlimited Short Call Girls Mumbai ✅ 9930496246 FULL CASH PAYMENT
Unlimited Short Call Girls Mumbai ✅ 9930496246 FULL CASH PAYMENT
siqbal9337
 
Call Girls Pune 7023059433 Vip Escorts Service in Pune
Call Girls Pune 7023059433 Vip Escorts Service in PuneCall Girls Pune 7023059433 Vip Escorts Service in Pune
Call Girls Pune 7023059433 Vip Escorts Service in Pune
rajni kaurn06
 
世预赛下注-世预赛下注下注平台-世预赛下注投注平台|【​网址​🎉ac44.net🎉​】
世预赛下注-世预赛下注下注平台-世预赛下注投注平台|【​网址​🎉ac44.net🎉​】世预赛下注-世预赛下注下注平台-世预赛下注投注平台|【​网址​🎉ac44.net🎉​】
世预赛下注-世预赛下注下注平台-世预赛下注投注平台|【​网址​🎉ac44.net🎉​】
ahmedendrise81
 
Automotive Engine Valve Manufacturing Plant Project Report.pptx
Automotive Engine Valve Manufacturing Plant Project Report.pptxAutomotive Engine Valve Manufacturing Plant Project Report.pptx
Automotive Engine Valve Manufacturing Plant Project Report.pptx
Smith Anderson
 
Annual report on mahindra and mahindra on supply chain analysisdf
Annual report on mahindra and mahindra on supply chain analysisdfAnnual report on mahindra and mahindra on supply chain analysisdf
Annual report on mahindra and mahindra on supply chain analysisdf
ssuser470fe9
 
Unlimited Short Call Girls Noida ✅ 9711199171 FULL CASH PAYMENT
Unlimited Short Call Girls Noida ✅ 9711199171 FULL CASH PAYMENTUnlimited Short Call Girls Noida ✅ 9711199171 FULL CASH PAYMENT
Unlimited Short Call Girls Noida ✅ 9711199171 FULL CASH PAYMENT
siqbal9337
 
Cyclone Remal: Assessing Impact and Recovery Efforts
Cyclone Remal: Assessing Impact and Recovery EffortsCyclone Remal: Assessing Impact and Recovery Efforts
Cyclone Remal: Assessing Impact and Recovery Efforts
TycoonSuccess
 
Unlimited Short Call Girls Andheri ✅ 9920874524 FULL CASH PAYMENT
Unlimited Short Call Girls Andheri ✅ 9920874524 FULL CASH PAYMENTUnlimited Short Call Girls Andheri ✅ 9920874524 FULL CASH PAYMENT
Unlimited Short Call Girls Andheri ✅ 9920874524 FULL CASH PAYMENT
siqbal9337
 
Weekairtificial intelligence 8-Module 7 NLP.pptx
Weekairtificial intelligence  8-Module 7 NLP.pptxWeekairtificial intelligence  8-Module 7 NLP.pptx
Weekairtificial intelligence 8-Module 7 NLP.pptx
funcrusherr
 
Cargdor frontal volvo L180E para trabajar en carga de rocas.
Cargdor frontal volvo L180E para trabajar en carga de rocas.Cargdor frontal volvo L180E para trabajar en carga de rocas.
Cargdor frontal volvo L180E para trabajar en carga de rocas.
Eloy Soto Gomez
 
240613_Semiochemicals semiochemicals market size.pdf
240613_Semiochemicals semiochemicals market size.pdf240613_Semiochemicals semiochemicals market size.pdf
240613_Semiochemicals semiochemicals market size.pdf
Madhura TBRC
 

Recently uploaded (20)

Unlimited Short Call Girls Delhi ✅ 9711199012 FULL CASH PAYMENT
Unlimited Short Call Girls Delhi ✅ 9711199012 FULL CASH PAYMENTUnlimited Short Call Girls Delhi ✅ 9711199012 FULL CASH PAYMENT
Unlimited Short Call Girls Delhi ✅ 9711199012 FULL CASH PAYMENT
 
Top-Quality AC Service for Mini Cooper Optimal Cooling Performance
Top-Quality AC Service for Mini Cooper Optimal Cooling PerformanceTop-Quality AC Service for Mini Cooper Optimal Cooling Performance
Top-Quality AC Service for Mini Cooper Optimal Cooling Performance
 
Call Girls in Chennai (Tamil Nadu ) call me [🔝7737669865🔝] Escort In Chennai ...
Call Girls in Chennai (Tamil Nadu ) call me [🔝7737669865🔝] Escort In Chennai ...Call Girls in Chennai (Tamil Nadu ) call me [🔝7737669865🔝] Escort In Chennai ...
Call Girls in Chennai (Tamil Nadu ) call me [🔝7737669865🔝] Escort In Chennai ...
 
Call Girls In Visakhapatnam 7339748667 At Your Nearest Place In Private Apart...
Call Girls In Visakhapatnam 7339748667 At Your Nearest Place In Private Apart...Call Girls In Visakhapatnam 7339748667 At Your Nearest Place In Private Apart...
Call Girls In Visakhapatnam 7339748667 At Your Nearest Place In Private Apart...
 
Mahindra-Mahindra-Annual-report-2018-19.pdf
Mahindra-Mahindra-Annual-report-2018-19.pdfMahindra-Mahindra-Annual-report-2018-19.pdf
Mahindra-Mahindra-Annual-report-2018-19.pdf
 
一比一原版悉尼大学毕业证(USYD毕业证书)学历如何办理
一比一原版悉尼大学毕业证(USYD毕业证书)学历如何办理一比一原版悉尼大学毕业证(USYD毕业证书)学历如何办理
一比一原版悉尼大学毕业证(USYD毕业证书)学历如何办理
 
Call Girls Pune ☎️ +91-7426014248 😍 Pune Call Girl Beauty Girls Pune Escorts
Call Girls Pune ☎️ +91-7426014248 😍 Pune Call Girl Beauty Girls Pune EscortsCall Girls Pune ☎️ +91-7426014248 😍 Pune Call Girl Beauty Girls Pune Escorts
Call Girls Pune ☎️ +91-7426014248 😍 Pune Call Girl Beauty Girls Pune Escorts
 
hays salary report for 2024: check out your salaries here
hays salary report for 2024: check out your salaries herehays salary report for 2024: check out your salaries here
hays salary report for 2024: check out your salaries here
 
Khushmeet Khushi Resume of manufacturing industry
Khushmeet Khushi Resume of manufacturing industry Khushmeet Khushi Resume of manufacturing industry
Khushmeet Khushi Resume of manufacturing industry
 
Unlimited Short Call Girls Mumbai ✅ 9930496246 FULL CASH PAYMENT
Unlimited Short Call Girls Mumbai ✅ 9930496246 FULL CASH PAYMENTUnlimited Short Call Girls Mumbai ✅ 9930496246 FULL CASH PAYMENT
Unlimited Short Call Girls Mumbai ✅ 9930496246 FULL CASH PAYMENT
 
Call Girls Pune 7023059433 Vip Escorts Service in Pune
Call Girls Pune 7023059433 Vip Escorts Service in PuneCall Girls Pune 7023059433 Vip Escorts Service in Pune
Call Girls Pune 7023059433 Vip Escorts Service in Pune
 
世预赛下注-世预赛下注下注平台-世预赛下注投注平台|【​网址​🎉ac44.net🎉​】
世预赛下注-世预赛下注下注平台-世预赛下注投注平台|【​网址​🎉ac44.net🎉​】世预赛下注-世预赛下注下注平台-世预赛下注投注平台|【​网址​🎉ac44.net🎉​】
世预赛下注-世预赛下注下注平台-世预赛下注投注平台|【​网址​🎉ac44.net🎉​】
 
Automotive Engine Valve Manufacturing Plant Project Report.pptx
Automotive Engine Valve Manufacturing Plant Project Report.pptxAutomotive Engine Valve Manufacturing Plant Project Report.pptx
Automotive Engine Valve Manufacturing Plant Project Report.pptx
 
Annual report on mahindra and mahindra on supply chain analysisdf
Annual report on mahindra and mahindra on supply chain analysisdfAnnual report on mahindra and mahindra on supply chain analysisdf
Annual report on mahindra and mahindra on supply chain analysisdf
 
Unlimited Short Call Girls Noida ✅ 9711199171 FULL CASH PAYMENT
Unlimited Short Call Girls Noida ✅ 9711199171 FULL CASH PAYMENTUnlimited Short Call Girls Noida ✅ 9711199171 FULL CASH PAYMENT
Unlimited Short Call Girls Noida ✅ 9711199171 FULL CASH PAYMENT
 
Cyclone Remal: Assessing Impact and Recovery Efforts
Cyclone Remal: Assessing Impact and Recovery EffortsCyclone Remal: Assessing Impact and Recovery Efforts
Cyclone Remal: Assessing Impact and Recovery Efforts
 
Unlimited Short Call Girls Andheri ✅ 9920874524 FULL CASH PAYMENT
Unlimited Short Call Girls Andheri ✅ 9920874524 FULL CASH PAYMENTUnlimited Short Call Girls Andheri ✅ 9920874524 FULL CASH PAYMENT
Unlimited Short Call Girls Andheri ✅ 9920874524 FULL CASH PAYMENT
 
Weekairtificial intelligence 8-Module 7 NLP.pptx
Weekairtificial intelligence  8-Module 7 NLP.pptxWeekairtificial intelligence  8-Module 7 NLP.pptx
Weekairtificial intelligence 8-Module 7 NLP.pptx
 
Cargdor frontal volvo L180E para trabajar en carga de rocas.
Cargdor frontal volvo L180E para trabajar en carga de rocas.Cargdor frontal volvo L180E para trabajar en carga de rocas.
Cargdor frontal volvo L180E para trabajar en carga de rocas.
 
240613_Semiochemicals semiochemicals market size.pdf
240613_Semiochemicals semiochemicals market size.pdf240613_Semiochemicals semiochemicals market size.pdf
240613_Semiochemicals semiochemicals market size.pdf
 

demo attachment

  • 1. Gauss-Jordan Elimination Method The following row operations on the augmented matrix of a system produce the augmented matrix of an equivalent system, i.e., a system with the same solution as the original one. • Interchange any two rows. • Multiply each element of a row by a nonzero constant. • Replace a row by the sum of itself and a constant multiple of another row of the matrix. For these row operations, we will use the following notations. • Ri ↔ Rj means: Interchange row i and row j. • αRi means: Replace row i with α times row i. • Ri + αRj means: Replace row i with the sum of row i and α times row j. The Gauss-Jordan elimination method to solve a system of linear equations is described in the following steps. 1. Write the augmented matrix of the system. 2. Use row operations to transform the augmented matrix in the form described below, which is called the reduced row echelon form (RREF). (a) The rows (if any) consisting entirely of zeros are grouped together at the bottom of the matrix. (b) In each row that does not consist entirely of zeros, the leftmost nonzero element is a 1 (called a leading 1 or a pivot). (c) Each column that contains a leading 1 has zeros in all other entries. (d) The leading 1 in any row is to the left of any leading 1’s in the rows below it. 3. Stop process in step 2 if you obtain a row whose elements are all zeros except the last one on the right. In that case, the system is inconsistent and has no solutions. Otherwise, finish step 2 and read the solutions of the system from the final matrix. Note: When doing step 2, row operations can be performed in any order. Try to choose row opera- tions so that as few fractions as possible are carried through the computation. This makes calculation easier when working by hand. 1
  • 2. Example 1. Solve the following system by using the Gauss-Jordan elimination method.    x + y + z = 5 2x + 3y + 5z = 8 4x + 5z = 2 Solution: The augmented matrix of the system is the following.   1 1 1 5 2 3 5 8 4 0 5 2   We will now perform row operations until we obtain a matrix in reduced row echelon form.   1 1 1 5 2 3 5 8 4 0 5 2   R2−2R1 −−−−−→   1 1 1 5 0 1 3 −2 4 0 5 2   R3−4R1 −−−−−→   1 1 1 5 0 1 3 −2 0 −4 1 −18   R3+4R2 −−−−−→   1 1 1 5 0 1 3 −2 0 0 13 −26   1 13 R3 −−−→   1 1 1 5 0 1 3 −2 0 0 1 −2   R2−3R3 −−−−−→   1 1 1 5 0 1 0 4 0 0 1 −2   R1−R3 −−−−→   1 1 0 7 0 1 0 4 0 0 1 −2   R1−R2 −−−−→   1 0 0 3 0 1 0 4 0 0 1 −2   From this final matrix, we can read the solution of the system. It is x = 3, y = 4, z = −2. 2
  • 3. Example 2. Solve the following system by using the Gauss-Jordan elimination method.    x + 2y − 3z = 2 6x + 3y − 9z = 6 7x + 14y − 21z = 13 Solution: The augmented matrix of the system is the following.   1 2 −3 2 6 3 −9 6 7 14 −21 13   Let’s now perform row operations on this augmented matrix.   1 2 −3 2 6 3 −9 6 7 14 −21 13   R2−6R1 −−−−−→   1 2 −3 2 0 −9 9 −6 7 14 −21 13   R3−7R1 −−−−−→   1 2 −3 2 0 −9 9 −6 0 0 0 −1   We obtain a row whose elements are all zeros except the last one on the right. Therefore, we conclude that the system of equations is inconsistent, i.e., it has no solutions. Example 3. Solve the following system by using the Gauss-Jordan elimination method.    4y + z = 2 2x + 6y − 2z = 3 4x + 8y − 5z = 4 Solution: The augmented matrix of the system is the following.   0 4 1 2 2 6 −2 3 4 8 −5 4   3
  • 4. We will now perform row operations until we obtain a matrix in reduced row echelon form.   0 4 1 2 2 6 −2 3 4 8 −5 4   R1↔R2 −−−−−→   2 6 −2 3 0 4 1 2 4 8 −5 4   R3−2R1 −−−−−→   2 6 −2 3 0 4 1 2 0 −4 −1 −2   R3+R2 −−−−→   2 6 −2 3 0 4 1 2 0 0 0 0   1 4 R2 −−−→   2 6 −2 3 0 1 1/4 1/2 0 0 0 0   R1−6R2 −−−−−→   2 0 −7/2 0 0 1 1/4 1/2 0 0 0 0   1 2 R1 −−−→   1 0 −7/4 0 0 1 1/4 1/2 0 0 0 0   This last matrix is in reduced row echelon form so we can stop. It corresponds to the augmented matrix of the following system. x − 7 4 z = 0 y + 1 4 z = 1 2 We can express the solutions of this system as x = 7 4 z, y = 1 2 − 1 4 z. Since there is no specific value for z, it can be chosen arbitrarily. This means that there are infinitely many solutions for this system. We can represent all the solutions by using a parameter t as follows. x = 7 4 t, y = 1 2 − 1 4 t, z = t Any value of the parameter t gives us a solution of the system. For example, t = 4 gives the solution (x, y, z) = (7, −1 2 , 4) t = −2 gives the solution (x, y, z) = (−7 2 , 1, −2). 4
  • 5. Example 4. Solve the following system by using the Gauss-Jordan elimination method.    A + B + 2C = 1 2A − B + D = −2 A − B − C − 2D = 4 2A − B + 2C − D = 0 Solution: We will perform row operations on the augmented matrix of the system until we obtain a matrix in reduced row echelon form.     1 1 2 0 1 2 −1 0 1 −2 1 −1 −1 −2 4 2 −1 2 −1 0     R2−2R1 −−−−−→     1 1 2 0 1 0 −3 −4 1 −4 1 −1 −1 −2 4 2 −1 2 −1 0     R3−R1 −−−−→     1 1 2 0 1 0 −3 −4 1 −4 0 −2 −3 −2 3 2 −1 2 −1 0     R4−2R1 −−−−−→     1 1 2 0 1 0 −3 −4 1 −4 0 −2 −3 −2 3 0 −3 −2 −1 −2     R4−R2 −−−−→     1 1 2 0 1 0 −3 −4 1 −4 0 −2 −3 −2 3 0 0 2 −2 2     R2↔R3 −−−−−→     1 1 2 0 1 0 −2 −3 −2 3 0 −3 −4 1 −4 0 0 2 −2 2     − 1 2 R2 −−−−→     1 1 2 0 1 0 1 3/2 1 −3/2 0 −3 −4 1 −4 0 0 2 −2 2     R3+3R2 −−−−−→     1 1 2 0 1 0 1 3/2 1 −3/2 0 0 1/2 4 −17/2 0 0 2 −2 2     2R3 −−→     1 1 2 0 1 0 1 3/2 1 −3/2 0 0 1 8 −17 0 0 2 −2 2     R4−2R3 −−−−−→     1 1 2 0 1 0 1 3/2 1 −3/2 0 0 1 8 −17 0 0 0 −18 36     − 1 18 R4 −−−−→     1 1 2 0 1 0 1 3/2 1 −3/2 0 0 1 8 −17 0 0 0 1 −2     R3−8R4 −−−−−→     1 1 2 0 1 0 1 3/2 1 −3/2 0 0 1 0 −1 0 0 0 1 −2     R2−R4 −−−−→     1 1 2 0 1 0 1 3/2 0 1/2 0 0 1 0 −1 0 0 0 1 −2     R2− 3 2 R3 −−−−−→     1 1 2 0 1 0 1 0 0 2 0 0 1 0 −1 0 0 0 1 −2     R1−2R3, R1−R2 −−−−−−−−−−−→     1 0 0 0 1 0 1 0 0 2 0 0 1 0 −1 0 0 0 1 −2     From this final matrix, we can read the solution of the system. It is A = 1, B = 2, C = −1, D = −2. 5