This question involves solving a system of 3 non-homogeneous linear equations in 3 unknowns. The standard methods covered are the Matrix Inversion Method and Cramer's Rule .
A system A X = B is:
Consistent if it has at least one solution (unique or infinitely many).
Inconsistent if it has no solution.
For a 3 × 3 system:
If ∣ A ∣ = 0 , the system has a unique solution (consistent).
If ∣ A ∣ = 0 , the system may be inconsistent or have infinitely many solutions.
Given the system A X = B , if ∣ A ∣ = 0 , then:
X = A − 1 B
Steps:
Write the system in matrix form A X = B .
Find ∣ A ∣ using cofactor expansion.
Find the cofactor matrix, then the adjoint: adj ( A ) = ( cofactor matrix ) T .
Compute A − 1 = ∣ A ∣ 1 ⋅ adj ( A ) .
Multiply: X = A − 1 B .
For the system A X = B where X = x y z and ∣ A ∣ = 0 :
x = ∣ A ∣ ∣ A x ∣ , y = ∣ A ∣ ∣ A y ∣ , z = ∣ A ∣ ∣ A z ∣
where:
A x = matrix A with the first column replaced by B
A y = matrix A with the second column replaced by B
A z = matrix A with the third column replaced by B
For matrix A = a 1 a 2 a 3 b 1 b 2 b 3 c 1 c 2 c 3 , expanding along Row 1:
∣ A ∣ = a 1 b 2 b 3 c 2 c 3 − b 1 a 2 a 3 c 2 c 3 + c 1 a 2 a 3 b 2 b 3
Solve the system using Cramer's Rule:
x + 2 y + z = 8
2 x + y + z = 9
x − y + 2 z = 3
Step 1: Write coefficient matrix and constant matrix:
A = 1 2 1 2 1 − 1 1 1 2 , B = 8 9 3
Step 2: Find ∣ A ∣ :
∣ A ∣ = 1 ( 1 ⋅ 2 − 1 ⋅ ( − 1 )) − 2 ( 2 ⋅ 2 − 1 ⋅ 1 ) + 1 ( 2 ⋅ ( − 1 ) − 1 ⋅ 1 )
= 1 ( 2 + 1 ) − 2 ( 4 − 1 ) + 1 ( − 2 − 1 ) = 3 − 6 − 3 = − 6
Since ∣ A ∣ = − 6 = 0 , the system is consistent with a unique solution.
Step 3: Find ∣ A x ∣ , ∣ A y ∣ , ∣ A z ∣ :
A x = 8 9 3 2 1 − 1 1 1 2
∣ A x ∣ = 8 ( 2 + 1 ) − 2 ( 18 − 3 ) + 1 ( − 9 − 3 ) = 24 − 30 − 12 = − 18
A y = 1 2 1 8 9 3 1 1 2
∣ A y ∣ = 1 ( 18 − 3 ) − 8 ( 4 − 1 ) + 1 ( 6 − 9 ) = 15 − 24 − 3 = − 12
A z = 1 2 1 2 1 − 1 8 9 3
∣ A z ∣ = 1 ( 3 + 9 ) − 2 ( 6 − 9 ) + 8 ( − 2 − 1 ) = 12 + 6 − 24 = − 6
Step 4: Apply Cramer's Rule:
x = − 6 − 18 = 3 , y = − 6 − 12 = 2 , z = − 6 − 6 = 1
Solution: x = 3 , y = 2 , z = 1