07 A1 BS06 Notes 6
07 A1 BS06 Notes 6
X = B
(2) Write augmented matrix [A B ]
(3) Reduce augmented matrix [A B ] into upper triangle
matrix by applying suitable elementary row operations
This method is illustrated by taking system of three equations in three unknowns
a11 x + a12 y + a13 z = b1
a 21 x + a 22 y + a 23 z = b2 ………………………….(I)
a 31 x + a 32 y + a33 z = b3
@@SATYA@@
11
Case: 1 If a33 ≠ 0 then the above system has unique solution, the unique solution is
given by back substitution
11
b2
z = 11
a 33
1 11 1 11
(b1 a 33 − a 23 b2 )
y= 1 11
a 22 .a33
11 1 1 1 1 1 1 1
(b1 a33 a 22 − a13 a 22 b2 − a12 b1 a33 + a12 a 23 b2 )
x= 1 11
a 22 a 33
11 11
Case: 2 If a33 = 0, b3 = 0 then the above system has infinite number of solutions
11 11
Case: 3 If a33 = 0, b3 ≠ 0 then the above system has no solution
@@SATYA@@
1 2 1 3
0 −1 0 − 1
≈
0 0 2 4
0 0 0 0
x + 2y + z = 3
Now the equivalent systems of equations are −y = −1
2z = 4
By backward substitution we get
z=2
y =1
x = −1
Example2: Solve the system of equations
2 x − y + z = 4, 3 x − y + z = 6, 4 x − y + 2 z = 7, − x + y − z = 9
Solution: The matrix form of above system of equations is A.X = B where
2 − 1 1 4
3 − 1 1 x 6
A=
, X = y , B =
4 − 1 2 7
z
− 1 1 − 1 9
2 −1 1 4
3 −1 1 6
Now the augmented matrix is [A B ] =
4 −1 2 7
− 1 1 − 1 9
R2 : 2 R2 − 3R1 , R3 : 2 R3 − 4 R1 , R4 : 2 R4 + R1
2 −1 1 3
0 1 −1 0
≈ R3 : R3 − 2 R 2 , R 4 : R 4 − R 2
0 2 0 − 2
0 1 − 1 22
2 − 1 1 3
0 1 −1 −1
≈
0 0 2 −2
0 0 0 22
In the above equivalent matrix a 43 = 0, b4 ≠ 0
∴ the above system of equations has no solution
i.e. the given system of equations are inconsistent
@@SATYA@@