Everything in this chapter converges here: determinants decide whether a system of linear equations has a solution, and the inverse computes it.
Consistent system: at least one solution exists. Inconsistent: no solution exists.
The setup: AX=B
The system
a1x+b1y+c1z=d1,a2x+b2y+c2z=d2,a3x+b3y+c3z=d3
packs into a single matrix equation:
Aa1a2a3b1b2b3c1c2c3Xxyz=Bd1d2d3
A holds the coefficients, X the unknowns, B the constants.
Case I — A nonsingular: the matrix method
If ∣A∣=0, premultiply both sides by A−1:
A−1(AX)=A−1B⇒(A−1A)X=A−1B⇒X=A−1B
Since the inverse is unique, this solution is unique — the system is consistent with exactly one answer. Watch the order: it is A−1B, never BA−1 (the orders would not even match).
Case II — A singular: test with (adjA)B
If ∣A∣=0 the inverse does not exist, and the tie-breaker is the product (adjA)B:
(adjA)B=O: no solution — the system is inconsistent.
(adjA)B=O: the system may be consistent (with infinitely many solutions) or inconsistent — this case does not settle by itself.
∣A∣
(adjA)B
Conclusion
=0
—
unique solution X=A−1B
=0
=O
inconsistent
=0
=O
infinitely many solutions or none
(NCERT restricts worked systems to the unique-solution case; the table is what the examiner expects you to quote.)
Solved Examples
Example 1 — A 2×2 system by the matrix method
Solve 2x+5y=1 and 3x+2y=7.
Step 1 — pack into AX=B:A=(2352), X=(xy), B=(17).
Answer:x=1, y=2, z=3. Check the first equation: 3−4+9=8. ✓
Example 3 — From words to a system
The sum of three numbers is 6. If the third number is multiplied by 3 and the second is added, the result is 11. Adding the first and third numbers gives double the second. Find the numbers by the matrix method.
Step 1 — translate: with numbers x,y,z:
x+y+z=6,y+3z=11,x+z=2y⇒x−2y+z=0
Step 2 — pack and test:A=10111−2131; expanding, ∣A∣=1(1+6)−1(0−3)+1(0−1)=7+3−1=9=0.
Step 3 — solve X=A−1B with B=(6,11,0)′: the computation gives X=(1,2,3)′.
Answer: the numbers are 1, 2 and 3. Check the second condition: 2+3(3)=11. ✓
Example 4 — Detecting an inconsistent system
Examine the consistency of x+3y=5 and 2x+6y=8.
Step 1 — determinant:A=(1236), ∣A∣=6−6=0 — the matrix method stops here; move to the adjoint test.