This question involves solving a 3×3 non-homogeneous system of linear equations using:
- The Matrix Inversion Method
- Cramer's Rule
- Row Operations to find the inverse
A system of 3 equations in 3 unknowns can be written as:
AX=B
where:
A=a11a21a31a12a22a32a13a23a33,X=xyz,B=b1b2b3
Condition: ∣A∣=0 (matrix A must be non-singular)
Solution: X=A−1B
Steps:
- Write the system in the form AX=B.
- Find ∣A∣ using cofactor expansion.
- Find A−1 using the formula:
A−1=∣A∣1⋅adj(A)
where adj(A) is the transpose of the cofactor matrix.
- Compute X=A−1B.
Steps:
- Form the augmented matrix [A∣I3].
- Apply elementary row operations to reduce A to the identity matrix I3.
- The right side transforms into A−1:
[A∣I]row ops[I∣A−1]
- If a row of zeros appears on the left, A is singular and A−1 does not exist.
Condition: ∣A∣=0
For the system AX=B:
x=∣A∣∣Ax∣,y=∣A∣∣Ay∣,z=∣A∣∣Az∣
where:
- Ax = matrix A with the 1st column replaced by B
- Ay = matrix A with the 2nd column replaced by B
- Az = matrix A with the 3rd column replaced by B
For matrix A, expanding along Row 1:
∣A∣=a11C11+a12C12+a13C13
where the cofactor Cij=(−1)i+jMij and Mij is the minor (determinant of the 2×2 submatrix obtained by deleting row i and column j).
Sign pattern for cofactors:
+−+−+−+−+
Solve the system using the matrix inversion method:
x+y+z=6
2x−y+z=3
x+2y−z=2
Step 1: Write AX=B:
A=1211−1211−1,B=632
Step 2: Find ∣A∣ (expanding along Row 1):
∣A∣=1⋅[(−1)(−1)−(1)(2)]−1⋅[(2)(−1)−(1)(1)]+1⋅[(2)(2)−(−1)(1)]
=1(1−2)−1(−2−1)+1(4+1)=−1+3+5=7
Since ∣A∣=7=0, the inverse exists.
Step 3: Find cofactors and adj(A), then A−1=71adj(A).
Step 4: Compute X=A−1B to get x, y, z.