This question involves solving a 3×3 non-homogeneous system of linear equations using:
- Matrix Inversion Method
- Cramer's Rule
For the system AX=B where A is a 3×3 coefficient matrix:
A=a1a2a3b1b2b3c1c2c3,X=xyz,B=d1d2d3
Condition: ∣A∣=0 (i.e., A must be non-singular/invertible)
Steps:
- Write the system in matrix form AX=B
- Compute ∣A∣ (determinant of A)
- Find adj(A) (adjoint = transpose of cofactor matrix)
- Compute A−1=∣A∣1⋅adj(A)
- Solution: X=A−1B
For the system AX=B with ∣A∣=0:
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
Solve the system using both methods:
x+2y+z=8
2x−y+z=3
x+y−2z=−3
A=1212−1111−2,B=83−3
∣A∣=1−111−2−2211−2+121−11
=1(2−1)−2(−4−1)+1(2+1)=1+10+3=14
Since ∣A∣=14=0, both methods apply.
Cofactor matrix C:
C11=+−111−2=1,C12=−211−2=5,C13=+21−11=3
C21=−211−2=5,C22=+111−2=−3,C23=−1121=1
C31=+2−111=3,C32=−1211=1,C33=+122−1=−5
adj(A)=CT=1535−3131−5
A−1=1411535−3131−5
X=A−1B=1411(8)+5(3)+3(−3)5(8)+(−3)(3)+1(−3)3(8)+1(3)+(−5)(−3)=141142842=123
x=1,y=2,z=3
∣Ax∣=83−32−1111−2=8(2−1)−2(−6+3)+1(3−3)=8+6+0=14
∣Ay∣=12183−311−2=1(−6+3)−8(−4−1)+1(−6−3)=−3+40−9=28
∣Az∣=1212−1183−3=1(3−3)−2(−6−3)+8(2+1)=0+18+24=42
x=1414=1,y=1428=2,z=1442=3
x=1,y=2,z=3
| Method | Key Formula | Condition |
|---|
| Matrix Inversion | X=A−1B=∥A∥1adj(A)⋅B | ∥A∥=0 |
| Cramer's Rule | x=∥A∥∥Ax∥, y=∥A∥∥Ay∥, z=∥A∥∥Az∥ | ∥A∥=0 |